diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index f41abdad5..5f581cae8 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -61,6 +61,7 @@ "eslint-plugin-react-hooks": "4.6.0", "glob": "8.0.3", "jest": "^29.5.0", + "mkdirp": "3.0.1", "prettier": "^2.8.7", "regenerator-runtime": "^0.13.11", "ts-jest": "^29.1.0", diff --git a/packages/chain-registry/sample/all.ts b/packages/chain-registry/sample/all.ts new file mode 100644 index 000000000..0b1b34742 --- /dev/null +++ b/packages/chain-registry/sample/all.ts @@ -0,0 +1,11 @@ +import assets from './assets/'; +import chains from './chains'; +import ibc from './ibc'; + +export default { + assets, + chains, + ibc +}; + +export { assets, chains, ibc }; diff --git a/packages/chain-registry/sample/assets.ts b/packages/chain-registry/sample/assets.ts new file mode 100644 index 000000000..884b4cf05 --- /dev/null +++ b/packages/chain-registry/sample/assets.ts @@ -0,0 +1,8 @@ +import { AssetList } from '@chain-registry/types'; + +import * as _mainnet from './mainnet/all'; +import * as _testnet from './testnet/all'; + +const assets: AssetList[] = [..._mainnet.assets, ..._testnet.assets]; + +export default assets; diff --git a/packages/chain-registry/sample/chains.ts b/packages/chain-registry/sample/chains.ts new file mode 100644 index 000000000..64285e1ef --- /dev/null +++ b/packages/chain-registry/sample/chains.ts @@ -0,0 +1,8 @@ +import { Chain } from '@chain-registry/types'; + +import * as _mainnet from './mainnet/all'; +import * as _testnet from './testnet/all'; + +const chains: Chain[] = [..._mainnet.chains, ..._testnet.chains]; + +export default chains; diff --git a/packages/chain-registry/sample/examples.ts b/packages/chain-registry/sample/examples.ts new file mode 100644 index 000000000..07f191981 --- /dev/null +++ b/packages/chain-registry/sample/examples.ts @@ -0,0 +1,23 @@ +// import single chain from folder, good for tree shaking +import { chain as chain_akash } from './mainnet/akash'; + +console.log(chain_akash.apis); + +// import single chain from root, good for tree shaking +import { akash, akashtestnet } from '.'; + +console.log(akash.chain.apis, akashtestnet.chain.apis); + +// backward compatibility using "all.ts": get all chains at once: +import { chains } from './all'; + +console.log(chains.find((chain) => chain.chain_name === 'akash')); + +// made bundle smaller: get all chains only in mainnet: +import { chains as chains_main } from './mainnet/all'; + +console.log(chains_main.find((chain) => chain.chain_name === 'akash')); + +// made bundle even smaller: get all chains only in mainnet +// and with minimal info customized for dropbox: +// TODO:: gen minimal arrays of mainnet and testnet and both diff --git a/packages/chain-registry/sample/ibc.ts b/packages/chain-registry/sample/ibc.ts new file mode 100644 index 000000000..17539ea1f --- /dev/null +++ b/packages/chain-registry/sample/ibc.ts @@ -0,0 +1,8 @@ +import { IBCInfo } from '@chain-registry/types'; + +import * as _mainnet from './mainnet/all'; +import * as _testnet from './testnet/all'; + +const ibc: IBCInfo[] = [..._mainnet.ibc, ..._testnet.ibc]; + +export default ibc; diff --git a/packages/chain-registry/sample/index.ts b/packages/chain-registry/sample/index.ts new file mode 100644 index 000000000..6e0ab3922 --- /dev/null +++ b/packages/chain-registry/sample/index.ts @@ -0,0 +1,2 @@ +export * from './mainnet'; +export * from './testnet'; diff --git a/packages/chain-registry/sample/mainnet/8ball/assets.ts b/packages/chain-registry/sample/mainnet/8ball/assets.ts new file mode 100644 index 000000000..0171ce474 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/8ball/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "8ball", + "assets": [ + { + "description": "The native staking token of 8ball.", + "denom_units": [ + { + "denom": "uebl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; + \ No newline at end of file diff --git a/packages/chain-registry/sample/mainnet/8ball/chain.ts b/packages/chain-registry/sample/mainnet/8ball/chain.ts new file mode 100644 index 000000000..db43b6cc8 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/8ball/chain.ts @@ -0,0 +1,130 @@ +import { Chain } from '@chain-registry/types'; +const info: 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": { + "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.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://8ball-rpc.genznodes.dev/", + "provider": "genznodes" + } + ], + "rest": [ + { + "address": "https://rest.8ball.info", + "provider": "8ball" + }, + { + "address": "https://api.8ball.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://8ball-api.genznodes.dev/", + "provider": "genznodes" + }, + { + "address": "https://api-8ball.nodine.id/", + "provider": "Nodine.ID" + } + ], + "grpc": [ + { + "address": "grpc.8ball.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "8ball-grpc.genznodes.dev:31090", + "provider": "genznodes" + }, + { + "address": "https://grpc.8ball.nodexcapital.com:443", + "provider": "NodeX Validator" + } + ] + }, + "explorers": [ + { + "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": "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.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}" + } + ], + "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" + } + ] +}; +export default info; + \ No newline at end of file diff --git a/packages/chain-registry/sample/mainnet/8ball/ibc.ts b/packages/chain-registry/sample/mainnet/8ball/ibc.ts new file mode 100644 index 000000000..cdd1f589a --- /dev/null +++ b/packages/chain-registry/sample/mainnet/8ball/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $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', + }, + channels: [ + { + chain_1: { + channel_id: 'channel-16', + port_id: 'transfer', + }, + chain_2: { + channel_id: 'channel-641', + port_id: 'transfer', + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis', + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/sample/mainnet/8ball/ibc_chain1.ts b/packages/chain-registry/sample/mainnet/8ball/ibc_chain1.ts new file mode 100644 index 000000000..cdd1f589a --- /dev/null +++ b/packages/chain-registry/sample/mainnet/8ball/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: '8ball', + client_id: '07-tendermint-2', + connection_id: 'connection-18', + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-2668', + connection_id: 'connection-2163', + }, + channels: [ + { + chain_1: { + channel_id: 'channel-16', + port_id: 'transfer', + }, + chain_2: { + channel_id: 'channel-641', + port_id: 'transfer', + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis', + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/sample/mainnet/8ball/index.ts b/packages/chain-registry/sample/mainnet/8ball/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/8ball/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/sample/mainnet/akash/assets.ts b/packages/chain-registry/sample/mainnet/akash/assets.ts new file mode 100644 index 000000000..d78afd4eb --- /dev/null +++ b/packages/chain-registry/sample/mainnet/akash/assets.ts @@ -0,0 +1,81 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uakt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Tether USDt on Akash", + "denom_units": [ + { + "denom": "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + } + ] +}; +export default info; + \ No newline at end of file diff --git a/packages/chain-registry/sample/mainnet/akash/chain.ts b/packages/chain-registry/sample/mainnet/akash/chain.ts new file mode 100644 index 000000000..c63b85875 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/akash/chain.ts @@ -0,0 +1,251 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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.ecostake.com:443", + "provider": "ecostake" + }, + { + "address": "https://akash-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" + }, + { + "address": "https://akash-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-akash.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://rpc-akash-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "http://akash.c29r3.xyz:80/rpc", + "provider": "c29r3" + }, + { + "address": "https://akash-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://akash-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://rpc-akash-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://akash-mainnet-rpc.cosmonautstakes.com:443", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://akash-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://akash-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://akash-rpc.validatornode.com", + "provider": "ValidatorNode" + }, + { + "address": "https://rpc-akash.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ], + "rest": [ + { + "address": "https://api.akash.forbole.com:443", + "provider": "forbole" + }, + { + "address": "https://rest-akash.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://akash-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" + }, + { + "address": "https://akash-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api-akash.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://api-akash-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://akash.c29r3.xyz:443/api", + "provider": "c29r3" + }, + { + "address": "https://akash-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://akash-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://api-akash-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://akash-mainnet-rest.cosmonautstakes.com:443", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://akash-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://akash-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://akash-api.validatornode.com", + "provider": "ValidatorNode" + }, + { + "address": "https://lcd-akash.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ], + "grpc": [ + { + "address": "grpc-akash-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "akash-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "akash-grpc.polkachu.com:12890", + "provider": "Polkachu" + }, + { + "address": "akash-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-akash.cosmos-spaces.cloud:1110", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc-akash-01.stakeflow.io:1502", + "provider": "Stakeflow" + }, + { + "address": "akash-grpc.w3coins.io:12890", + "provider": "w3coins" + }, + { + "address": "akash-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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": "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": "ValidatorNode", + "url": "https://explorer.validatornode.com/akash-network", + "tx_page": "https://explorer.validatornode.com/akash-network/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; + \ No newline at end of file diff --git a/packages/chain-registry/sample/mainnet/akash/ibc.ts b/packages/chain-registry/sample/mainnet/akash/ibc.ts new file mode 100644 index 000000000..b20bf6070 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/akash/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $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', + }, + channels: [ + { + chain_1: { + channel_id: 'channel-70', + port_id: 'transfer', + }, + chain_2: { + channel_id: 'channel-44', + port_id: 'transfer', + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'crescent', + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/sample/mainnet/akash/ibc_chain1.ts b/packages/chain-registry/sample/mainnet/akash/ibc_chain1.ts new file mode 100644 index 000000000..b20bf6070 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/akash/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'akash', + client_id: '07-tendermint-132', + connection_id: 'connection-107', + }, + chain_2: { + chain_name: 'crescent', + client_id: '07-tendermint-80', + connection_id: 'connection-71', + }, + channels: [ + { + chain_1: { + channel_id: 'channel-70', + port_id: 'transfer', + }, + chain_2: { + channel_id: 'channel-44', + port_id: 'transfer', + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'crescent', + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/sample/mainnet/akash/index.ts b/packages/chain-registry/sample/mainnet/akash/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/akash/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/index.ts b/packages/chain-registry/sample/mainnet/all.ts similarity index 100% rename from packages/chain-registry/src/index.ts rename to packages/chain-registry/sample/mainnet/all.ts diff --git a/packages/chain-registry/sample/mainnet/assets.ts b/packages/chain-registry/sample/mainnet/assets.ts new file mode 100644 index 000000000..a5769c570 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/assets.ts @@ -0,0 +1,8 @@ +import { AssetList } from '@chain-registry/types'; + +import * as _8ball from './8ball'; +import * as _akash from './akash'; + +const assets: AssetList[] = [_8ball.assets, _akash.assets]; + +export default assets; diff --git a/packages/chain-registry/sample/mainnet/chains.ts b/packages/chain-registry/sample/mainnet/chains.ts new file mode 100644 index 000000000..210b41bb4 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/chains.ts @@ -0,0 +1,8 @@ +import { Chain } from '@chain-registry/types'; + +import * as _8ball from './8ball'; +import * as _akash from './akash'; + +const chains: Chain[] = [_8ball.chain, _akash.chain]; + +export default chains; diff --git a/packages/chain-registry/sample/mainnet/ibc.ts b/packages/chain-registry/sample/mainnet/ibc.ts new file mode 100644 index 000000000..8b02ffc73 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/ibc.ts @@ -0,0 +1,8 @@ +import { IBCInfo } from '@chain-registry/types'; + +import * as _8ball from './8ball'; +import * as _akash from './akash'; + +const ibc: IBCInfo[] = [..._8ball.ibc_chain1, ..._akash.ibc_chain1]; + +export default ibc; diff --git a/packages/chain-registry/sample/mainnet/index.ts b/packages/chain-registry/sample/mainnet/index.ts new file mode 100644 index 000000000..be8d03483 --- /dev/null +++ b/packages/chain-registry/sample/mainnet/index.ts @@ -0,0 +1,2 @@ +export * as _8ball from './8ball'; +export * as akash from './akash'; diff --git a/packages/chain-registry/sample/testnet/akashtestnet/assets.ts b/packages/chain-registry/sample/testnet/akashtestnet/assets.ts new file mode 100644 index 000000000..e641a0434 --- /dev/null +++ b/packages/chain-registry/sample/testnet/akashtestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uakt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; + \ No newline at end of file diff --git a/packages/chain-registry/sample/testnet/akashtestnet/chain.ts b/packages/chain-registry/sample/testnet/akashtestnet/chain.ts new file mode 100644 index 000000000..6b86a8b42 --- /dev/null +++ b/packages/chain-registry/sample/testnet/akashtestnet/chain.ts @@ -0,0 +1,72 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uakt" + } + ] + }, + "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": [ + { + "address": "https://rpc.sandbox-01.aksh.pw:443", + "provider": "akash" + } + ], + "rest": [ + { + "address": "https://api.sandbox-01.aksh.pw:443", + "provider": "akash" + } + ], + "grpc": [ + { + "address": "grpc.sandbox-01.aksh.pw:9090", + "provider": "akash" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://explorer.sandbox-01.aksh.pw/akash", + "tx_page": "https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; + \ No newline at end of file diff --git a/packages/chain-registry/sample/testnet/akashtestnet/ibc.ts b/packages/chain-registry/sample/testnet/akashtestnet/ibc.ts new file mode 100644 index 000000000..f30e8d66e --- /dev/null +++ b/packages/chain-registry/sample/testnet/akashtestnet/ibc.ts @@ -0,0 +1,34 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $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', + }, + channels: [ + { + chain_1: { + channel_id: 'channel-4', + port_id: 'transfer', + }, + chain_2: { + channel_id: 'channel-34', + port_id: 'transfer', + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/sample/testnet/akashtestnet/ibc_chain1.ts b/packages/chain-registry/sample/testnet/akashtestnet/ibc_chain1.ts new file mode 100644 index 000000000..f30e8d66e --- /dev/null +++ b/packages/chain-registry/sample/testnet/akashtestnet/ibc_chain1.ts @@ -0,0 +1,34 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'akashtestnet', + client_id: '07-tendermint-4', + connection_id: 'connection-4', + }, + chain_2: { + chain_name: 'archwaytestnet', + client_id: '07-tendermint-45', + connection_id: 'connection-39', + }, + channels: [ + { + chain_1: { + channel_id: 'channel-4', + port_id: 'transfer', + }, + chain_2: { + channel_id: 'channel-34', + port_id: 'transfer', + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/sample/testnet/akashtestnet/index.ts b/packages/chain-registry/sample/testnet/akashtestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/sample/testnet/akashtestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/sample/testnet/all.ts b/packages/chain-registry/sample/testnet/all.ts new file mode 100644 index 000000000..066767ab8 --- /dev/null +++ b/packages/chain-registry/sample/testnet/all.ts @@ -0,0 +1,11 @@ +import assets from './assets'; +import chains from './chains'; +import ibc from './ibc'; + +export default { + assets, + chains, + ibc +}; + +export { assets, chains, ibc }; diff --git a/packages/chain-registry/sample/testnet/assets.ts b/packages/chain-registry/sample/testnet/assets.ts new file mode 100644 index 000000000..d917ce123 --- /dev/null +++ b/packages/chain-registry/sample/testnet/assets.ts @@ -0,0 +1,8 @@ +import { AssetList } from '@chain-registry/types'; + +import * as _akashtestnet from './akashtestnet'; +import * as _cheqdtestnet from './cheqdtestnet'; + +const assets: AssetList[] = [_akashtestnet.assets, _cheqdtestnet.assets]; + +export default assets; diff --git a/packages/chain-registry/sample/testnet/chains.ts b/packages/chain-registry/sample/testnet/chains.ts new file mode 100644 index 000000000..18dba0045 --- /dev/null +++ b/packages/chain-registry/sample/testnet/chains.ts @@ -0,0 +1,8 @@ +import { Chain } from '@chain-registry/types'; + +import * as _akashtestnet from './akashtestnet'; +import * as _cheqdtestnet from './cheqdtestnet'; + +const chains: Chain[] = [_akashtestnet.chain, _cheqdtestnet.chain]; + +export default chains; diff --git a/packages/chain-registry/sample/testnet/cheqdtestnet/assets.ts b/packages/chain-registry/sample/testnet/cheqdtestnet/assets.ts new file mode 100644 index 000000000..a23dffb4a --- /dev/null +++ b/packages/chain-registry/sample/testnet/cheqdtestnet/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "cheqdtestnet", + "assets": [ + { + "description": "Native token for the cheqd network", + "denom_units": [ + { + "denom": "ncheq", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; + \ No newline at end of file diff --git a/packages/chain-registry/sample/testnet/cheqdtestnet/chain.ts b/packages/chain-registry/sample/testnet/cheqdtestnet/chain.ts new file mode 100644 index 000000000..d6d3a5c6f --- /dev/null +++ b/packages/chain-registry/sample/testnet/cheqdtestnet/chain.ts @@ -0,0 +1,66 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.46.10" + }, + "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": [ + { + "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" + }, + "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" + } + ] +}; +export default info; + \ No newline at end of file diff --git a/packages/chain-registry/sample/testnet/cheqdtestnet/ibc.ts b/packages/chain-registry/sample/testnet/cheqdtestnet/ibc.ts new file mode 100644 index 000000000..c51e8b65e --- /dev/null +++ b/packages/chain-registry/sample/testnet/cheqdtestnet/ibc.ts @@ -0,0 +1,3 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = []; +export default info; diff --git a/packages/chain-registry/sample/testnet/cheqdtestnet/ibc_chain1.ts b/packages/chain-registry/sample/testnet/cheqdtestnet/ibc_chain1.ts new file mode 100644 index 000000000..c51e8b65e --- /dev/null +++ b/packages/chain-registry/sample/testnet/cheqdtestnet/ibc_chain1.ts @@ -0,0 +1,3 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = []; +export default info; diff --git a/packages/chain-registry/sample/testnet/cheqdtestnet/index.ts b/packages/chain-registry/sample/testnet/cheqdtestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/sample/testnet/cheqdtestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/sample/testnet/ibc.ts b/packages/chain-registry/sample/testnet/ibc.ts new file mode 100644 index 000000000..33af96b0f --- /dev/null +++ b/packages/chain-registry/sample/testnet/ibc.ts @@ -0,0 +1,11 @@ +import { IBCInfo } from '@chain-registry/types'; + +import * as _akashtestnet from './akashtestnet'; +import * as _cheqdtestnet from './cheqdtestnet'; + +const ibc: IBCInfo[] = [ + ..._akashtestnet.ibc_chain1, + ..._cheqdtestnet.ibc_chain1 +]; + +export default ibc; diff --git a/packages/chain-registry/sample/testnet/index.ts b/packages/chain-registry/sample/testnet/index.ts new file mode 100644 index 000000000..8fe51b81d --- /dev/null +++ b/packages/chain-registry/sample/testnet/index.ts @@ -0,0 +1,2 @@ +export * as akashtestnet from './akashtestnet'; +export * as cheqdtestnet from './cheqdtestnet'; diff --git a/packages/chain-registry/scripts/build.js b/packages/chain-registry/scripts/build.js index 4cc4d01d7..3bd9e527a 100644 --- a/packages/chain-registry/scripts/build.js +++ b/packages/chain-registry/scripts/build.js @@ -1,57 +1,416 @@ -const fs = require("fs"); -const deepmerge = require("deepmerge"); -const glob = require("glob").sync; -const path = require("path"); +const fs = require('fs'); +const { mkdirpSync } = require('mkdirp'); +const glob = require('glob').sync; +const path = require('path'); -const NON_INFO_DIRS = ["_memo_keys", "_scripts", "_template", ".github"]; +const NON_COSMOS_NETWORK_TYPE = 'noncosmos'; + +const getValidVarName = (varName) => { + if (!/^[a-zA-Z_$]/.test(varName)) { + return `_${varName}`; + } + + return varName; +}; + +const write = (filePath, json, TypeName, isArray = false) => { + const strfy = JSON.stringify(json, null, 2); + const exportType = isArray ? TypeName + '[]' : TypeName; + fs.writeFileSync( + filePath, + `import { ${TypeName} } from '@chain-registry/types'; +const info: ${exportType} = ${strfy}; +export default info;` + ); +}; + +const writeChainIndex = (filePath, chainObj) => { + fs.writeFileSync( + filePath, + `${ + chainObj.assets + ? `import _assets from './assets'; +` + : '' + }${ + chainObj.chain + ? `import _chain from './chain'; +` + : '' + }${ + chainObj.ibc + ? `import _ibc from './ibc'; +` + : '' + }${ + chainObj.ibc_chain1 + ? `import _ibc_chain1 from './ibc_chain1'; +` + : '' + } +${ + chainObj.assets + ? `export const assets = _assets; +` + : '' +}${ + chainObj.chain + ? `export const chain = _chain; +` + : '' + }${ + chainObj.ibc + ? `export const ibc = _ibc; +` + : '' + }${ + chainObj.ibc_chain1 + ? `export const ibc_chain1 = _ibc_chain1; +` + : '' + }` + ); +}; + +const writeNetworkAssets = (filePath, networkObj) => { + const validChain = []; + const importStat = Object.keys(networkObj) + .map((chain_name) => { + if (!networkObj[chain_name].assets) { + return null; + } + + validChain.push(chain_name); + return `import * as _${chain_name} from './${chain_name}'`; + }) + .filter(Boolean) + .join(';\n'); + + if (!validChain.length) { + return false; + } + + fs.writeFileSync( + filePath, + `import { AssetList } from '@chain-registry/types'; + +${importStat} + +const assets: AssetList[] = [${validChain + .map((chain_name) => { + return `_${chain_name}.assets`; + }) + .join(',')}]; + +export default assets; +` + ); + + return true; +}; + +const writeNetworkChains = (filePath, networkObj) => { + const validChain = []; + + const importStat = Object.keys(networkObj) + .map((chain_name) => { + if (!networkObj[chain_name].chain) { + return null; + } + + validChain.push(chain_name); + return `import * as _${chain_name} from './${chain_name}'`; + }) + .filter(Boolean) + .join(';\n'); + + if (!validChain.length) { + return false; + } + + fs.writeFileSync( + filePath, + `import { Chain } from '@chain-registry/types'; + +${importStat} + +const chains: Chain[] = [${validChain + .map((chain_name) => { + return `_${chain_name}.chain`; + }) + .join(',')}]; + +export default chains; +` + ); + + return true; +}; + +const writeNetworkIbc = (filePath, networkObj) => { + const validChain = []; + + const importStat = Object.keys(networkObj) + .map((chain_name) => { + if (!networkObj[chain_name].ibc_chain1) { + return null; + } + + validChain.push(chain_name); + return `import * as _${chain_name} from './${chain_name}'`; + }) + .filter(Boolean) + .join(';\n'); + + if (!validChain.length) { + return false; + } + + fs.writeFileSync( + filePath, + `import { IBCInfo } from '@chain-registry/types'; + +${importStat} + +const ibc: IBCInfo[] = [${validChain + .map((chain_name) => { + return `..._${chain_name}.ibc_chain1`; + }) + .join(',')}]; + +export default ibc; +` + ); + + return true; +}; + +const writeNetworkIndex = (filePath, networkObj) => { + fs.writeFileSync( + filePath, + `${Object.keys(networkObj) + .map((chain_name) => { + return `export * as ${getValidVarName( + chain_name + )} from './${chain_name}'`; + }) + .filter(Boolean) + .join(';\n')}` + ); +}; + +const writeNetworkAll = (filePath, isAssets, isChains, isIbc) => { + fs.writeFileSync( + filePath, + `${ + isAssets + ? `import assets from './assets'; +` + : '' + }${ + isChains + ? `import chains from './chains'; +` + : '' + }${ + isIbc + ? `import ibc from './ibc'; +` + : '' + } + + export default { + ${isAssets ? 'assets,' : ''} + ${isChains ? 'chains,' : ''} + ${isIbc ? 'ibc,' : ''} + }; + + export { + ${isAssets ? 'assets,' : ''} + ${isChains ? 'chains,' : ''} + ${isIbc ? 'ibc,' : ''} + }; +` + ); +}; + +const initChainBlock = (obj, network_type, chain_name) => { + if (!obj[network_type]) { + obj[network_type] = {}; + } + + if (!obj[network_type][chain_name]) { + obj[network_type][chain_name] = {}; + } +}; + +const initIBC = (obj, ibcFieldName) => { + if (!obj[ibcFieldName]) { + obj[ibcFieldName] = []; + } +}; + +const NON_INFO_DIRS = ['_memo_keys', '_scripts', '_template', '.github']; + +const chainPaths = glob(`${__dirname}/../chain-registry/**/chain.json`).filter( + (a) => { + let dir = a.split('chain-registry/chain-registry')[1]; + dir = path.basename(path.dirname(dir)); + return !NON_INFO_DIRS.includes(dir); + } +); const paths = glob(`${__dirname}/../chain-registry/**/*.json`).filter((a) => { - let dir = a.split("chain-registry/chain-registry")[1]; - dir = path.basename(path.dirname(dir)); - return !NON_INFO_DIRS.includes(dir); + const filePath = a.split('chain-registry/chain-registry')[1]; + const dir = path.basename(path.dirname(filePath)); + return ( + !NON_INFO_DIRS.includes(dir) && path.basename(filePath) !== 'chain.json' + ); }); -const assets = []; -const chains = []; -const ibcs = []; -paths.forEach((file) => { - const data = JSON.parse(fs.readFileSync(file, "utf-8")); +const chainNetworkMap = {}; + +// const result = { +// mainnet: { +// akash: { +// assets: {}, +// chain: {}, +// ibc_chain1: [], +// ibc: [] +// } +// }, +// testnet: {} +// }; +const result = {}; + +chainPaths.forEach((file) => { + 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); + + if (data.$schema.endsWith('chain.schema.json')) { + if (!data.slip44) data.slip44 = 118; + if (data.codebase) { + data.codebase = { + cosmos_sdk_version: data.codebase.cosmos_sdk_version, + cosmwasm_enabled: data.codebase.cosmwasm_enabled, + cosmwasm_version: data.codebase.cosmwasm_version + }; + } + delete data.peers; + + initChainBlock(result, data.network_type, data.chain_name); + + result[data.network_type][data.chain_name].chain = data; + + chainNetworkMap[data.chain_name] = data.network_type; + } }); -chains.forEach((chain) => { - if (!chain.slip44) chain.slip44 = 118; +paths.forEach((file) => { + const data = JSON.parse(fs.readFileSync(file, 'utf-8')); + if (!data.$schema) { + console.warn('problematic data:'); + console.log(data); + return; + } + + if (data.$schema.endsWith('assetlist.schema.json')) { + const network_type = chainNetworkMap[data.chain_name]; - 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, - }; + if (!network_type) { + initChainBlock(result, NON_COSMOS_NETWORK_TYPE, data.chain_name); + result[NON_COSMOS_NETWORK_TYPE][data.chain_name].assets = data; + } else { + result[network_type][data.chain_name].assets = data; + } } - delete chain.peers; + if (data.$schema.endsWith('ibc_data.schema.json')) { + const network_type1 = chainNetworkMap[data.chain_1.chain_name]; + + if (!network_type1) { + initChainBlock(result, NON_COSMOS_NETWORK_TYPE, data.chain_1.chain_name); + initIBC(result[NON_COSMOS_NETWORK_TYPE][data.chain_1.chain_name], 'ibc'); + initIBC( + result[NON_COSMOS_NETWORK_TYPE][data.chain_1.chain_name], + 'ibc_chain1' + ); + result[NON_COSMOS_NETWORK_TYPE][data.chain_1.chain_name].ibc.push(data); + result[NON_COSMOS_NETWORK_TYPE][data.chain_1.chain_name].ibc_chain1.push( + data + ); + } else { + initIBC(result[network_type1][data.chain_1.chain_name], 'ibc'); + initIBC(result[network_type1][data.chain_1.chain_name], 'ibc_chain1'); + result[network_type1][data.chain_1.chain_name].ibc.push(data); + result[network_type1][data.chain_1.chain_name].ibc_chain1.push(data); + } + + const network_type2 = chainNetworkMap[data.chain_2.chain_name]; + + if (!network_type2) { + initChainBlock(result, NON_COSMOS_NETWORK_TYPE, data.chain_2.chain_name); + initIBC(result[NON_COSMOS_NETWORK_TYPE][data.chain_2.chain_name], 'ibc'); + result[NON_COSMOS_NETWORK_TYPE][data.chain_2.chain_name].ibc.push(data); + } else { + initIBC(result[network_type2][data.chain_2.chain_name], 'ibc'); + result[network_type2][data.chain_2.chain_name].ibc.push(data); + } + } }); -const write = (file, json, TypeName, isArray = false) => { - const strfy = JSON.stringify(json, null, 2); - const exportType = isArray ? TypeName + "[]" : TypeName; - fs.writeFileSync( - `${__dirname}/../src/${file}.ts`, - `import { ${TypeName} } from '@chain-registry/types'; -const ${file}: ${exportType} = ${strfy}; -export default ${file}; - ` - ); -}; +const SRC_ROOT = `${__dirname}/../src`; +fs.rmSync(SRC_ROOT, { recursive: true }); + +Object.keys(result).forEach((network_type) => { + const networkFolder = path.join(SRC_ROOT, network_type); + + Object.keys(result[network_type]).forEach((chain_name) => { + const chainFolderPath = path.join(networkFolder, chain_name); + mkdirpSync(chainFolderPath); + + const chainObj = result[network_type][chain_name]; + + if (chainObj.chain) { + const chainFilePath = path.join(chainFolderPath, 'chain.ts'); + write(chainFilePath, chainObj.chain, 'Chain', false); + } + + if (chainObj.assets) { + const assetsFilePath = path.join(chainFolderPath, 'assets.ts'); + write(assetsFilePath, chainObj.assets, 'AssetList', false); + } + + if (chainObj.ibc) { + const ibcFilePath = path.join(chainFolderPath, 'ibc.ts'); + write(ibcFilePath, chainObj.ibc, 'IBCInfo', true); + } -write(`assets`, assets, "AssetList", true); -write(`chains`, chains, "Chain", true); -write(`ibc`, ibcs, "IBCInfo", true); + if (chainObj.ibc_chain1) { + const ibc1FilePath = path.join(chainFolderPath, 'ibc_chain1.ts'); + write(ibc1FilePath, chainObj.ibc_chain1, 'IBCInfo', true); + } + + const indexFilePath = path.join(chainFolderPath, 'index.ts'); + writeChainIndex(indexFilePath, chainObj); + }); + + const assetsFilePath = path.join(networkFolder, 'assets.ts'); + const isAssets = writeNetworkAssets(assetsFilePath, result[network_type]); + + const chainsFilePath = path.join(networkFolder, 'chains.ts'); + const isChains = writeNetworkChains(chainsFilePath, result[network_type]); + + const ibcFilePath = path.join(networkFolder, 'ibc.ts'); + const isIbc = writeNetworkIbc(ibcFilePath, result[network_type]); + + const indexFilePath = path.join(networkFolder, 'index.ts'); + writeNetworkIndex(indexFilePath, result[network_type]); + + const allFilePath = path.join(networkFolder, 'all.ts'); + writeNetworkAll(allFilePath, isAssets, isChains, isIbc); +}); diff --git a/packages/chain-registry/src/assets.ts b/packages/chain-registry/src/assets.ts deleted file mode 100644 index 6b48c2194..000000000 --- a/packages/chain-registry/src/assets.ts +++ /dev/null @@ -1,32961 +0,0 @@ -import { AssetList } from '@chain-registry/types'; -const assets: AssetList[] = [ - { - "$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": [ - { - "denom": "0x1::aptos_coin::AptosCoin", - "exponent": 0, - "aliases": [ - "Octa" - ] - }, - { - "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" - }, - "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/apt-dm.svg", - "theme": { - "dark_mode": true - } - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "arbitrum", - "assets": [ - { - "description": "Native token of Arbitrum", - "type_asset": "erc20", - "address": "0x912CE59144191C1204E64559FE8253a0e49E6548", - "denom_units": [ - { - "denom": "0x912CE59144191C1204E64559FE8253a0e49E6548", - "exponent": 0, - "aliases": [ - "arb-wei" - ] - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "wavax", - "exponent": 18 - } - ], - "base": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", - "name": "Wrapped AVAX", - "display": "wavax", - "symbol": "WAVAX", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "avalanche", - "base_denom": "wei" - }, - "provider": "Avalanche" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - }, - "coingecko_id": "wrapped-avax", - "images": [ - { - "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": [ - { - "denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "base": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", - "traces": [ - { - "type": "additional-mintage", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - }, - "provider": "Circle" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "coingecko_id": "usd-coin", - "images": [ - { - "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": [ - { - "denom": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", - "exponent": 0, - "aliases": [ - "dai-wei" - ] - }, - { - "denom": "axldai", - "exponent": 18 - } - ], - "base": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", - "name": "Axelar Wrapped DAI", - "display": "axldai", - "symbol": "axlDAI", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "dai-wei" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - } - ] - }, - { - "description": "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": "axlfrax", - "exponent": 18 - } - ], - "base": "0x4914886dbb8aad7a7456d471eaab10b06d42348d", - "name": "Axelar Wrapped Frax", - "display": "axlfrax", - "symbol": "axlFRAX", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "frax-wei" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - } - ] - }, - { - "description": "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": "axlusdc", - "exponent": 6 - } - ], - "base": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec", - "name": "Axelar Wrapped USDC", - "display": "axlusdc", - "symbol": "axlUSDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "uusdc" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - }, - { - "description": "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": "axlusdt", - "exponent": 6 - } - ], - "base": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66", - "name": "Axelar Wrapped USDT", - "display": "axlusdt", - "symbol": "axlUSDT", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "uusdt" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "wbnb", - "exponent": 18 - } - ], - "base": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", - "name": "Wrapped BNB", - "display": "wbnb", - "symbol": "WBNB", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "binancesmartchain", - "base_denom": "wei" - }, - "chain": { - "contract": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c" - }, - "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" - }, - "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" - } - ] - }, - { - "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": "busd", - "exponent": 18 - } - ], - "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" - }, - "provider": "Binance" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - } - ] - }, - { - "description": "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": "usdc", - "exponent": 18 - } - ], - "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" - }, - "provider": "Binance" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - }, - { - "description": "PURSE Token", - "denom_units": [ - { - "denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "bitcoin", - "assets": [ - { - "description": "Bitcoin", - "denom_units": [ - { - "denom": "sat", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "bitcoin", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "composablepolkadot", - "assets": [ - { - "denom_units": [ - { - "denom": "79228162514264337593543950342", - "exponent": 0 - }, - { - "denom": "dot", - "exponent": 10 - } - ], - "base": "79228162514264337593543950342", - "name": "Polkadot", - "display": "dot", - "symbol": "DOT", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "polkadot", - "base_denom": "Planck" - }, - "provider": "Polkadot Relay" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "polkadot", - "base_denom": "Planck" - }, - "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": [ - { - "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": "gwei", - "exponent": 9 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "coingecko_id": "aave", - "images": [ - { - "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": [ - { - "denom": "0x4d224452801aced8b2f0aebe155379bb5d594381", - "exponent": 0, - "aliases": [ - "ape-wei" - ] - }, - { - "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" - }, - "coingecko_id": "apecoin", - "images": [ - { - "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": [ - { - "denom": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", - "exponent": 0, - "aliases": [ - "axs-wei" - ] - }, - { - "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" - }, - "coingecko_id": "axie-infinity", - "images": [ - { - "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": [ - { - "denom": "0x6b175474e89094c44da98b954eedeac495271d0f", - "exponent": 0, - "aliases": [ - "dai-wei" - ] - }, - { - "denom": "dai", - "exponent": 18 - } - ], - "base": "0x6b175474e89094c44da98b954eedeac495271d0f", - "name": "Dai Stablecoin", - "display": "dai", - "symbol": "DAI", - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "MakerDAO" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - }, - "coingecko_id": "dai", - "images": [ - { - "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": [ - { - "denom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", - "exponent": 0, - "aliases": [ - "sdai-wei" - ] - }, - { - "denom": "sdai", - "exponent": 18 - } - ], - "base": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", - "name": "Savings Dai", - "display": "sdai", - "symbol": "sDAI", - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" - }, - "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" - }, - "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" - } - ] - }, - { - "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": "frax", - "exponent": 18 - } - ], - "base": "0x853d955acef822db058eb8505911ed77f175b99e", - "name": "Frax", - "display": "frax", - "symbol": "FRAX", - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "Frax Protocol" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - }, - "coingecko_id": "frax", - "images": [ - { - "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": [ - { - "denom": "0x514910771af9ca656af840dff83e8264ecf986ca", - "exponent": 0, - "aliases": [ - "link-wei" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "coingecko_id": "maker", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" - } - ] - }, - { - "description": "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", - "type_asset": "erc20", - "address": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "denom_units": [ - { - "denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "exponent": 0, - "aliases": [ - "rai-wei" - ] - }, - { - "denom": "rai", - "exponent": 18 - } - ], - "base": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "name": "Rai Reflex Index", - "display": "rai", - "symbol": "RAI", - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "RAI Finance" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" - }, - "coingecko_id": "rai", - "images": [ - { - "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": [ - { - "denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "exponent": 0, - "aliases": [ - "shib-wei" - ] - }, - { - "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" - }, - "coingecko_id": "shiba-inu", - "images": [ - { - "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": [ - { - "denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "exponent": 0, - "aliases": [ - "steth-wei" - ] - }, - { - "denom": "steth", - "exponent": 18 - } - ], - "base": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "name": "Lido Staked Ether", - "display": "steth", - "symbol": "stETH", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "wei" - }, - "provider": "Lido" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" - }, - "coingecko_id": "staked-ether", - "images": [ - { - "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": [ - { - "denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", - "exponent": 0, - "aliases": [ - "wsteth-wei" - ] - }, - { - "denom": "wsteth", - "exponent": 18 - } - ], - "base": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", - "name": "Wrapped Lido Staked Ether", - "display": "wsteth", - "symbol": "wstETH", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" - }, - "provider": "Lido" - } - ], - "coingecko_id": "wrapped-steth", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } - ] - }, - { - "description": "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": "frxeth", - "exponent": 18 - } - ], - "base": "0x5e8422345238f34275888049021821e8e08caa1f", - "name": "Frax Ether", - "display": "frxeth", - "symbol": "frxETH", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "wei" - }, - "provider": "Frax" - } - ], - "coingecko_id": "frax-ether", - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "0xac3e018457b222d93114458476f3e3416abbe38f", - "exponent": 0, - "aliases": [ - "sfrxeth-wei" - ] - }, - { - "denom": "sfrxeth", - "exponent": 18 - } - ], - "base": "0xac3e018457b222d93114458476f3e3416abbe38f", - "name": "Staked Frax Ether", - "display": "sfrxeth", - "symbol": "sfrxETH", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f" - }, - "provider": "Frax" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" - }, - "coingecko_id": "staked-frax-ether", - "images": [ - { - "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": [ - { - "denom": "0xae78736cd615f374d3085123a210448e74fc6393", - "exponent": 0, - "aliases": [ - "reth-wei" - ] - }, - { - "denom": "reth", - "exponent": 18 - } - ], - "base": "0xae78736cd615f374d3085123a210448e74fc6393", - "name": "Rocket Pool Ether", - "display": "reth", - "symbol": "rETH", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "wei" - }, - "provider": "Rocket Pool" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" - }, - "coingecko_id": "rocket-pool-eth", - "images": [ - { - "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": [ - { - "denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", - "exponent": 0, - "aliases": [ - "cbeth-wei" - ] - }, - { - "denom": "cbeth", - "exponent": 18 - } - ], - "base": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", - "name": "Coinbase Wrapped Staked ETH", - "display": "cbeth", - "symbol": "cbETH", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "wei" - }, - "provider": "Coinbase" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" - }, - "coingecko_id": "coinbase-wrapped-staked-eth", - "images": [ - { - "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": [ - { - "denom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", - "exponent": 0, - "aliases": [ - "uni-wei" - ] - }, - { - "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" - }, - "coingecko_id": "uniswap", - "images": [ - { - "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": [ - { - "denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "base": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "Circle" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "coingecko_id": "usd-coin", - "images": [ - { - "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": [ - { - "denom": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "exponent": 0, - "aliases": [ - "uusdt" - ] - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "base": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "name": "Tether USD", - "display": "usdt", - "symbol": "USDT", - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "Tether" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - }, - "coingecko_id": "tether", - "images": [ - { - "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": [ - { - "denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "exponent": 0, - "aliases": [ - "wbtc-satoshi" - ] - }, - { - "denom": "wbtc", - "exponent": 8 - } - ], - "base": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "name": "Wrapped Bitcoin", - "display": "wbtc", - "symbol": "WBTC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "bitcoin", - "base_denom": "sat" - }, - "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" - }, - "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" - } - ] - }, - { - "description": "wETH is 'wrapped ETH'", - "type_asset": "erc20", - "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "denom_units": [ - { - "denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "exponent": 0, - "aliases": [ - "weth-wei" - ] - }, - { - "denom": "weth", - "exponent": 18 - } - ], - "base": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "wei" - }, - "provider": "Ethereum" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" - }, - "coingecko_id": "weth", - "images": [ - { - "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": [ - { - "denom": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18", - "exponent": 0, - "aliases": [ - "xcn-wei" - ] - }, - { - "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" - }, - "coingecko_id": "chain-2", - "images": [ - { - "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": [ - { - "denom": "0x4fabb145d64652a948d72533023f6e7a623c7c53", - "exponent": 0, - "aliases": [ - "busd-wei" - ] - }, - { - "denom": "busd", - "exponent": 18 - } - ], - "base": "0x4fabb145d64652a948d72533023f6e7a623c7c53", - "name": "Binance USD", - "display": "busd", - "symbol": "BUSD", - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "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" - }, - "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" - } - ] - }, - { - "description": "", - "type_asset": "erc20", - "address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", - "denom_units": [ - { - "denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", - "exponent": 0, - "aliases": [ - "pepe-wei" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "YieldETH", - "exponent": 18 - } - ], - "base": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec", - "name": "Real Yield ETH", - "display": "YieldETH", - "symbol": "YieldETH", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "wei" - }, - "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" - }, - "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" - } - ] - }, - { - "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": "tBTC", - "exponent": 18, - "aliases": [] - } - ], - "type_asset": "erc20", - "address": "0x18084fba666a33d37592fa2633fd49a74dd93a88", - "base": "0x18084fba666a33d37592fa2633fd49a74dd93a88", - "display": "tBTC", - "name": "tBTC v2", - "symbol": "tBTC", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "bitcoin", - "base_denom": "sat" - }, - "provider": "Threshold Network" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg" - }, - "coingecko_id": "tbtc", - "images": [ - { - "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": [ - { - "denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "exponent": 0, - "aliases": [] - }, - { - "denom": "pstake", - "exponent": 18, - "aliases": [] - } - ], - "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" - }, - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "coingecko_id": "occamfi", - "images": [ - { - "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": [ - { - "denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "exponent": 0, - "aliases": [] - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "ERC20 wrapped version of FTM", - "type_asset": "erc20", - "address": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", - "denom_units": [ - { - "denom": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", - "exponent": 0 - }, - { - "denom": "wftm", - "exponent": 18 - } - ], - "base": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", - "name": "Wrapped Fantom", - "display": "wftm", - "symbol": "WFTM", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "fantom", - "base_denom": "wei" - }, - "chain": { - "contract": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" - }, - "provider": "Fantom" - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "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": "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" - }, - "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" - } - ] - }, - { - "description": "Wrapped Filecoin, ERC20 Wrapper over Filecoin", - "address": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", - "denom_units": [ - { - "denom": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", - "exponent": 0, - "aliases": [ - "wfil-wei" - ] - }, - { - "denom": "wfil", - "exponent": 18 - } - ], - "type_asset": "erc20", - "base": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", - "name": "Wrapped FIL", - "display": "wfil", - "symbol": "WFIL", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "filecoin", - "base_denom": "attoFIL" - }, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "kusama", - "assets": [ - { - "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", - "denom_units": [ - { - "denom": "Planck", - "exponent": 0 - }, - { - "denom": "Point", - "exponent": 3 - }, - { - "denom": "uKSM", - "exponent": 3, - "aliases": [ - "MicroKSM" - ] - }, - { - "denom": "uKSM", - "exponent": 3, - "aliases": [ - "MilliKSM" - ] - }, - { - "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" - }, - "coingecko_id": "kusama", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "Wei", - "exponent": 0, - "aliases": [ - "wei" - ] - }, - { - "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" - }, - "coingecko_id": "moonbeam", - "images": [ - { - "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": [ - { - "denom": "0xacc15dc74880c9944775448304b263d191c6077f", - "exponent": 0, - "aliases": [ - "wglmr-wei" - ] - }, - { - "denom": "wglmr", - "exponent": 18 - } - ], - "base": "0xacc15dc74880c9944775448304b263d191c6077f", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "moonbeam", - "base_denom": "Wei" - }, - "provider": "Moonbeam" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" - }, - "coingecko_id": "wrapped-moonbeam", - "images": [ - { - "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": [ - { - "denom": "0xffffffff1fcacbd218edc0eba20fc2308c778080", - "exponent": 0, - "aliases": [ - "dot-planck" - ] - }, - { - "denom": "xcdot", - "exponent": 10 - } - ], - "base": "0xffffffff1fcacbd218edc0eba20fc2308c778080", - "name": "Wrapped Polkadot", - "display": "xcdot", - "symbol": "xcDOT", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "polkadot", - "base_denom": "Planck" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" - } - ] - }, - { - "description": "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": "axldai", - "exponent": 18 - } - ], - "base": "0x14df360966a1c4582d2b18edbdae432ea0a27575", - "name": "Axelar Wrapped Dai Stablecoin", - "display": "axldai", - "symbol": "axlDAI", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "dai-wei" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - } - ] - }, - { - "description": "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": "axlfrax", - "exponent": 18 - } - ], - "base": "0x61C82805453a989E99B544DFB7031902e9bac448", - "name": "Axelar Wrapped Frax", - "display": "axlfrax", - "symbol": "axlFRAX", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "frax-wei" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - } - ] - }, - { - "description": "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": "axlusdc", - "exponent": 6 - } - ], - "base": "0xca01a1d0993565291051daff390892518acfad3a", - "name": "Axelar Wrapped USD Coin", - "display": "axlusdc", - "symbol": "axlUSDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "uusdc" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - }, - { - "description": "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": "axlusdt", - "exponent": 6 - } - ], - "base": "0xdfd74af792bc6d45d1803f425ce62dd16f8ae038", - "name": "Axelar Wrapped Tether USD", - "display": "axlusdt", - "symbol": "axlUSDT", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "uusdt" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "picasso", - "assets": [ - { - "description": "The native staking and governance token of Picasso.", - "denom_units": [ - { - "denom": "ppica", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "4", - "exponent": 0 - }, - { - "denom": "ksm", - "exponent": 12 - } - ], - "base": "4", - "name": "Kusama", - "display": "ksm", - "symbol": "KSM", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "kusama", - "base_denom": "Planck" - }, - "provider": "Kusama Parachain" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kusama", - "base_denom": "Planck" - }, - "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": "79228162514264337593543950342", - "exponent": 0 - }, - { - "denom": "dot", - "exponent": 10 - } - ], - "base": "79228162514264337593543950342", - "name": "Polkadot", - "display": "dot", - "symbol": "DOT", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "composablepolkadot", - "base_denom": "79228162514264337593543950342", - "channel_id": "channel-15" - }, - "chain": { - "channel_id": "channel-15", - "path": "transfer/channel-15/79228162514264337593543950342" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "composablepolkadot", - "base_denom": "79228162514264337593543950342" - }, - "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": "130", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "base": "130", - "name": "Statemine", - "display": "usdt", - "symbol": "USDT", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "statemine", - "base_denom": "130" - }, - "provider": "Kusama Parachain" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "statemine", - "base_denom": "130" - } - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "polkadot", - "assets": [ - { - "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", - "denom_units": [ - { - "denom": "Planck", - "exponent": 0, - "aliases": [ - "planck" - ] - }, - { - "denom": "uDOT", - "exponent": 4, - "aliases": [ - "udot", - "microdot", - "Microdot" - ] - }, - { - "denom": "mDOT", - "exponent": 7, - "aliases": [ - "millidot", - "Millidot" - ] - }, - { - "denom": "DOT", - "exponent": 10, - "aliases": [ - "dot", - "New DOT", - "new dot" - ] - }, - { - "denom": "DOT (old)", - "exponent": 12 - }, - { - "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" - }, - "coingecko_id": "polkadot", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "wmatic", - "exponent": 18, - "aliases": [ - "polygon" - ] - } - ], - "base": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", - "name": "Wrapped Matic", - "display": "wmatic", - "symbol": "WMATIC", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "polygon", - "base_denom": "wei" - }, - "provider": "Polygon" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" - }, - "coingecko_id": "wmatic", - "images": [ - { - "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": [ - { - "denom": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "base": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", - "traces": [ - { - "type": "additional-mintage", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - }, - "provider": "Circle" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "coingecko_id": "usd-coin", - "images": [ - { - "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": [ - { - "denom": "0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9", - "exponent": 0, - "aliases": [ - "dai-wei" - ] - }, - { - "denom": "axldai", - "exponent": 18 - } - ], - "base": "0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9", - "name": "Axelar Wrapped Dai Stablecoin", - "display": "axldai", - "symbol": "axlDAI", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "dai-wei" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - } - ] - }, - { - "description": "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": "axlfrax", - "exponent": 18 - } - ], - "base": "0x53adc464b488be8c5d7269b9abbce8ba74195c3a", - "name": "Axelar Wrapped Frax", - "display": "axlfrax", - "symbol": "axlFRAX", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "frax-wei" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - } - ] - }, - { - "description": "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": "axlusdc", - "exponent": 6 - } - ], - "base": "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed", - "name": "Axelar Wrapped USD Coin", - "display": "axlusdc", - "symbol": "axlUSDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "uusdc" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - }, - { - "description": "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": "axlusdt", - "exponent": 6 - } - ], - "base": "0xceed2671d8634e3ee65000edbbee66139b132fbf", - "name": "Axelar Wrapped Tether USD", - "display": "axlusdt", - "symbol": "axlUSDT", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelar", - "base_denom": "uusdt" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/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": [ - { - "denom": "0x9ceE70895726B0ea14E6019C961dAf32222a7C2f", - "exponent": 0, - "aliases": [] - }, - { - "denom": "page", - "exponent": 8 - } - ], - "base": "0x9ceE70895726B0ea14E6019C961dAf32222a7C2f", - "name": "Page", - "display": "page", - "symbol": "PAGE", - "traces": [ - { - "type": "additional-mintage", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" - }, - "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" - }, - "images": [ - { - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "solana", - "assets": [ - { - "description": "Solana (SOL) is the native asset of the Solana blockchain.", - "denom_units": [ - { - "denom": "Lamport", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "solana", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" - } - ] - }, - { - "description": "", - "type_asset": "erc20", - "address": "So11111111111111111111111111111111111111112", - "denom_units": [ - { - "denom": "So11111111111111111111111111111111111111112", - "exponent": 0 - }, - { - "denom": "wsol", - "exponent": 9 - } - ], - "base": "So11111111111111111111111111111111111111112", - "name": "Wrapped SOL", - "display": "wsol", - "symbol": "WSOL", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "solana", - "base_denom": "Lamport" - }, - "provider": "Solana" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" - }, - "coingecko_id": "wrapped-solana", - "images": [ - { - "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": [ - { - "denom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "bonk", - "images": [ - { - "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": [ - { - "denom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", - "exponent": 0 - }, - { - "denom": "pyth", - "exponent": 6 - } - ], - "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" - } - ], - "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": [ - { - "denom_units": [ - { - "denom": "130", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "base": "130", - "name": "Statemine", - "display": "usdt", - "symbol": "USDT", - "coingecko_id": "tether" - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "sui", - "assets": [ - { - "description": "Sui’s native asset is called SUI.", - "denom_units": [ - { - "denom": "0x2::sui::SUI", - "exponent": 0, - "aliases": [ - "MIST" - ] - }, - { - "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" - }, - "coingecko_id": "sui", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "8ball", - "assets": [ - { - "description": "The native staking token of 8ball.", - "denom_units": [ - { - "denom": "uebl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "acrechain", - "assets": [ - { - "description": "The native EVM, governance and staking token of the Acrechain", - "denom_units": [ - { - "denom": "aacre", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Overcollateralized stable coin for Arable derivatives v1", - "denom_units": [ - { - "denom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Ciento Exchange Token", - "denom_units": [ - { - "denom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "ubld", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", - "denom_units": [ - { - "denom": "uist", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "aioz", - "assets": [ - { - "description": "The native staking and governance token of the AIOZ Network.", - "denom_units": [ - { - "denom": "attoaioz", - "exponent": 0 - }, - { - "denom": "nanoaioz", - "exponent": 9 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "uakt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Tether USDt on Akash", - "denom_units": [ - { - "denom": "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-2", - "path": "transfer/channel-2/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "andromeda", - "assets": [ - { - "description": "The native staking and governance token of Andromeda", - "denom_units": [ - { - "denom": "uandr", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "archway", - "assets": [ - { - "description": "The native token of Archway network", - "denom_units": [ - { - "denom": "aarch", - "exponent": 0 - }, - { - "denom": "uarch", - "exponent": 12 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "ERIS liquid staked ARCH", - "type_asset": "cw20", - "address": "archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5", - "denom_units": [ - { - "denom": "cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/amparch.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "arkh", - "assets": [ - { - "description": "The native token of Arkhadian", - "denom_units": [ - { - "denom": "arkh", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "assetmantle", - "assets": [ - { - "description": "The native token of Asset Mantle", - "denom_units": [ - { - "denom": "umntl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "aura", - "assets": [ - { - "description": "The native token of Aura Network", - "denom_units": [ - { - "denom": "uaura", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "axelar", - "assets": [ - { - "description": "The native token of Axelar", - "denom_units": [ - { - "denom": "uaxl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Circle's stablecoin on Axelar", - "denom_units": [ - { - "denom": "uusdc", - "exponent": 0 - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "base": "uusdc", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - }, - "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" - }, - "coingecko_id": "axlusdc", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - ] - }, - { - "description": "Frax's fractional-algorithmic stablecoin on Axelar", - "denom_units": [ - { - "denom": "frax-wei", - "exponent": 0 - }, - { - "denom": "frax", - "exponent": 18 - } - ], - "base": "frax-wei", - "name": "Frax", - "display": "frax", - "symbol": "FRAX", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - } - ] - }, - { - "description": "Dai stablecoin on Axelar", - "denom_units": [ - { - "denom": "dai-wei", - "exponent": 0 - }, - { - "denom": "dai", - "exponent": 18 - } - ], - "base": "dai-wei", - "name": "Dai Stablecoin", - "display": "dai", - "symbol": "DAI", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg" - } - ] - }, - { - "description": "Tether's USD stablecoin on Axelar", - "denom_units": [ - { - "denom": "uusdt", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "base": "uusdt", - "name": "Tether USD", - "display": "usdt", - "symbol": "USDT", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg" - } - ] - }, - { - "description": "Wrapped Ether on Axelar", - "denom_units": [ - { - "denom": "weth-wei", - "exponent": 0 - }, - { - "denom": "weth", - "exponent": 18 - } - ], - "base": "weth-wei", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" - } - ] - }, - { - "description": "Wrapped Bitcoin on Axelar", - "denom_units": [ - { - "denom": "wbtc-satoshi", - "exponent": 0 - }, - { - "denom": "wbtc", - "exponent": 8 - } - ], - "base": "wbtc-satoshi", - "name": "Wrapped Bitcoin", - "display": "wbtc", - "symbol": "WBTC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" - } - ] - }, - { - "description": "Aave on Axelar", - "denom_units": [ - { - "denom": "aave-wei", - "exponent": 0 - }, - { - "denom": "aave", - "exponent": 18 - } - ], - "base": "aave-wei", - "name": "Aave", - "display": "aave", - "symbol": "AAVE", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" - } - ] - }, - { - "description": "ApeCoin on Axelar", - "denom_units": [ - { - "denom": "ape-wei", - "exponent": 0 - }, - { - "denom": "ape", - "exponent": 18 - } - ], - "base": "ape-wei", - "name": "ApeCoin", - "display": "ape", - "symbol": "APE", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x4d224452801aced8b2f0aebe155379bb5d594381" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" - } - ] - }, - { - "description": "Axie Infinity Shard on Axelar", - "denom_units": [ - { - "denom": "axs-wei", - "exponent": 0 - }, - { - "denom": "axs", - "exponent": 18 - } - ], - "base": "axs-wei", - "name": "Axie Infinity Shard", - "display": "axs", - "symbol": "AXS", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" - } - ] - }, - { - "description": "Chainlink on Axelar", - "denom_units": [ - { - "denom": "link-wei", - "exponent": 0 - }, - { - "denom": "link", - "exponent": 18 - } - ], - "base": "link-wei", - "name": "Chainlink", - "display": "link", - "symbol": "LINK", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x514910771af9ca656af840dff83e8264ecf986ca" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" - } - ] - }, - { - "description": "Maker on Axelar", - "denom_units": [ - { - "denom": "mkr-wei", - "exponent": 0 - }, - { - "denom": "mkr", - "exponent": 18 - } - ], - "base": "mkr-wei", - "name": "Maker", - "display": "mkr", - "symbol": "MKR", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" - } - ] - }, - { - "description": "Rai Reflex Index on Axelar", - "denom_units": [ - { - "denom": "rai-wei", - "exponent": 0 - }, - { - "denom": "rai", - "exponent": 18 - } - ], - "base": "rai-wei", - "name": "Rai Reflex Index", - "display": "rai", - "symbol": "RAI", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" - } - ] - }, - { - "description": "Shiba Inu on Axelar", - "denom_units": [ - { - "denom": "shib-wei", - "exponent": 0 - }, - { - "denom": "shib", - "exponent": 18 - } - ], - "base": "shib-wei", - "name": "Shiba Inu", - "display": "shib", - "symbol": "SHIB", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" - } - ] - }, - { - "description": "Lido Staked Ether on Axelar", - "denom_units": [ - { - "denom": "steth-wei", - "exponent": 0 - }, - { - "denom": "steth", - "exponent": 18 - } - ], - "base": "steth-wei", - "name": "Lido Staked Ether", - "display": "steth", - "symbol": "stETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" - } - ] - }, - { - "description": "Uniswap on Axelar", - "denom_units": [ - { - "denom": "uni-wei", - "exponent": 0 - }, - { - "denom": "uni", - "exponent": 18 - } - ], - "base": "uni-wei", - "name": "Uniswap", - "display": "uni", - "symbol": "UNI", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" - } - ] - }, - { - "description": "Chain on Axelar", - "denom_units": [ - { - "denom": "xcn-wei", - "exponent": 0 - }, - { - "denom": "xcn", - "exponent": 18 - } - ], - "base": "xcn-wei", - "name": "Chain", - "display": "xcn", - "symbol": "XCN", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" - } - ] - }, - { - "description": "Wrapped Polkadot on Axelar", - "denom_units": [ - { - "denom": "dot-planck", - "exponent": 0 - }, - { - "denom": "dot", - "exponent": 10 - } - ], - "base": "dot-planck", - "name": "Wrapped Polkadot", - "display": "dot", - "symbol": "DOT", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "moonbeam", - "base_denom": "0xffffffff1fcacbd218edc0eba20fc2308c778080" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" - } - ] - }, - { - "description": "Wrapped Moonbeam on Axelar", - "denom_units": [ - { - "denom": "wglmr-wei", - "exponent": 0 - }, - { - "denom": "wglmr", - "exponent": 18 - } - ], - "base": "wglmr-wei", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "moonbeam", - "base_denom": "0xacc15dc74880c9944775448304b263d191c6077f" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" - } - ] - }, - { - "description": "Wrapped Matic on Axelar", - "denom_units": [ - { - "denom": "wmatic-wei", - "exponent": 0 - }, - { - "denom": "wmatic", - "exponent": 18 - } - ], - "base": "wmatic-wei", - "name": "Wrapped Matic", - "display": "wmatic", - "symbol": "WMATIC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "polygon", - "base_denom": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" - } - ] - }, - { - "description": "Wrapped BNB on Axelar", - "denom_units": [ - { - "denom": "wbnb-wei", - "exponent": 0 - }, - { - "denom": "wbnb", - "exponent": 18 - } - ], - "base": "wbnb-wei", - "name": "Wrapped BNB", - "display": "wbnb", - "symbol": "WBNB", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "binancesmartchain", - "base_denom": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" - } - ] - }, - { - "description": "Binance USD on Axelar.", - "denom_units": [ - { - "denom": "busd-wei", - "exponent": 0 - }, - { - "denom": "busd", - "exponent": 18 - } - ], - "base": "busd-wei", - "name": "Binance USD", - "display": "busd", - "symbol": "BUSD", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x4fabb145d64652a948d72533023f6e7a623c7c53" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - } - ] - }, - { - "description": "Wrapped AVAX on Axelar.", - "denom_units": [ - { - "denom": "wavax-wei", - "exponent": 0 - }, - { - "denom": "avax", - "exponent": 18 - } - ], - "base": "wavax-wei", - "name": "Wrapped AVAX", - "display": "avax", - "symbol": "WAVAX", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "avalanche", - "base_denom": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - } - ] - }, - { - "description": "Wrapped FTM on Axelar.", - "denom_units": [ - { - "denom": "wftm-wei", - "exponent": 0 - }, - { - "denom": "ftm", - "exponent": 18 - } - ], - "base": "wftm-wei", - "name": "Wrapped FTM", - "display": "ftm", - "symbol": "WFTM", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "fantom", - "base_denom": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" - } - ] - }, - { - "description": "Circle's stablecoin from Polygon on Axelar", - "denom_units": [ - { - "denom": "polygon-uusdc", - "exponent": 0 - }, - { - "denom": "polygon-usdc", - "exponent": 6 - } - ], - "base": "polygon-uusdc", - "name": "USD Coin from Polygon", - "display": "polygon-usdc", - "symbol": "USDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "polygon", - "base_denom": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - ] - }, - { - "description": "Circle's stablecoin from Avalanche on Axelar", - "denom_units": [ - { - "denom": "avalanche-uusdc", - "exponent": 0 - }, - { - "denom": "avalanche-usdc", - "exponent": 6 - } - ], - "base": "avalanche-uusdc", - "name": "USD Coin from Avalanche", - "display": "avalanche-usdc", - "symbol": "USDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "avalanche", - "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - ] - }, - { - "description": "Wrapped FIL on Axelar", - "denom_units": [ - { - "denom": "wfil-wei", - "exponent": 0 - }, - { - "denom": "fil", - "exponent": 18 - } - ], - "base": "wfil-wei", - "name": "Wrapped FIL from Filecoin", - "display": "fil", - "symbol": "axlFIL", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "filecoin", - "base_denom": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg" - } - ] - }, - { - "description": "Arbitrum on Axelar", - "denom_units": [ - { - "denom": "arb-wei", - "exponent": 0 - }, - { - "denom": "arb", - "exponent": 18 - } - ], - "base": "arb-wei", - "name": "Arbitrum", - "display": "arb", - "symbol": "ARB", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "arbitrum", - "base_denom": "0x912CE59144191C1204E64559FE8253a0e49E6548" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "pepe-wei", - "exponent": 0, - "aliases": [ - "0x6982508145454Ce325dDbE47a25d4ec3d2311933" - ] - }, - { - "denom": "pepe", - "exponent": 18 - } - ], - "base": "pepe-wei", - "name": "Pepe", - "display": "pepe", - "symbol": "PEPE", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" - } - }, - { - "denom_units": [ - { - "denom": "cbeth-wei", - "exponent": 0, - "aliases": [ - "0xbe9895146f7af43049ca1c1ae358b0541ea49704" - ] - }, - { - "denom": "cbeth", - "exponent": 18 - } - ], - "base": "cbeth-wei", - "name": "Coinbase Wrapped Staked ETH", - "display": "cbeth", - "symbol": "cbETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" - } - }, - { - "denom_units": [ - { - "denom": "reth-wei", - "exponent": 0, - "aliases": [ - "0xae78736cd615f374d3085123a210448e74fc6393" - ] - }, - { - "denom": "reth", - "exponent": 18 - } - ], - "base": "reth-wei", - "name": "Rocket Pool Ether", - "display": "reth", - "symbol": "rETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" - } - }, - { - "denom_units": [ - { - "denom": "sfrxeth-wei", - "exponent": 0, - "aliases": [ - "0xac3e018457b222d93114458476f3e3416abbe38f" - ] - }, - { - "denom": "sfrxeth", - "exponent": 18 - } - ], - "base": "sfrxeth-wei", - "name": "Staked Frax Ether", - "display": "sfrxeth", - "symbol": "sfrxETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" - } - }, - { - "denom_units": [ - { - "denom": "wsteth-wei", - "exponent": 0, - "aliases": [ - "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" - ] - }, - { - "denom": "wsteth", - "exponent": 18 - } - ], - "base": "wsteth-wei", - "name": "Wrapped Lido Staked Ether", - "display": "wsteth", - "symbol": "wstETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } - }, - { - "denom_units": [ - { - "denom": "yieldeth-wei", - "exponent": 0, - "aliases": [ - "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" - ] - }, - { - "denom": "YieldETH", - "exponent": 18 - } - ], - "base": "yieldeth-wei", - "name": "Real Yield Eth", - "display": "YieldETH", - "symbol": "YieldETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" - } - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "bandchain", - "assets": [ - { - "description": "The native token of BandChain", - "denom_units": [ - { - "denom": "uband", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "beezee", - "assets": [ - { - "description": "BeeZee native blockchain", - "denom_units": [ - { - "denom": "ubze", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "ubcna", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "bitsong", - "assets": [ - { - "description": "BitSong Native Token", - "denom_units": [ - { - "denom": "ubtsg", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Adam Clay a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" - } - ] - }, - { - "description": "Nicola Fasano a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" - } - ] - }, - { - "description": "Delta 9 a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" - } - ] - }, - { - "description": "FONTI a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" - } - ] - }, - { - "description": "BlackJack a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" - } - ] - }, - { - "description": "Rawanne a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" - } - ] - }, - { - "description": "Enmoda a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" - } - ] - }, - { - "description": "404Deep Records a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" - } - ] - }, - { - "description": "N43 a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" - } - ] - }, - { - "description": "Puro Lobo a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" - } - ] - }, - { - "description": "Vibranium a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" - } - ] - }, - { - "description": "Karina a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" - } - ] - }, - { - "description": "Luca Testa a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png" - } - ] - }, - { - "description": "Carolina Marquez a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png" - } - ] - }, - { - "description": "L DON a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "bluzelle", - "assets": [ - { - "description": "The native token of Bluzelle", - "denom_units": [ - { - "denom": "ubnt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The ELT token of Bluzelle's Gamma 4 Gaming Ecosystem", - "denom_units": [ - { - "denom": "uelt", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "keywords": [ - "elt" - ], - "images": [ - { - "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": [ - { - "denom": "ug4", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "keywords": [ - "g4" - ], - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/g4.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "bostrom", - "assets": [ - { - "description": "The staking token of Bostrom", - "denom_units": [ - { - "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" - }, - "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" - } - ] - }, - { - "description": "The liquid staking token of Bostrom", - "denom_units": [ - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg" - } - ] - }, - { - "description": "The resource token of Bostrom", - "denom_units": [ - { - "denom": "milliampere", - "exponent": 0, - "aliases": [ - "milliampere" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg" - } - ] - }, - { - "description": "The resource token of Bostrom", - "denom_units": [ - { - "denom": "millivolt", - "exponent": 0, - "aliases": [ - "millivolt" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg" - } - ] - }, - { - "description": "The staking token of Cyber", - "denom_units": [ - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "acanto", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Tether USDt on Canto", - "denom_units": [ - { - "denom": "ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-13", - "path": "transfer/channel-13/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "carbon", - "assets": [ - { - "description": "The native governance token of Carbon", - "denom_units": [ - { - "denom": "swth", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native stablecoin of Carbon", - "denom_units": [ - { - "denom": "usc", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "BNB token on Carbon", - "denom_units": [ - { - "denom": "bnb.1.6.773edb", - "exponent": 0 - }, - { - "denom": "bnb", - "exponent": 18, - "aliases": [ - "BNB" - ] - } - ], - "base": "bnb.1.6.773edb", - "name": "Binance Coin", - "display": "bnb", - "symbol": "BNB", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "binancesmartchain", - "base_denom": "wei", - "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" - }, - "chain": { - "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" - } - ] - }, - { - "description": "bNEO token on Carbon", - "denom_units": [ - { - "denom": "bneo.1.14.e2e5f6", - "exponent": 0 - }, - { - "denom": "bneo", - "exponent": 8, - "aliases": [ - "bNEO" - ] - } - ], - "base": "bneo.1.14.e2e5f6", - "name": "BurgerNEO", - "display": "bneo", - "symbol": "bNEO", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "neo", - "base_denom": "0x48c40d4666f93408be1bef038b6722404d9a4c2a", - "contract": "0x8eb3bdf5ed4ac1516d316c6b1b207a3cf5eb7567" - }, - "chain": { - "contract": "0x8eb3bdf5ed4ac1516d316c6b1b207a3cf5eb7567" - }, - "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" - }, - "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" - } - ] - }, - { - "description": "BUSD (BEP-20) token on Carbon", - "denom_units": [ - { - "denom": "busd.1.6.754a80", - "exponent": 0 - }, - { - "denom": "busd", - "exponent": 18, - "aliases": [ - "BUSD" - ] - } - ], - "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" - }, - "chain": { - "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" - }, - "provider": "PolyNetwork" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - } - ] - }, - { - "description": "Carbon Wrapped GLP on Carbon", - "denom_units": [ - { - "denom": "cglp.1.19.1698d3", - "exponent": 0 - }, - { - "denom": "cglp", - "exponent": 18, - "aliases": [ - "CGLP" - ] - } - ], - "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" - }, - "chain": { - "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" - }, - "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" - }, - "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" - } - ] - }, - { - "description": "Grouped USD on Carbon", - "denom_units": [ - { - "denom": "cgt/1", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "ETH (Arbitrum) token on Carbon", - "denom_units": [ - { - "denom": "eth.1.19.c3b805", - "exponent": 0 - }, - { - "denom": "eth", - "exponent": 18, - "aliases": [ - "ETH" - ] - } - ], - "base": "eth.1.19.c3b805", - "name": "Ethereum (Arbitrum)", - "display": "eth", - "symbol": "ETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "arbitrum", - "base_denom": "wei", - "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" - }, - "chain": { - "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" - }, - "provider": "PolyNetwork" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" - } - ] - }, - { - "description": "ETH (ERC20) token on Carbon", - "denom_units": [ - { - "denom": "eth.1.2.942d87", - "exponent": 0 - }, - { - "denom": "eth", - "exponent": 18, - "aliases": [ - "ETH" - ] - } - ], - "base": "eth.1.2.942d87", - "name": "Ethereum (ERC20)", - "display": "eth", - "symbol": "ETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "wei", - "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" - }, - "chain": { - "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" - }, - "provider": "PolyNetwork" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" - } - ] - }, - { - "description": "STARS token on Carbon", - "denom_units": [ - { - "denom": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", - "exponent": 0 - }, - { - "denom": "stars", - "exponent": 6, - "aliases": [ - "STARS" - ] - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" - } - ] - }, - { - "description": "LUNA token on Carbon", - "denom_units": [ - { - "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", - "exponent": 0 - }, - { - "denom": "luna", - "exponent": 6, - "aliases": [ - "LUNA" - ] - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" - } - ] - }, - { - "description": "STRD token on Carbon", - "denom_units": [ - { - "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "exponent": 0 - }, - { - "denom": "strd", - "exponent": 6, - "aliases": [ - "STRD" - ] - } - ], - "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" - }, - "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" - }, - "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" - } - ] - }, - { - "description": "EVMOS token on Carbon", - "denom_units": [ - { - "denom": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", - "exponent": 0 - }, - { - "denom": "evmos", - "exponent": 18, - "aliases": [ - "EVMOS" - ] - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" - } - ] - }, - { - "description": "IRIS token on Carbon", - "denom_units": [ - { - "denom": "ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118", - "exponent": 0 - }, - { - "denom": "iris", - "exponent": 6, - "aliases": [ - "IRIS" - ] - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" - } - ] - }, - { - "description": "KUJI token on Carbon", - "denom_units": [ - { - "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", - "exponent": 0 - }, - { - "denom": "kuji", - "exponent": 6, - "aliases": [ - "KUJI" - ] - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png" - } - ] - }, - { - "description": "stOSMO token on Carbon", - "denom_units": [ - { - "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", - "exponent": 0 - }, - { - "denom": "stosmo", - "exponent": 6, - "aliases": [ - "stOSMO" - ] - } - ], - "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" - }, - "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" - }, - "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" - } - ] - }, - { - "description": "CANTO token on Carbon", - "denom_units": [ - { - "denom": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", - "exponent": 0 - }, - { - "denom": "canto", - "exponent": 18, - "aliases": [ - "CANTO" - ] - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png" - } - ] - }, - { - "description": "Cosmos governance token on Carbon", - "denom_units": [ - { - "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", - "exponent": 0 - }, - { - "denom": "atom", - "exponent": 6, - "aliases": [ - "ATOM" - ] - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ] - }, - { - "description": "stATOM token on Carbon", - "denom_units": [ - { - "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "exponent": 0 - }, - { - "denom": "statom", - "exponent": 6, - "aliases": [ - "stATOM" - ] - } - ], - "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" - }, - "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" - }, - "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" - } - ] - }, - { - "description": "OSMO token on Carbon", - "denom_units": [ - { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "exponent": 0 - }, - { - "denom": "osmo", - "exponent": 6, - "aliases": [ - "OSMO" - ] - } - ], - "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" - }, - "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" - }, - "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" - } - ] - }, - { - "description": "USDC (ERC20) token on Carbon", - "denom_units": [ - { - "denom": "usdc.1.2.343151", - "exponent": 0 - }, - { - "denom": "usdc", - "exponent": 6, - "aliases": [ - "USDC" - ] - } - ], - "base": "usdc.1.2.343151", - "name": "Circle USD", - "display": "usdc", - "symbol": "USDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" - }, - "chain": { - "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" - }, - "provider": "PolyNetwork" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - }, - { - "description": "USD Coin (BEP-20) token on Carbon", - "denom_units": [ - { - "denom": "usdc.1.6.53ff75", - "exponent": 0 - }, - { - "denom": "usdc", - "exponent": 18, - "aliases": [ - "USDC" - ] - } - ], - "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" - }, - "chain": { - "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" - }, - "provider": "PolyNetwork" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - }, - { - "description": "ZIL token on Carbon", - "denom_units": [ - { - "denom": "zil.1.18.1a4a06", - "exponent": 0 - }, - { - "denom": "zil", - "exponent": 12, - "aliases": [ - "ZIL" - ] - } - ], - "base": "zil.1.18.1a4a06", - "name": "Zilliqa", - "display": "zil", - "symbol": "ZIL", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "zilliqa", - "base_denom": "wei", - "contract": "0xd73c6b871b4d0e130d64581993b745fc938a5be7" - }, - "chain": { - "contract": "0xd73c6b871b4d0e130d64581993b745fc938a5be7" - }, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "celestia", - "assets": [ - { - "description": "", - "denom_units": [ - { - "denom": "utia", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "cerberus", - "assets": [ - { - "description": "The native token of Cerberus Chain", - "denom_units": [ - { - "denom": "ucrbrus", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "chain4energy", - "assets": [ - { - "description": "The native token of Chain4Energy", - "denom_units": [ - { - "denom": "uc4e", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "cheqd", - "assets": [ - { - "description": "Native token for the cheqd network", - "denom_units": [ - { - "denom": "ncheq", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "chihuahua", - "assets": [ - { - "description": "The native token of Chihuahua Chain", - "denom_units": [ - { - "denom": "uhuahua", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Puppy", - "denom_units": [ - { - "denom": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", - "exponent": 0 - }, - { - "denom": "puppy", - "exponent": 6 - } - ], - "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" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png" - } - }, - { - "description": "has a hat", - "denom_units": [ - { - "denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png" - } - ] - }, - { - "description": "Woof", - "denom_units": [ - { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" - } - ] - }, - { - "description": "Tacos", - "denom_units": [ - { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png" - } - ] - }, - { - "description": "Weed", - "denom_units": [ - { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png" - } - ] - }, - { - "description": "Bulldog", - "denom_units": [ - { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png" - } - ] - }, - { - "description": "CaneCorso", - "denom_units": [ - { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "chimba", - "assets": [ - { - "description": "The first blokchain in colombia", - "denom_units": [ - { - "denom": "ucmba", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "ucht", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "cht", - "images": [ - { - "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": [ - { - "denom": "ucgas", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "cgas", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cgas.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "comdex", - "assets": [ - { - "description": "Native Token of Comdex Protocol", - "denom_units": [ - { - "denom": "ucmdx", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Governance Token of Harbor protocol on Comdex network", - "denom_units": [ - { - "denom": "uharbor", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Stable Token of Harbor protocol on Comdex network", - "denom_units": [ - { - "denom": "ucmst", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "commercionetwork", - "assets": [ - { - "description": "The native token of Commercio.network", - "denom_units": [ - { - "denom": "ucommercio", - "exponent": 0, - "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" - }, - "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" - } - ] - }, - { - "description": "The cash credit token of Commercio.network", - "denom_units": [ - { - "denom": "uccc", - "exponent": 0, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "composable", - "assets": [ - { - "description": "The native staking and governance token of Composable.", - "denom_units": [ - { - "denom": "ppica", - "exponent": 0 - }, - { - "denom": "pica", - "exponent": 12 - } - ], - "base": "ppica", - "name": "Pica", - "display": "pica", - "symbol": "PICA", - "coingecko_id": "picasso", - "traces": [ - { - "type": "additional-mintage", - "counterparty": { - "chain_name": "picasso", - "base_denom": "ppica" - }, - "provider": "Composable Finance" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "picasso", - "base_denom": "ppica" - }, - "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": [ - { - "denom": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9", - "exponent": 0, - "aliases": [ - "4" - ] - }, - { - "denom": "ksm", - "exponent": 12 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-2", - "path": "transfer/channel-2/4" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "picasso", - "base_denom": "4" - }, - "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": [ - { - "denom": "ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366", - "exponent": 0, - "aliases": [ - "79228162514264337593543950342" - ] - }, - { - "denom": "dot", - "exponent": 10 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-2", - "path": "transfer/channel-2/transfer/channel-15/79228162514264337593543950342" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "picasso", - "base_denom": "79228162514264337593543950342" - }, - "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": [ - { - "denom": "ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265", - "exponent": 0, - "aliases": [ - "130" - ] - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-2", - "path": "transfer/channel-2/130" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "picasso", - "base_denom": "130" - } - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "acvnt", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "consciousdao" - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "coreum", - "assets": [ - { - "description": "The native token of Coreum", - "denom_units": [ - { - "denom": "ucore", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "cosmoshub", - "assets": [ - { - "description": "The native staking and governance token of the Cosmos Hub.", - "denom_units": [ - { - "denom": "uatom", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Tether USDt on the Cosmos Hub", - "denom_units": [ - { - "denom": "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-277", - "path": "transfer/channel-277/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - }, - { - "description": "FX on Cosmos Hub", - "denom_units": [ - { - "denom": "ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729", - "exponent": 0, - "aliases": [ - "FX" - ] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-585", - "path": "transfer/channel-585/FX" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "fxcore", - "base_denom": "FX" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" - } - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "coss", - "assets": [ - { - "description": "The native staking and governance token of the COSS.", - "denom_units": [ - { - "denom": "ucgas", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The inscription token of the COSS.", - "denom_units": [ - { - "denom": "ucoss", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "crescent", - "assets": [ - { - "description": "The native token of Crescent", - "denom_units": [ - { - "denom": "ucre", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The bonded token of Crescent", - "denom_units": [ - { - "denom": "ubcre", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "cronos", - "assets": [ - { - "description": "Cronos Chain - Get Instant DApp Portability with EVM Support", - "denom_units": [ - { - "denom": "basecro", - "exponent": 0 - }, - { - "denom": "cro", - "exponent": 18 - } - ], - "base": "basecro", - "name": "Cronos", - "display": "cro", - "symbol": "CRO", - "traces": [ - { - "type": "additional-mintage", - "counterparty": { - "chain_name": "cryptoorgchain", - "base_denom": "basecro" - }, - "provider": "Cronos" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "cryptoorgchain", - "base_denom": "basecro" - }, - "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": [ - { - "denom": "ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-11", - "path": "transfer/channel-11/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - } - ] - }, - { - "$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": [ - { - "denom": "basecro", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "crypto-com-chain", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "cudos", - "assets": [ - { - "description": "The native token of the Cudos blockchain", - "denom_units": [ - { - "denom": "acudos", - "exponent": 0, - "aliases": [ - "attocudos" - ] - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "decentr", - "assets": [ - { - "description": "The native token of Decentr", - "denom_units": [ - { - "denom": "udec", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "desmos", - "assets": [ - { - "description": "The native token of Desmos", - "denom_units": [ - { - "denom": "udsm", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "dig", - "assets": [ - { - "description": "Native token of Dig Chain", - "denom_units": [ - { - "denom": "udig", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "dig-chain", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "peaka", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg" - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "dydx", - "assets": [ - { - "description": "The native staking token of dYdX Protocol.", - "denom_units": [ - { - "denom": "adydx", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "dydx", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", - "theme": { - "circle": true - } - } - ] - }, - { - "description": "Noble USDC on dYdX Protocol.", - "denom_units": [ - { - "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", - "exponent": 0 - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/uusdc" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "noble", - "base_denom": "uusdc" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" - } - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "dyson", - "assets": [ - { - "description": "The native staking and governance token of the Dyson Protocol", - "denom_units": [ - { - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", - "exponent": 0, - "aliases": [ - "uosmo" - ] - }, - { - "denom": "osmo", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-2", - "path": "transfer/channel-2/uosmo" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "uosmo" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC", - "exponent": 0, - "aliases": [ - "wbtc-satoshi" - ] - }, - { - "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": "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" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F" - }, - "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": "ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "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": "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" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "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": "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" - }, - "coingecko_id": "echelon", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "ungm", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", - "denom_units": [ - { - "denom": "eeur", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.", - "denom_units": [ - { - "denom": "echf", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.", - "denom_units": [ - { - "denom": "enok", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.", - "denom_units": [ - { - "denom": "edkk", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.", - "denom_units": [ - { - "denom": "esek", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "empowerchain", - "assets": [ - { - "description": "The native staking and governance token of Empower.", - "denom_units": [ - { - "denom": "umpwr", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "ethos", - "assets": [ - { - "description": "The native token of Ethos", - "denom_units": [ - { - "denom": "aRYT", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "evmos", - "assets": [ - { - "description": "The native EVM, governance and staking token of the Evmos Hub", - "denom_units": [ - { - "denom": "aevmos", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Tether USDt on Evmos", - "denom_units": [ - { - "denom": "ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-83", - "path": "transfer/channel-83/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - }, - { - "description": "The token of Neokingdom DAO.", - "denom_units": [ - { - "denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "fetchhub", - "assets": [ - { - "description": "The native staking and governance token of the Fetch Hub.", - "denom_units": [ - { - "denom": "afet", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The MOBX coin rewards the use of eco-friendly micromobility transportation.", - "denom_units": [ - { - "denom": "nanomobx", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "firmachain", - "assets": [ - { - "description": "The native token of FirmaChain", - "denom_units": [ - { - "denom": "ufct", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "furya", - "assets": [ - { - "description": "The native token of Furya", - "denom_units": [ - { - "denom": "ufury", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "fxcore", - "assets": [ - { - "description": "The native staking token of the Function X", - "denom_units": [ - { - "denom": "FX", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The cross chain token of the Function X", - "denom_units": [ - { - "denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", - "exponent": 0, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "galaxy", - "assets": [ - { - "description": "GLX is the staking token of the Galaxy Chain", - "denom_units": [ - { - "denom": "uglx", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "gateway", - "assets": [ - { - "description": "The native fee token of Gateway.", - "denom_units": [ - { - "denom": "utest", - "exponent": 0, - "aliases": [] - }, - { - "denom": "test", - "exponent": 6, - "aliases": [] - } - ], - "type_asset": "sdk.coin", - "base": "utest", - "name": "Test", - "display": "test", - "symbol": "TEST" - }, - { - "description": "the native staking token of Gateway.", - "denom_units": [ - { - "denom": "uworm", - "exponent": 0, - "aliases": [] - }, - { - "denom": "worm", - "exponent": 6, - "aliases": [] - } - ], - "type_asset": "sdk.coin", - "base": "uworm", - "name": "Worm", - "display": "worm", - "symbol": "WORM" - }, - { - "description": "Sui (Wormhole), SUI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", - "denom_units": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", - "exponent": 0, - "aliases": [] - }, - { - "denom": "wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8", - "exponent": 8, - "aliases": [] - } - ], - "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" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" - } - ] - }, - { - "description": "Wrapped liquid staked Ether 2.0 (Wormhole), wstETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", - "denom_units": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } - }, - { - "description": "Aptos Coin (Wormhole), APT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", - "denom_units": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "aptos", - "base_denom": "0x1::aptos_coin::AptosCoin" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - }, - { - "description": "Wrapped SOL (Wormhole), SOL, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", - "denom_units": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "solana", - "base_denom": "So11111111111111111111111111111111111111112" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "solana", - "base_denom": "So11111111111111111111111111111111111111112" - }, - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", - "exponent": 0, - "aliases": [] - }, - { - "denom": "wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5", - "exponent": 5, - "aliases": [] - } - ], - "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" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "solana", - "base_denom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263" - }, - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" - } - ], - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x18084fba666a33d37592fa2633fd49a74dd93a88" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x18084fba666a33d37592fa2633fd49a74dd93a88" - }, - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" - }, - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - }, - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", - "exponent": 0, - "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": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "avalanche", - "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "avalanche", - "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" - }, - "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": [ - { - "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", - "exponent": 0, - "aliases": [ - "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3" - ] - }, - { - "denom": "wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6", - "exponent": 6, - "aliases": [ - "pyth" - ] - } - ], - "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" - }, - "provider": "Wormhole" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "solana", - "base_denom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3" - }, - "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": [ - { - "description": "L1 coin is the GenesisL1 blockchain utility, governance and EVM token", - "denom_units": [ - { - "denom": "el1", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "gitopia", - "assets": [ - { - "description": "The native token of Gitopia", - "denom_units": [ - { - "denom": "ulore", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg" - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png" - } - ], - "coingecko_id": "gitopia" - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "gravitybridge", - "assets": [ - { - "description": "The native token of Gravity Bridge", - "denom_units": [ - { - "denom": "ugraviton", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg" - } - ] - }, - { - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", - "denom_units": [ - { - "denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "exponent": 0 - }, - { - "denom": "pstake", - "exponent": 18 - } - ], - "base": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "name": "pSTAKE Finance", - "display": "pstake", - "symbol": "PSTAKE", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "persistence", - "base_denom": "uxprt" - }, - "provider": "Persistence" - }, - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" - }, - "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" - }, - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" - } - ] - }, - { - "description": "Gravity Bridge WETH", - "denom_units": [ - { - "denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "wei" - }, - "provider": "Ethereum" - }, - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" - }, - "provider": "Gravity Bridge" - } - ], - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" - } - ] - }, - { - "description": "Gravity Bridge USDC", - "denom_units": [ - { - "denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "Circle" - }, - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - }, - "provider": "Gravity Bridge" - } - ], - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - }, - { - "description": "Gravity Bridge USDT", - "denom_units": [ - { - "denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "Tether" - }, - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" - }, - "provider": "Gravity Bridge" - } - ], - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ] - }, - { - "description": "Gravity Bridge WBTC", - "denom_units": [ - { - "denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "bitcoin", - "base_denom": "sat" - }, - "provider": "BitGo, Kyber, and Ren" - }, - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" - }, - "provider": "Gravity Bridge" - } - ], - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" - } - ] - }, - { - "description": "Gravity Bridge DAI", - "denom_units": [ - { - "denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "MakerDAO" - }, - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" - }, - "provider": "Gravity Bridge" - } - ], - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - } - ] - }, - { - "description": "Gravity Bridge sDAI", - "denom_units": [ - { - "denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" - }, - "provider": "Gravity Bridge" - } - ], - "images": [ - { - "image_sync": { - "base_denom": "ethereum", - "chain_name": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg" - } - ] - }, - { - "description": "Gravity Bridge OCC", - "denom_units": [ - { - "denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207" - }, - "provider": "Gravity Bridge" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png" - } - ] - }, - { - "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", - "denom_units": [ - { - "denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" - }, - "provider": "Gravity Bridge" - } - ], - "images": [ - { - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "haqq", - "assets": [ - { - "description": "The native EVM, governance and staking token of the Haqq Network", - "denom_units": [ - { - "denom": "aISLM", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "highbury", - "assets": [ - { - "description": "The native staking and governance token of the Blackfury ecosystem", - "denom_units": [ - { - "denom": "ufury", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Governance token of Jinx Wallet and Fury Lend Protocol", - "denom_units": [ - { - "denom": "jinx", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Governance token of Fury Swap Protocol", - "denom_units": [ - { - "denom": "jinxy", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "humans", - "assets": [ - { - "description": "The native staking and governance token of Humans.ai.", - "denom_units": [ - { - "denom": "aheart", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "idep", - "assets": [ - { - "description": "The native token of IDEP chain", - "denom_units": [ - { - "denom": "IDEP", - "exponent": 6, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "impacthub", - "assets": [ - { - "description": "The native token of IXO Chain", - "denom_units": [ - { - "denom": "uixo", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "imversed", - "assets": [ - { - "description": "The native EVM, governance and staking token of the Imversed", - "denom_units": [ - { - "denom": "aimv", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "injective", - "assets": [ - { - "description": "The INJ token is the native governance token for the Injective chain.", - "denom_units": [ - { - "denom": "inj", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Tether USDt on Injective", - "denom_units": [ - { - "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-143", - "path": "transfer/channel-143/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - }, - { - "description": "ERIS liquid staked INJ", - "denom_units": [ - { - "denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "autism", - "images": [ - { - "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": [ - { - "denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "dog-wif-nuchucks", - "images": [ - { - "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": [ - { - "denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "irisnet", - "assets": [ - { - "description": "The IRIS token is the native governance token for the IrisNet chain.", - "denom_units": [ - { - "denom": "uiris", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "jackal", - "assets": [ - { - "description": "The native staking and governance token of Jackal.", - "denom_units": [ - { - "denom": "ujkl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "juno", - "assets": [ - { - "description": "The native token of JUNO Chain", - "denom_units": [ - { - "denom": "ujuno", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "exponent": 0 - }, - { - "denom": "atom", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-1", - "path": "transfer/channel-1/uatom" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - }, - { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "denom_units": [ - { - "denom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for Marble DAO on Juno Chain", - "type_asset": "cw20", - "address": "juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", - "denom_units": [ - { - "denom": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "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" - } - ] - }, - { - "description": "The native token of Marble DEX on Juno Chain", - "type_asset": "cw20", - "address": "juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "denom_units": [ - { - "denom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg" - } - ] - }, - { - "description": "The DAO token to build consensus among Hong Kong People", - "type_asset": "cw20", - "address": "juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "denom_units": [ - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg" - } - ] - }, - { - "description": "Token governance for Junoswap", - "type_asset": "cw20", - "address": "juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "denom_units": [ - { - "denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "DeFi gaming platform built on Juno", - "type_asset": "cw20", - "address": "juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "denom_units": [ - { - "denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg" - } - ] - }, - { - "description": "Gelotto Year 1 Grand Prize Token", - "type_asset": "cw20", - "address": "juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "denom_units": [ - { - "denom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg" - } - ] - }, - { - "description": "The native token cw20 for BlackHole on Juno Chain", - "type_asset": "cw20", - "address": "juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", - "denom_units": [ - { - "denom": "cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Staking derivative seJUNO for staked JUNO", - "type_asset": "cw20", - "address": "juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", - "denom_units": [ - { - "denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Staking derivative bJUNO for staked JUNO", - "type_asset": "cw20", - "address": "juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", - "denom_units": [ - { - "denom": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg" - } - ] - }, - { - "description": "StakeEasy governance token", - "type_asset": "cw20", - "address": "juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", - "denom_units": [ - { - "denom": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg" - } - ] - }, - { - "description": "The native token cw20 for MuseDAO on Juno Chain", - "type_asset": "cw20", - "address": "juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", - "denom_units": [ - { - "denom": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "loop", - "images": [ - { - "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": [ - { - "denom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "fanfury", - "images": [ - { - "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": [ - { - "denom": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for Hopers on Juno Chain", - "type_asset": "cw20", - "address": "juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", - "denom_units": [ - { - "denom": "cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "RED", - "type_asset": "cw20", - "address": "juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za", - "denom_units": [ - { - "denom": "cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png" - } - ] - }, - { - "description": "BLUE", - "type_asset": "cw20", - "address": "juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7", - "denom_units": [ - { - "denom": "cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "denom_units": [ - { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" - } - ] - }, - { - "description": "nRide Token", - "type_asset": "cw20", - "address": "juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", - "denom_units": [ - { - "denom": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg" - } - ] - }, - { - "description": "Signal Art and Gaming on Juno", - "type_asset": "cw20", - "address": "juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", - "denom_units": [ - { - "denom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png" - } - ] - }, - { - "description": "Mini Punks Token", - "type_asset": "cw20", - "address": "juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", - "denom_units": [ - { - "denom": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg" - } - ] - }, - { - "description": "Kleomedes Token", - "type_asset": "cw20", - "address": "juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", - "denom_units": [ - { - "denom": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png" - } - ] - }, - { - "description": "Sikoba Governance Token", - "type_asset": "cw20", - "address": "juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", - "denom_units": [ - { - "denom": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg" - } - ] - }, - { - "description": "Shiba Cosmos", - "type_asset": "cw20", - "address": "juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", - "denom_units": [ - { - "denom": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png" - } - ] - }, - { - "description": "Celestims", - "type_asset": "cw20", - "address": "juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", - "denom_units": [ - { - "denom": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png" - } - ] - }, - { - "description": "Apemos", - "type_asset": "cw20", - "address": "juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", - "denom_units": [ - { - "denom": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png" - } - ] - }, - { - "description": "Doge Apr", - "type_asset": "cw20", - "address": "juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", - "denom_units": [ - { - "denom": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png" - } - ] - }, - { - "description": "Osmo Pepe", - "type_asset": "cw20", - "address": "juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", - "denom_units": [ - { - "denom": "cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png" - } - ] - }, - { - "description": "Catmos", - "type_asset": "cw20", - "address": "juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", - "denom_units": [ - { - "denom": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png" - } - ] - }, - { - "description": "Spacer", - "type_asset": "cw20", - "address": "juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", - "denom_units": [ - { - "denom": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png" - } - ] - }, - { - "description": "Void", - "type_asset": "cw20", - "address": "juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", - "denom_units": [ - { - "denom": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png" - } - ] - }, - { - "description": "Silica", - "type_asset": "cw20", - "address": "juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", - "denom_units": [ - { - "denom": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png" - } - ] - }, - { - "description": "Pepec", - "type_asset": "cw20", - "address": "juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", - "denom_units": [ - { - "denom": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png" - } - ] - }, - { - "description": "Palantin", - "type_asset": "cw20", - "address": "juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", - "denom_units": [ - { - "denom": "cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png" - } - ] - }, - { - "description": "Propose. Vote. Build.", - "type_asset": "cw20", - "address": "juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", - "denom_units": [ - { - "denom": "cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "factory/juno195asgku87kxgu48s447z0ryhsyn5rl3yzvfw0d/uhava", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hava.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "kava", - "assets": [ - { - "description": "The native staking and governance token of Kava", - "denom_units": [ - { - "denom": "ukava", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Governance token of Kava Lend Protocol", - "denom_units": [ - { - "denom": "hard", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Governance token of Kava Swap Protocol", - "denom_units": [ - { - "denom": "swp", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native stablecoin of Kava", - "denom_units": [ - { - "denom": "usdx", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "erc20/tether/usdt", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "provider": "Tether" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "kichain", - "assets": [ - { - "description": "The native token of Ki Chain", - "denom_units": [ - { - "denom": "uxki", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "ELEVENPARIS loyalty token on KiChain", - "type_asset": "cw20", - "address": "ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", - "denom_units": [ - { - "denom": "cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "lvn", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "konstellation", - "assets": [ - { - "description": "The native token of Konstellation Network", - "denom_units": [ - { - "denom": "udarc", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "kujira", - "assets": [ - { - "description": "The native staking and governance token of the Kujira chain.", - "denom_units": [ - { - "denom": "ukuji", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" - } - ] - }, - { - "description": "The native over-collateralized stablecoin from the Kujira chain.", - "denom_units": [ - { - "denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" - } - ] - }, - { - "description": "Quark's auto-compounding KUJI derivative", - "denom_units": [ - { - "denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg" - } - ] - }, - { - "description": "ampKUJI", - "denom_units": [ - { - "denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "MantaDAO Governance Token", - "denom_units": [ - { - "denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Quark's auto-compounding MNTA derivative", - "denom_units": [ - { - "denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg" - } - ] - }, - { - "description": "ERIS Liquid Staked MNTA", - "denom_units": [ - { - "denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png" - } - ] - }, - { - "description": "The content house of Kujira", - "denom_units": [ - { - "denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Blend Token", - "denom_units": [ - { - "denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg" - } - ] - }, - { - "description": "Tether USDt on Kujira", - "denom_units": [ - { - "denom": "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-95", - "path": "transfer/channel-95/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - }, - { - "description": "The staking and governance token of Fuzion", - "denom_units": [ - { - "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The receipt token of Fuzion", - "denom_units": [ - { - "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png" - } - ] - }, - { - "description": "The yield token of Fuzion", - "denom_units": [ - { - "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg" - } - ] - }, - { - "description": "Quark's auto-compounding FUZN derivative", - "denom_units": [ - { - "denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg" - } - ] - }, - { - "description": "The Revenue & Governance token of Unstake.fi", - "denom_units": [ - { - "denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "unstake-fi", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" - } - ] - }, - { - "description": "Local Money", - "denom_units": [ - { - "denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png" - } - ] - }, - { - "description": "Food for whales", - "denom_units": [ - { - "denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", - "exponent": 0 - }, - { - "denom": "sol", - "exponent": 8 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-113", - "path": "transfer/channel-113/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", - "exponent": 0 - }, - { - "denom": "evmos", - "exponent": 18 - } - ], - "base": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", - "name": "Evmos", - "display": "evmos", - "symbol": "EVMOS", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "evmos", - "base_denom": "aevmos", - "channel_id": "channel-18" - }, - "chain": { - "channel_id": "channel-23", - "path": "transfer/channel-23/aevmos" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "evmos", - "base_denom": "aevmos" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", - "exponent": 0 - }, - { - "denom": "avax", - "exponent": 18 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-9", - "path": "transfer/channel-9/wavax-wei" - } - } - ], - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", - "exponent": 0 - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-62", - "path": "transfer/channel-62/uusdc" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "noble", - "base_denom": "uusdc" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", - "exponent": 0 - }, - { - "denom": "osmo", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-3", - "path": "transfer/channel-3/uosmo" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "uosmo" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", - "exponent": 0 - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-9", - "path": "transfer/channel-9/uusdc" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "axelar", - "base_denom": "uusdc" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", - "exponent": 0 - }, - { - "denom": "cmdx", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-18", - "path": "transfer/channel-18/ucmdx" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "comdex", - "base_denom": "ucmdx" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", - "exponent": 0 - }, - { - "denom": "juno", - "exponent": 6 - } - ], - "base": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "juno", - "base_denom": "ujuno", - "channel_id": "channel-87" - }, - "chain": { - "channel_id": "channel-1", - "path": "transfer/channel-1/ujuno" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "juno", - "base_denom": "ujuno" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", - "exponent": 0 - }, - { - "denom": "weth", - "exponent": 18 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-9", - "path": "transfer/channel-9/weth-wei" - } - } - ], - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" - } - }, - { - "denom_units": [ - { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "exponent": 0 - }, - { - "denom": "atom", - "exponent": 6 - } - ], - "type_asset": "ics20", - "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "name": "Cosmos Hub Atom", - "display": "atom", - "symbol": "ATOM", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "cosmoshub", - "base_denom": "uatom", - "channel_id": "channel-343" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/uatom" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", - "exponent": 0 - }, - { - "denom": "luna", - "exponent": 6 - } - ], - "base": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", - "name": "Luna", - "display": "luna", - "symbol": "LUNA", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "terra2", - "base_denom": "uluna", - "channel_id": "channel-10" - }, - "chain": { - "channel_id": "channel-5", - "path": "transfer/channel-5/uluna" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "luna", - "base_denom": "uluna" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", - "exponent": 0 - }, - { - "denom": "stars", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-7", - "path": "transfer/channel-7/ustars" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "stargaze", - "base_denom": "ustars" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", - "exponent": 0 - }, - { - "denom": "scrt", - "exponent": 6 - } - ], - "base": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", - "name": "Secret Network", - "display": "scrt", - "symbol": "SCRT", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "secretnetwork", - "base_denom": "uscrt", - "channel_id": "channel-22" - }, - "chain": { - "channel_id": "channel-10", - "path": "transfer/channel-10/uscrt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "scrt", - "base_denom": "uscrt" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" - } - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "kyve", - "assets": [ - { - "description": "The native utility token of the KYVE network.", - "denom_units": [ - { - "denom": "ukyve", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "lambda", - "assets": [ - { - "description": "The native token of Lambda", - "denom_units": [ - { - "denom": "ulamb", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "nanolike", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "logos", - "assets": [ - { - "description": "The native token of Logos", - "denom_units": [ - { - "denom": "aLYT", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "loyal", - "assets": [ - { - "description": "The native token of Loyal", - "denom_units": [ - { - "denom": "ulyl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "lumenx", - "assets": [ - { - "description": "The native token of LumenX Network", - "denom_units": [ - { - "denom": "ulumen", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "lumnetwork", - "assets": [ - { - "description": "Native token of the Lum Network", - "denom_units": [ - { - "denom": "ulum", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "mars", - "assets": [ - { - "description": "Mars protocol token", - "denom_units": [ - { - "denom": "umars", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "mayachain", - "assets": [ - { - "description": "The native token of Maya Protocol", - "denom_units": [ - { - "denom": "cacao", - "exponent": 0 - }, - { - "denom": "CACAO", - "exponent": 10 - } - ], - "base": "cacao", - "name": "Cacao", - "display": "CACAO", - "symbol": "CACAO", - "images": [ - { - "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": [ - { - "denom": "maya", - "exponent": 0 - }, - { - "denom": "MAYA", - "exponent": 4 - } - ], - "base": "maya", - "name": "Maya", - "display": "MAYA", - "symbol": "MAYA", - "images": [ - { - "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": [ - { - "description": "The native token of Medas Digital Network", - "denom_units": [ - { - "denom": "umedas", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "meme", - "assets": [ - { - "description": "MEME Token (MEME) is the native staking token of the MEME Chain", - "denom_units": [ - { - "denom": "umeme", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "microtick", - "assets": [ - { - "description": "TICK coin is the token for the Microtick Price Discovery & Oracle App", - "denom_units": [ - { - "denom": "utick", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "migaloo", - "assets": [ - { - "description": "The native token of Migaloo Chain", - "denom_units": [ - { - "denom": "uwhale", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "ampWHALE", - "denom_units": [ - { - "denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg" - } - ] - }, - { - "description": "boneWHALE", - "denom_units": [ - { - "denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "FABLE", - "denom_units": [ - { - "denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg" - } - ] - }, - { - "description": "boneLUNA are autocompounding LUNA tokens", - "denom_units": [ - { - "denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", - "exponent": 0 - }, - { - "denom": "bluna", - "exponent": 6 - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" - } - ] - }, - { - "description": "RAC", - "denom_units": [ - { - "denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg" - } - ] - }, - { - "description": "ASH", - "denom_units": [ - { - "denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg" - } - ] - }, - { - "description": "Tether USDt on Migaloo", - "denom_units": [ - { - "denom": "ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-48", - "path": "transfer/channel-48/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - }, - { - "description": "Auto componded USDC despoited into Ginkou on Migaloo chain", - "denom_units": [ - { - "denom": "cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/mUSDC.svg" - } - ] - }, - { - "description": "GUPPY", - "denom_units": [ - { - "denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "mises", - "assets": [ - { - "description": "The native staking and gov token of the Mises Network.", - "denom_units": [ - { - "denom": "umis", - "exponent": 0, - "aliases": [ - "micromis" - ] - }, - { - "denom": "mmis", - "exponent": 3, - "aliases": [ - "millimis" - ] - }, - { - "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" - }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "mun", - "assets": [ - { - "description": "The native token of Mun", - "denom_units": [ - { - "denom": "umun", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "mythos", - "assets": [ - { - "description": "The native token of Mythos", - "denom_units": [ - { - "denom": "aMYT", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "neutron", - "assets": [ - { - "description": "The native token of Neutron chain.", - "denom_units": [ - { - "denom": "untrn", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "IBC uatom through cosmoshub-4 transfer/channel-1", - "denom_units": [ - { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "exponent": 0, - "aliases": [ - "uatom" - ] - }, - { - "denom": "atom", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-1", - "path": "transfer/channel-1/uatom" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - }, - { - "description": "IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2", - "denom_units": [ - { - "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-2", - "path": "transfer/channel-2/uusdc" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "axelar", - "base_denom": "uusdc" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - }, - { - "description": "Tia on Neutron", - "denom_units": [ - { - "denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "exponent": 0, - "aliases": [ - "utia" - ] - }, - { - "denom": "tia", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-35", - "path": "transfer/channel-35" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "celestia", - "base_denom": "utia" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" - } - }, - { - "description": "Astropepe meme coin", - "denom_units": [ - { - "denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png" - } - ] - }, - { - "description": "wstETH on Neutron", - "denom_units": [ - { - "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "exponent": 0 - }, - { - "denom": "wstETH", - "exponent": 18 - } - ], - "base": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "name": "wstETH", - "display": "wstETH", - "symbol": "wstETH", - "traces": [ - { - "type": "additional-mintage", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" - }, - "provider": "Lido" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } - }, - { - "description": "NBTC on Neutron", - "denom_units": [ - { - "denom": "ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920", - "exponent": 0, - "aliases": [ - "usat" - ] - }, - { - "denom": "sat", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-42", - "path": "transfer/channel-42/usat" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "nomic", - "base_denom": "usat" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" - } - }, - { - "description": "DYDX on Neutron", - "denom_units": [ - { - "denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "exponent": 0, - "aliases": [ - "adydx" - ] - }, - { - "denom": "dydx", - "exponent": 18 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-48", - "path": "transfer/channel-48/adydx" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "dydx", - "base_denom": "adydx" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" - } - }, - { - "description": "The cutest NEWT token on Neutron chain.", - "denom_units": [ - { - "denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "exponent": 0, - "aliases": [ - "unewt" - ] - }, - { - "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" - }, - "coingecko_id": "newt", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png" - } - ] - }, - { - "description": "ASTRO on Neutron", - "denom_units": [ - { - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "exponent": 0, - "aliases": [ - "uastro" - ] - }, - { - "denom": "astro", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-5", - "path": "transfer/channel-5/cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "port": "transfer" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "terra2", - "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg" - } - }, - { - "description": "Baby Corgi is the real doggo of Neutron!", - "denom_units": [ - { - "denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "exponent": 0, - "aliases": [ - "ucorgi" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png" - } - ] - }, - { - "description": "clownmaxxed store of value", - "denom_units": [ - { - "denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "exponent": 0, - "aliases": [ - "ucircus" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png" - } - ] - }, - { - "description": "Jimmy Neutron Finance", - "denom_units": [ - { - "denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "exponent": 0, - "aliases": [ - "ujimmy" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png" - } - ] - }, - { - "description": "Baddest coin on Cosmos", - "denom_units": [ - { - "denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "exponent": 0, - "aliases": [ - "ubad" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png" - } - ] - }, - { - "description": "BITCOSMOS", - "denom_units": [ - { - "denom": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", - "exponent": 0, - "aliases": [ - "ubitcosmos" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png" - } - ] - }, - { - "description": "What the Fuck", - "denom_units": [ - { - "denom": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", - "exponent": 0, - "aliases": [ - "uwtf" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png" - } - ] - }, - { - "description": "NLS on Neutron", - "denom_units": [ - { - "denom": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", - "exponent": 0, - "aliases": [ - "unls" - ] - }, - { - "denom": "nls", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-44", - "path": "transfer/channel-44/unls" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "nolus", - "base_denom": "unls" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" - } - }, - { - "description": "A Mechanical Canine", - "denom_units": [ - { - "denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "exponent": 0, - "aliases": [ - "ugoddard" - ] - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "exponent": 0, - "aliases": [ - "uapollo" - ] - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg" - } - ] - }, - { - "description": "NEWTROLL", - "denom_units": [ - { - "denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", - "exponent": 0, - "aliases": [ - "unewtroll" - ] - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg" - } - ] - }, - { - "description": "Retro Game", - "denom_units": [ - { - "denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", - "exponent": 0, - "aliases": [ - "uretro" - ] - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "nibiru", - "assets": [ - { - "description": "The native token of Nibiru network", - "denom_units": [ - { - "denom": "unibi", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "noble", - "assets": [ - { - "description": "The permissioned staking asset for Noble Chain", - "denom_units": [ - { - "denom": "ustake", - "exponent": 0, - "aliases": [ - "microstake" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" - } - ] - }, - { - "description": "ATOM token on Noble", - "denom_units": [ - { - "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", - "exponent": 0 - }, - { - "denom": "atom", - "exponent": 6, - "aliases": [ - "ATOM" - ] - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ] - }, - { - "description": "USD Coin", - "denom_units": [ - { - "denom": "uusdc", - "exponent": 0, - "aliases": [ - "microusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "base": "uusdc", - "display": "usdc", - "name": "USD Coin", - "symbol": "USDC", - "coingecko_id": "usd-coin", - "traces": [ - { - "type": "additional-mintage", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - }, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "nois", - "assets": [ - { - "description": "The native token of Nois", - "denom_units": [ - { - "denom": "unois", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "nolus", - "assets": [ - { - "description": "The native token of Nolus chain", - "denom_units": [ - { - "denom": "unls", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "axlUSDC transferred from the Osmosis mainnet that is supported on the Nolus chain", - "denom_units": [ - { - "denom": "ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6, - "aliases": [] - } - ], - "type_asset": "ics20", - "base": "ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911", - "name": "axlUSDC", - "display": "usdc", - "symbol": "axlUSDC", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "channel_id": "channel-783" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-208/uusdc" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "exponent": 0, - "aliases": [ - "uosmo" - ] - }, - { - "denom": "osmo", - "exponent": 6, - "aliases": [] - } - ], - "type_asset": "ics20", - "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "uosmo", - "channel_id": "channel-783" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/uosmo" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "uosmo" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - }, - { - "description": "stOSMO transferred from the Osmosis mainnet that is supported on the Nolus chain", - "denom_units": [ - { - "denom": "ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1", - "exponent": 0, - "aliases": [ - "stuosmo" - ] - }, - { - "denom": "stosmo", - "exponent": 6, - "aliases": [] - } - ], - "type_asset": "ics20", - "base": "ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1", - "name": "Osmosis", - "display": "stosmo", - "symbol": "stOSMO", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", - "channel_id": "channel-783" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-326/stuosmo" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388", - "exponent": 0, - "aliases": [ - "uatom" - ] - }, - { - "denom": "atom", - "exponent": 6, - "aliases": [] - } - ], - "type_asset": "ics20", - "base": "ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388", - "name": "Atom", - "display": "atom", - "symbol": "ATOM", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "channel_id": "channel-783" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-0/uatom" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8", - "exponent": 0, - "aliases": [ - "ustatom" - ] - }, - { - "denom": "statom", - "exponent": 6, - "aliases": [] - } - ], - "type_asset": "ics20", - "base": "ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8", - "name": "stATOM", - "display": "statom", - "symbol": "stATOM", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "channel_id": "channel-783" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-326/stuatom" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C", - "exponent": 0, - "aliases": [ - "weth-wei" - ] - }, - { - "denom": "weth", - "exponent": 18, - "aliases": [] - } - ], - "type_asset": "ics20", - "base": "ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C", - "name": "WETH", - "display": "weth", - "symbol": "WETH", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "channel_id": "channel-783" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-208/weth-wei" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5" - }, - "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": [ - { - "denom": "ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221", - "exponent": 0, - "aliases": [ - "wbtc-satoshi" - ] - }, - { - "denom": "wbtc", - "exponent": 8, - "aliases": [] - } - ], - "type_asset": "ics20", - "base": "ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221", - "name": "WBTC", - "display": "wbtc", - "symbol": "WBTC", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "channel_id": "channel-783" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-208/wbtc-satoshi" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F" - }, - "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": [ - { - "denom": "ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459", - "exponent": 0, - "aliases": [ - "uakt" - ] - }, - { - "denom": "akt", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-1/uakt" - } - } - ], - "images": [ - { - "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": [ - { - "denom": "ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717", - "exponent": 0, - "aliases": [ - "uaxl" - ] - }, - { - "denom": "axl", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-208/uaxl" - } - } - ], - "images": [ - { - "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": [ - { - "denom": "ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C", - "exponent": 0, - "aliases": [ - "ujuno" - ] - }, - { - "denom": "juno", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-42/ujuno" - } - } - ], - "images": [ - { - "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": [ - { - "denom": "ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE", - "exponent": 0, - "aliases": [ - "aevmos" - ] - }, - { - "denom": "evmos", - "exponent": 18, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-204/aevmos" - } - } - ], - "images": [ - { - "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": [ - { - "denom": "ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865", - "exponent": 0, - "aliases": [ - "stk/uatom" - ] - }, - { - "denom": "stk/atom", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-4/stk/uatom" - } - } - ], - "images": [ - { - "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": [ - { - "denom": "ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107", - "exponent": 0, - "aliases": [ - "uscrt" - ] - }, - { - "denom": "scrt", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-88/uscrt" - } - } - ], - "images": [ - { - "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": [ - { - "denom": "ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48", - "exponent": 0, - "aliases": [ - "basecro" - ] - }, - { - "denom": "cro", - "exponent": 8, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-5/basecro" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1" - }, - "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": [ - { - "denom": "ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5", - "exponent": 0, - "aliases": [ - "ustars" - ] - }, - { - "denom": "stars", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-75/ustars" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5", - "exponent": 0, - "aliases": [ - "utia" - ] - }, - { - "denom": "tia", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-6994/utia" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B", - "exponent": 0, - "aliases": [ - "ustrd" - ] - }, - { - "denom": "strd", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/transfer/channel-326/ustrd" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09", - "exponent": 0, - "aliases": [ - "untrn" - ] - }, - { - "denom": "ntrn", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-3839", - "path": "transfer/channel-3839/untrn" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4", - "exponent": 0, - "aliases": [ - "adydx" - ] - }, - { - "denom": "dydx", - "exponent": 18, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-3839", - "path": "transfer/channel-3839/transfer/channel-48/adydx" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "description": "Nomic's native token.", - "denom_units": [ - { - "denom": "unom", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Bitcoin. On Cosmos.", - "denom_units": [ - { - "denom": "usat", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "bitcoin", - "base_denom": "sat" - }, - "provider": "Nomic" - } - ], - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "nyx", - "assets": [ - { - "description": "NYX Token (NYX) is the Nym Network's native token.", - "denom_units": [ - { - "denom": "unyx", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "images": [ - { - "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": [ - { - "denom": "unym", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "nym", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "octa", - "assets": [ - { - "description": "The native token of Octa Chain", - "denom_units": [ - { - "denom": "uocta", - "exponent": 0, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "odin", - "assets": [ - { - "description": "Staking and governance token for ODIN Protocol", - "denom_units": [ - { - "denom": "loki", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "GEO token for ODIN Protocol", - "denom_units": [ - { - "denom": "mGeo", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "O9W token for ODIN Protocol", - "denom_units": [ - { - "denom": "mO9W", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "okexchain", - "assets": [ - { - "description": "The native token of OKExChain", - "denom_units": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "oec-token", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "omniflixhub", - "assets": [ - { - "description": "The native staking token of OmniFlix Hub.", - "denom_units": [ - { - "denom": "uflix", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "onomy", - "assets": [ - { - "description": "The native token of Onomy Protocol", - "denom_units": [ - { - "denom": "anom", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "oraichain", - "assets": [ - { - "description": "The native token of Oraichain", - "denom_units": [ - { - "denom": "orai", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "osmosis", - "assets": [ - { - "description": "The native token of Osmosis", - "denom_units": [ - { - "denom": "uosmo", - "exponent": 0 - }, - { - "denom": "osmo", - "exponent": 6 - } - ], - "base": "uosmo", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "uion", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "ibc-index", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-208", - "path": "transfer/channel-208/uusdc" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "axelar", - "base_denom": "uusdc" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", - "exponent": 0, - "aliases": [ - "avalanche-uusdc" - ] - }, - { - "denom": "avalanche-usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-2186", - "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4" - } - } - ], - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-750", - "path": "transfer/channel-750/uusdc" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "noble", - "base_denom": "uusdc" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", - "exponent": 0, - "aliases": [ - "stuosmo" - ] - }, - { - "denom": "stosmo", - "exponent": 6 - } - ], - "type_asset": "ics20", - "base": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", - "name": "stOSMO", - "display": "stosmo", - "symbol": "stOSMO", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "stride", - "base_denom": "stuosmo", - "channel_id": "channel-5" - }, - "chain": { - "channel_id": "channel-326", - "path": "transfer/channel-326/stuosmo" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "stride", - "base_denom": "stuosmo" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "exponent": 0, - "aliases": [ - "uatom" - ] - }, - { - "denom": "atom", - "exponent": 6 - } - ], - "type_asset": "ics20", - "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "name": "Cosmos Hub Atom", - "display": "atom", - "symbol": "ATOM", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "cosmoshub", - "base_denom": "uatom", - "channel_id": "channel-141" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/uatom" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "exponent": 0, - "aliases": [ - "stuatom" - ] - }, - { - "denom": "statom", - "exponent": 6 - } - ], - "type_asset": "ics20", - "base": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "name": "stATOM", - "display": "statom", - "symbol": "stATOM", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "stride", - "base_denom": "stuatom", - "channel_id": "channel-5" - }, - "chain": { - "channel_id": "channel-326", - "path": "transfer/channel-326/stuatom" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "stride", - "base_denom": "stuatom" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" - } - ], - "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": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "exponent": 0, - "aliases": [ - "weth-wei" - ] - }, - { - "denom": "weth", - "exponent": 18 - } - ], - "type_asset": "ics20", - "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "ETH", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "axelar", - "base_denom": "weth-wei", - "channel_id": "channel-3" - }, - "chain": { - "channel_id": "channel-208", - "path": "transfer/channel-208/weth-wei" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "axelar", - "base_denom": "weth-wei" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" - } - }, - { - "denom_units": [ - { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "exponent": 0, - "aliases": [ - "wbtc-satoshi" - ] - }, - { - "denom": "wbtc", - "exponent": 8 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-208", - "path": "transfer/channel-208/wbtc-satoshi" - } - } - ], - "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" - }, - { - "image_sync": { - "chain_name": "axelar", - "base_denom": "wbtc-satoshi" - }, - "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" - } - }, - { - "description": "ERIS liquid staked OSMO", - "denom_units": [ - { - "denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png" - } - ] - }, - { - "description": "Tether USDT on Osmosis", - "denom_units": [ - { - "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-143", - "path": "transfer/channel-143/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - }, - { - "description": "Membrane's CDP-style stablecoin called CDT", - "denom_units": [ - { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "collateralized-debt-token", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg" - } - ] - }, - { - "description": "Membrane's protocol token", - "denom_units": [ - { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "membrane", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg" - } - ] - }, - { - "description": "TIA on Osmosis", - "denom_units": [ - { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "exponent": 0, - "aliases": [ - "utia" - ] - }, - { - "denom": "tia", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-6994", - "path": "transfer/channel-6994/utia" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "celestia", - "base_denom": "utia" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" - } - }, - { - "description": "Margined Power Token sqOSMO", - "denom_units": [ - { - "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg" - } - ] - }, - { - "description": "NOIS on Osmosis", - "denom_units": [ - { - "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", - "exponent": 0, - "aliases": [ - "unois" - ] - }, - { - "denom": "nois", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-8277", - "path": "transfer/channel-8277/unois" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "nois", - "base_denom": "unois" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" - } - ], - "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": [ - { - "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg" - } - ] - }, - { - "description": "Margined Power Token sqATOM", - "denom_units": [ - { - "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "exponent": 0, - "aliases": [ - "basecro" - ] - }, - { - "denom": "cro", - "exponent": 8 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-5", - "path": "transfer/channel-5/basecro" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "cryptoorgchain", - "base_denom": "basecro" - }, - "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": [ - { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "exponent": 0, - "aliases": [ - "ustars" - ] - }, - { - "denom": "stars", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-75", - "path": "transfer/channel-75/ustars" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "stargaze", - "base_denom": "ustars" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" - } - }, - { - "description": "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": "YieldETH", - "exponent": 18 - } - ], - "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" - }, - "provider": "Seven Seas & DeFine Logic Labs" - }, - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" - }, - "provider": "Axelar" - }, - { - "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" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "exponent": 0, - "aliases": [ - "adydx" - ] - }, - { - "denom": "dydx", - "exponent": 18 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-6787", - "path": "transfer/channel-6787/adydx" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "dydx", - "base_denom": "adydx" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" - } - }, - { - "description": "The native token of Quasar", - "denom_units": [ - { - "denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "exponent": 0, - "aliases": [ - "uqsr" - ] - }, - { - "denom": "qsr", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-688", - "path": "transfer/channel-688/uqsr" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "quasar", - "base_denom": "uqsr" - }, - "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": [ - { - "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "MilkyWay's liquid staked TIA", - "denom_units": [ - { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "exponent": 0 - }, - { - "denom": "milkTIA", - "exponent": 6 - } - ], - "base": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "name": "milkTIA", - "display": "milkTIA", - "symbol": "milkTIA", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "celestia", - "base_denom": "utia" - }, - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", - "exponent": 0, - "aliases": [ - "stk/uosmo" - ] - }, - { - "denom": "stkosmo", - "exponent": 6, - "aliases": [ - "stk/osmo" - ] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-4", - "path": "transfer/channel-4/stk/uosmo" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "persistence", - "base_denom": "stk/uosmo" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" - } - ], - "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": [ - { - "denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", - "exponent": 0, - "aliases": [ - "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" - ] - }, - { - "denom": "page", - "exponent": 8 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-144", - "path": "transfer/channel-144/gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "gravitybridge", - "base_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" - } - ], - "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": [ - { - "denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", - "exponent": 0, - "aliases": [ - "unom" - ] - }, - { - "denom": "nom", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-6897", - "path": "transfer/channel-6897/unom" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "nomic", - "base_denom": "unom" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" - } - }, - { - "description": "Bitcoin. On Cosmos.", - "denom_units": [ - { - "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "exponent": 0, - "aliases": [ - "usat" - ] - }, - { - "denom": "nbtc", - "exponent": 14 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-6897", - "path": "transfer/channel-6897/usat" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "nomic", - "base_denom": "usat" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" - } - }, - { - "description": "AUTISM on Osmosis", - "denom_units": [ - { - "denom": "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", - "exponent": 0, - "aliases": [ - "uautism" - ] - }, - { - "denom": "autism", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-122", - "path": "transfer/channel-122/factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "injective", - "base_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism" - }, - "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": [ - { - "denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", - "exponent": 0, - "aliases": [ - "uwoof" - ] - }, - { - "denom": "WOOF", - "exponent": 6 - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" - } - ] - }, - { - "description": "The native coin of Sneaky Productions.", - "denom_units": [ - { - "denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", - "exponent": 0, - "aliases": [ - "usneaky" - ] - }, - { - "denom": "sneaky", - "exponent": 6 - } - ], - "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" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "exponent": 0, - "aliases": [ - "wbtc-satoshi" - ] - }, - { - "denom": "wbtc", - "exponent": 8 - } - ], - "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" - }, - "provider": "BitGo, Kyber, and Ren" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" - } - ], - "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": [ - { - "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" - } - ] - }, - { - "description": "NLS on Osmosis", - "denom_units": [ - { - "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", - "exponent": 0, - "aliases": [ - "unls" - ] - }, - { - "denom": "nls", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-783", - "path": "transfer/channel-783/unls" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "nolus", - "base_denom": "unls" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" - } - }, - { - "description": "STRD on Osmosis", - "denom_units": [ - { - "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", - "exponent": 0, - "aliases": [ - "ustrd" - ] - }, - { - "denom": "strd", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-326", - "path": "transfer/channel-326/ustrd" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "stride", - "base_denom": "ustrd" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" - } - ], - "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": [ - { - "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg" - } - ] - }, - { - "description": "Sail DAO Token", - "denom_units": [ - { - "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "umed", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "passage", - "assets": [ - { - "description": "The native staking and governance token of the Passage chain.", - "denom_units": [ - { - "denom": "upasg", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "passage1", - "assets": [ - { - "description": "The native staking and governance token of the Passage chain.", - "denom_units": [ - { - "denom": "upasg", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "persistence", - "assets": [ - { - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "denom_units": [ - { - "denom": "uxprt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "PSTAKE Liquid-Staked ATOM", - "denom_units": [ - { - "denom": "stk/uatom", - "exponent": 0, - "aliases": [] - }, - { - "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" - }, - "coingecko_id": "stkatom", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" - } - ] - }, - { - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", - "denom_units": [ - { - "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "exponent": 0, - "aliases": [ - "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" - ] - }, - { - "denom": "pstake", - "exponent": 18 - } - ], - "type_asset": "ics20", - "base": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "name": "pSTAKE Finance", - "display": "pstake", - "symbol": "PSTAKE", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "persistence", - "base_denom": "uxprt" - }, - "provider": "Persistence" - }, - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereum", - "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" - }, - "provider": "Gravity Bridge" - }, - { - "type": "ibc", - "counterparty": { - "chain_name": "gravitybridge", - "base_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "channel_id": "channel-24" - }, - "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" - }, - "keywords": [ - "canon" - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", - "exponent": 0, - "aliases": [ - "uatom" - ] - }, - { - "denom": "atom", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-24", - "path": "transfer/channel-24/uatom" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - }, - { - "description": "Tether USDT on Persistence", - "denom_units": [ - { - "denom": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", - "exponent": 0 - }, - { - "denom": "usdt", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-129", - "path": "transfer/channel-129/erc20/tether/usdt" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "kava", - "base_denom": "erc20/tether/usdt" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-132", - "path": "transfer/channel-132/uusdc" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "noble", - "base_denom": "uusdc" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" - } - }, - { - "description": "dydx staking token", - "denom_units": [ - { - "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", - "exponent": 0, - "aliases": [ - "adydx" - ] - }, - { - "denom": "dydx", - "exponent": 18 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-131", - "path": "transfer/channel-131/adydx" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "dydx", - "base_denom": "adydx" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" - } - }, - { - "description": "PSTAKE Liquid-Staked OSMO", - "denom_units": [ - { - "denom": "stk/uosmo", - "exponent": 0, - "aliases": [] - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "planq", - "assets": [ - { - "description": "The native EVM, governance and staking token of the Planq Network", - "denom_units": [ - { - "denom": "aplanq", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "point", - "assets": [ - { - "description": "The native governance and staking token of the Point network", - "denom_units": [ - { - "denom": "apoint", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "provenance", - "assets": [ - { - "description": "Hash is the staking token of the Provenance Blockchain", - "denom_units": [ - { - "denom": "nhash", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "pundix", - "assets": [ - { - "description": "Pundi X Token", - "denom_units": [ - { - "denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "fxcore", - "base_denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", - "channel_id": "channel-0" - }, - "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" - } - } - ], - "images": [ - { - "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" - } - ] - }, - { - "description": "PURSE Token", - "denom_units": [ - { - "denom": "bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", - "exponent": 0 - }, - { - "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" - }, - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "binancesmartchain", - "base_denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", - "contract": "0x84238c00c8313920826D798e3cF6793Ef4F610ad" - }, - "provider": "Function X" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "binancesmartchain", - "base_denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "quasar", - "assets": [ - { - "description": "The native token of Quasar", - "denom_units": [ - { - "denom": "uqsr", - "exponent": 0, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" - } - ] - }, - { - "description": "OSMO from Osmosis", - "denom_units": [ - { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "exponent": 0, - "aliases": [ - "uosmo" - ] - }, - { - "denom": "osmo", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-1", - "path": "transfer/channel-1/uosmo" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "uosmo" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - }, - { - "description": "ATOM from Osmosis", - "denom_units": [ - { - "denom": "ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5", - "exponent": 0, - "aliases": [ - "uatom" - ] - }, - { - "denom": "atom", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-1", - "path": "transfer/channel-1/transfer/channel-0/uatom" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6, - "aliases": [] - } - ], - "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" - }, - "chain": { - "channel_id": "channel-1", - "path": "transfer/channel-1/transfer/channel-208/uusdc" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "description": "QCK - native token of Quicksilver", - "denom_units": [ - { - "denom": "uqck", - "exponent": 0, - "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" - }, - "coingecko_id": "quicksilver", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" - } - ] - }, - { - "description": "Quicksilver Liquid Staked STARS", - "denom_units": [ - { - "denom": "uqstars", - "exponent": 0, - "aliases": [] - }, - { - "denom": "qstars", - "exponent": 6, - "aliases": [] - } - ], - "base": "uqstars", - "name": "Quicksilver Liquid Staked STARS", - "display": "qstars", - "symbol": "qSTARS", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "stargaze", - "base_denom": "ustars" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg" - } - ] - }, - { - "description": "Quicksilver Liquid Staked ATOM", - "denom_units": [ - { - "denom": "uqatom", - "exponent": 0, - "aliases": [] - }, - { - "denom": "qatom", - "exponent": 6, - "aliases": [] - } - ], - "base": "uqatom", - "name": "Quicksilver Liquid Staked ATOM", - "display": "qatom", - "symbol": "qATOM", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg" - } - ] - }, - { - "description": "Quicksilver Liquid Staked REGEN", - "denom_units": [ - { - "denom": "uqregen", - "exponent": 0, - "aliases": [] - }, - { - "denom": "qregen", - "exponent": 6, - "aliases": [] - } - ], - "base": "uqregen", - "name": "Quicksilver Liquid Staked Regen", - "display": "qregen", - "symbol": "qREGEN", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "regen", - "base_denom": "uregen" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg" - } - ] - }, - { - "description": "Quicksilver Liquid Staked OSMO", - "denom_units": [ - { - "denom": "uqosmo", - "exponent": 0, - "aliases": [] - }, - { - "denom": "qosmo", - "exponent": 6, - "aliases": [] - } - ], - "base": "uqosmo", - "name": "Quicksilver Liquid Staked OSMO", - "display": "qosmo", - "symbol": "qOSMO", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "uosmo" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg" - } - ] - }, - { - "description": "Quicksilver Liquid Staked SOMM", - "denom_units": [ - { - "denom": "uqsomm", - "exponent": 0, - "aliases": [] - }, - { - "denom": "qsomm", - "exponent": 6, - "aliases": [] - } - ], - "base": "uqsomm", - "name": "Quicksilver Liquid Staked SOMM", - "display": "qsomm", - "symbol": "qSOMM", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "sommelier", - "base_denom": "usomm" - }, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "qwoyn", - "assets": [ - { - "description": "QWOYN is the native governance token for Qwoyn Network", - "denom_units": [ - { - "denom": "uqwoyn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "realio", - "assets": [ - { - "description": "The native currency of the Realio Network.", - "denom_units": [ - { - "denom": "ario", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rst.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "rebus", - "assets": [ - { - "description": "REBUS, the native coin of the Rebus chain.", - "denom_units": [ - { - "denom": "arebus", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "regen", - "assets": [ - { - "description": "REGEN coin is the token for the Regen Network Platform", - "denom_units": [ - { - "denom": "uregen", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "rizon", - "assets": [ - { - "description": "Native token of Rizon Chain", - "denom_units": [ - { - "denom": "uatolo", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "secretnetwork", - "assets": [ - { - "description": "The native token of Secret Network", - "denom_units": [ - { - "denom": "uscrt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for SIENNA on Secret Network", - "denom_units": [ - { - "denom": "cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for Shade on Secret Network", - "denom_units": [ - { - "denom": "cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for Silk on Secret Network", - "denom_units": [ - { - "denom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for SCRT Staking Derivatives on Secret Network", - "denom_units": [ - { - "denom": "cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for Button on Secret Network", - "denom_units": [ - { - "denom": "cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for Alter on Secret Network", - "denom_units": [ - { - "denom": "cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token cw20 for Amber on Secret Network", - "denom_units": [ - { - "denom": "cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg" - } - ] - }, - { - "description": "The native token cw20 for Shill on Secret Network", - "denom_units": [ - { - "denom": "cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "sei", - "assets": [ - { - "description": "The native staking token of Sei.", - "denom_units": [ - { - "denom": "usei", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png" - } - ] - }, - { - "description": "ERIS liquid staked SEI", - "denom_units": [ - { - "denom": "factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg" - } - ] - }, - { - "description": "Popeye the Seilor", - "denom_units": [ - { - "denom": "factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/popeye.png" - } - ] - }, - { - "description": "A wise dog and a marshal arts master", - "denom_units": [ - { - "denom": "factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SenseiDog.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "sentinel", - "assets": [ - { - "description": "DVPN is the native token of the Sentinel Hub.", - "denom_units": [ - { - "denom": "udvpn", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "sge", - "assets": [ - { - "description": "The native token of SGE Network", - "denom_units": [ - { - "denom": "usge", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "shareledger", - "assets": [ - { - "description": "The native token of Shareledger", - "denom_units": [ - { - "denom": "nshr", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "shentu", - "assets": [ - { - "description": "The native token of Shentu", - "denom_units": [ - { - "denom": "uctk", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "sifchain", - "assets": [ - { - "description": "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", - "denom_units": [ - { - "denom": "rowan", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "six", - "assets": [ - { - "description": "The native staking token of the SIX Protocol.", - "denom_units": [ - { - "denom": "usix", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/six/images/six.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "sommelier", - "assets": [ - { - "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", - "denom_units": [ - { - "denom": "usomm", - "exponent": 0, - "aliases": [ - "microsomm" - ] - }, - { - "denom": "msomm", - "exponent": 3, - "aliases": [ - "millisomm" - ] - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "source", - "assets": [ - { - "description": "The native token of SOURCE Chain", - "denom_units": [ - { - "denom": "usource", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "stafihub", - "assets": [ - { - "description": "The native staking and governance token of the StaFi Hub.", - "denom_units": [ - { - "denom": "ufis", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "stafi", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg" - } - ] - }, - { - "description": "A liquid staking representation of staked ATOMs", - "denom_units": [ - { - "denom": "uratom", - "exponent": 0 - }, - { - "denom": "ratom", - "exponent": 6 - } - ], - "base": "uratom", - "name": "rATOM", - "display": "ratom", - "symbol": "rATOM", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "provider": "StaFiHub" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg" - }, - "coingecko_id": "", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg" - } - ] - }, - { - "description": "A liquid staking representation of staked IRISs", - "denom_units": [ - { - "denom": "uriris", - "exponent": 0 - }, - { - "denom": "riris", - "exponent": 6 - } - ], - "base": "uriris", - "name": "rIRIS", - "display": "riris", - "symbol": "rIRIS", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "irisnet", - "base_denom": "uiris" - }, - "provider": "StaFiHub" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg" - }, - "coingecko_id": "", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg" - } - ] - }, - { - "description": "A liquid staking representation of staked HUAHUAs", - "denom_units": [ - { - "denom": "urhuahua", - "exponent": 0 - }, - { - "denom": "rhuahua", - "exponent": 6 - } - ], - "base": "urhuahua", - "name": "rHUAHUA", - "display": "rhuahua", - "symbol": "rHUAHUA", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "chihuahua", - "base_denom": "uhuahua" - }, - "provider": "StaFiHub" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg" - }, - "coingecko_id": "", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg" - } - ] - }, - { - "description": "A liquid staking representation of staked SWTHs", - "denom_units": [ - { - "denom": "urswth", - "exponent": 0 - }, - { - "denom": "rswth", - "exponent": 8 - } - ], - "base": "urswth", - "name": "rSWTH", - "display": "rswth", - "symbol": "rSWTH", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "carbon", - "base_denom": "uswth" - }, - "provider": "StaFiHub" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg" - }, - "coingecko_id": "", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "stargaze", - "assets": [ - { - "description": "The native token of Stargaze", - "denom_units": [ - { - "denom": "ustars", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token of ohhNFT.", - "denom_units": [ - { - "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native meme token of stargaze.", - "denom_units": [ - { - "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "ohhNFT LP token.", - "denom_units": [ - { - "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Social token for the ohhVAULT.", - "denom_units": [ - { - "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native coin of Sneaky Productions.", - "denom_units": [ - { - "denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "starname", - "assets": [ - { - "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", - "denom_units": [ - { - "denom": "uiov", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "stratos", - "assets": [ - { - "description": "STOS coin is the token for the Stratos (STOS) cosmos based blockchain", - "denom_units": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "denom": "gwei", - "exponent": 9 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "stride", - "assets": [ - { - "description": "The native token of Stride", - "denom_units": [ - { - "denom": "ustrd", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "stride", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "stuatom", - "exponent": 0 - }, - { - "denom": "statom", - "exponent": 6 - } - ], - "base": "stuatom", - "name": "Stride Staked ATOM", - "display": "statom", - "symbol": "stATOM", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "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" - }, - "coingecko_id": "stride-staked-atom", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "stustars", - "exponent": 0 - }, - { - "denom": "ststars", - "exponent": 6 - } - ], - "base": "stustars", - "name": "Stride Staked STARS", - "display": "ststars", - "symbol": "stSTARS", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "stargaze", - "base_denom": "ustars" - }, - "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" - }, - "coingecko_id": "stride-staked-stars", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "stuosmo", - "exponent": 0 - }, - { - "denom": "stosmo", - "exponent": 6 - } - ], - "base": "stuosmo", - "name": "Stride Staked OSMO", - "display": "stosmo", - "symbol": "stOSMO", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "osmosis", - "base_denom": "uosmo" - }, - "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" - }, - "coingecko_id": "stride-staked-osmo", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "stujuno", - "exponent": 0 - }, - { - "denom": "stjuno", - "exponent": 6 - } - ], - "base": "stujuno", - "name": "Stride Staked JUNO", - "display": "stjuno", - "symbol": "stJUNO", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "juno", - "base_denom": "ujuno" - }, - "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" - }, - "coingecko_id": "stride-staked-juno", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "stuluna", - "exponent": 0 - }, - { - "denom": "stluna", - "exponent": 6 - } - ], - "base": "stuluna", - "name": "Stride Staked LUNA", - "display": "stluna", - "symbol": "stLUNA", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "terra2", - "base_denom": "uluna" - }, - "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" - }, - "coingecko_id": "stride-staked-luna", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "stinj", - "exponent": 0 - }, - { - "denom": "stINJ", - "exponent": 18 - } - ], - "base": "stinj", - "name": "Stride Staked INJ", - "display": "stINJ", - "symbol": "stINJ", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "injective", - "base_denom": "inj" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "staevmos", - "exponent": 0 - }, - { - "denom": "stevmos", - "exponent": 18 - } - ], - "base": "staevmos", - "name": "Stride Staked EVMOS", - "display": "stevmos", - "symbol": "stEVMOS", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "evmos", - "base_denom": "uaevmos" - }, - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "stuumee", - "exponent": 0 - }, - { - "denom": "stumee", - "exponent": 6 - } - ], - "base": "stuumee", - "name": "Stride Staked UMEE", - "display": "stumee", - "symbol": "stUMEE", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "umee", - "base_denom": "uumee" - }, - "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" - }, - "coingecko_id": "stride-staked-umee", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "stucmdx", - "exponent": 0 - }, - { - "denom": "stcmdx", - "exponent": 6 - } - ], - "base": "stucmdx", - "name": "Stride Staked CMDX", - "display": "stcmdx", - "symbol": "stCMDX", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "comdex", - "base_denom": "ucmdx" - }, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "stusomm", - "exponent": 0 - }, - { - "denom": "stsomm", - "exponent": 6 - } - ], - "base": "stusomm", - "name": "Stride Staked SOMM", - "display": "stsomm", - "symbol": "stSOMM", - "traces": [ - { - "type": "liquid-stake", - "counterparty": { - "chain_name": "sommelier", - "base_denom": "usomm" - }, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "tenet", - "assets": [ - { - "description": "The native EVM, governance and staking token of the Tenet", - "denom_units": [ - { - "denom": "atenet", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "teritori", - "assets": [ - { - "description": "The native token of Teritori", - "denom_units": [ - { - "denom": "utori", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "teritori", - "images": [ - { - "image_sync": { - "chain_name": "teritori", - "base_denom": "utori" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg" - } - ] - }, - { - "description": "The native token of Osmosis", - "denom_units": [ - { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "exponent": 0 - }, - { - "denom": "osmo", - "exponent": 6 - } - ], - "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" - }, - "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" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosis", - "base_denom": "uosmo" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E", - "exponent": 0, - "aliases": [ - "uatom" - ] - }, - { - "denom": "atom", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-10", - "path": "transfer/channel-10/uatom" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "cosmoshub", - "base_denom": "uatom" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - }, - { - "description": "The native staking and governance token of the Kujira chain.", - "denom_units": [ - { - "denom": "ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E", - "exponent": 0 - }, - { - "denom": "kuji", - "exponent": 6 - } - ], - "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" - }, - "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" - }, - "images": [ - { - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "uterp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "uthiol", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "terra", - "assets": [ - { - "description": "The native staking token of Terra Classic.", - "denom_units": [ - { - "denom": "uluna", - "exponent": 0, - "aliases": [ - "microluna" - ] - }, - { - "denom": "mluna", - "exponent": 3, - "aliases": [ - "milliluna" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The USD stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "uusd", - "exponent": 0, - "aliases": [ - "microusd" - ] - }, - { - "denom": "musd", - "exponent": 3, - "aliases": [ - "milliusd" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The KRW stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "ukrw", - "exponent": 0, - "aliases": [ - "microkrw" - ] - }, - { - "denom": "mkrw", - "exponent": 3, - "aliases": [ - "millikrw" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The governance token of the White Whale protocol on Terra.", - "type_asset": "cw20", - "address": "terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz", - "denom_units": [ - { - "denom": "cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "white-whale", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whale.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bluna.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/beth.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aust.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/anc.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mir.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maapl.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mabnb.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamc.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamd.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamzn.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/markk.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbaba.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbtc.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mcoin.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdis.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdot.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/meth.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mfb.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mglxy.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgme.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgoogl.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgs.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mhood.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mjnj.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mko.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mmsft.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnflx.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnio.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnke.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnvda.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mpypl.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mqqq.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msbux.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mslv.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mspy.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msq.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtsla.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtwtr.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/muso.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lota.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dph.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mine.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bpsidp-24m.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/spec.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loop.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loopr.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stt.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twd.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xtra.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miaw.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/psi.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nluna.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neth.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnluna.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cneth.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/navax.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/natom.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vkr.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orion.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tland.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vust.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eth.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wbtc.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sol.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticet.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bnb.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cake.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sushi.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/uni.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtet.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcet.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kuji.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/skuji.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsteth.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wstsol.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsbsol.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ldo.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webeth.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stluna.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", - "exponent": 0 - }, - { - "denom": "xdefi", - "exponent": 8 - } - ], - "type_asset": "cw20", - "address": "terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", - "base": "cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", - "name": "XDEFI (Portal)", - "display": "xdefi", - "symbol": "XDEFI" - }, - { - "denom_units": [ - { - "denom": "cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/btl.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lunax.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luni.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ply.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfloki.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tftic.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticii.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticiii.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/moon.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/halo.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pug.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orne.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tns.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xrune.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784", - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/alot.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sity.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/glow.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/apollo.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/abr.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", - "exponent": 0 - }, - { - "denom": "whgtps", - "exponent": 8 - } - ], - "type_asset": "cw20", - "address": "terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", - "base": "cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", - "name": "Global Transaction Payment Solu", - "display": "whgtps", - "symbol": "whGTPS" - }, - { - "denom_units": [ - { - "denom": "cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/prism.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", - "exponent": 0 - }, - { - "denom": "sdollar", - "exponent": 2 - } - ], - "type_asset": "cw20", - "address": "terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", - "base": "cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", - "name": "Space Dollar", - "display": "sdollar", - "symbol": "SDOLLAR" - }, - { - "denom_units": [ - { - "denom": "cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whsail.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whgsail.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xprism.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", - "exponent": 0 - }, - { - "denom": "cde", - "exponent": 9 - } - ], - "type_asset": "cw20", - "address": "terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", - "base": "cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", - "name": "CAPITRADE TOKEN", - "display": "cde", - "symbol": "CDE" - }, - { - "denom_units": [ - { - "denom": "cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ctx.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cluna.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pluna.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/yluna.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlo.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/local.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luv.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/robo.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luart.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mars.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xmars.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", - "exponent": 0 - }, - { - "denom": "dfiat", - "exponent": 8 - } - ], - "type_asset": "cw20", - "address": "terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", - "base": "cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", - "name": "DeFiato", - "display": "dfiat", - "symbol": "DFIAT" - }, - { - "denom_units": [ - { - "denom": "cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ceres.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wasavax.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mint.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sd.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xsd.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/paxg.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whdao.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sayve.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", - "exponent": 0 - }, - { - "denom": "guides", - "exponent": 6 - } - ], - "type_asset": "cw20", - "address": "terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", - "base": "cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", - "name": "Guides Token", - "display": "guides", - "symbol": "GUIDES" - }, - { - "denom_units": [ - { - "denom": "cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bro.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bbro.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", - "exponent": 0 - }, - { - "denom": "gtps", - "exponent": 18 - } - ], - "type_asset": "cw20", - "address": "terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", - "base": "cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", - "name": "Global Transaction Payment Solut", - "display": "gtps", - "symbol": "GTPS" - }, - { - "denom_units": [ - { - "denom": "cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", - "exponent": 0 - }, - { - "denom": "gfi", - "exponent": 18 - } - ], - "type_asset": "cw20", - "address": "terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", - "base": "cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", - "name": "Gtps.Finance", - "display": "gfi", - "symbol": "GFI" - }, - { - "denom_units": [ - { - "denom": "cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", - "exponent": 0 - }, - { - "denom": "ulc", - "exponent": 18 - } - ], - "type_asset": "cw20", - "address": "terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", - "base": "cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", - "name": "Ultimatalioniscoin", - "display": "ulc", - "symbol": "ULC" - }, - { - "denom_units": [ - { - "denom": "cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sst.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlas.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/audio.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/avax.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bat.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/busdbs.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dai.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticpo.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mimet.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ray.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sbr.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/shib.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/srmso.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcav.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcbs.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcpo.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcso.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtav.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtbs.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtso.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gohm.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msol.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steth.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lct.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/batom.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webatom.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wcoin.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy", - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lctfancard.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kntc.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kust.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steak.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cst.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam", - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cstfancard.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwld.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/fury.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rct.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vitc.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sb.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/toad.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orionastro.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/retro.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tnd.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stnd.svg" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwt.png" - } - ] - }, - { - "description": "The AUD stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "uaud", - "exponent": 0, - "aliases": [ - "microaud" - ] - }, - { - "denom": "maud", - "exponent": 3, - "aliases": [ - "milliaud" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The CAD stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "ucad", - "exponent": 0, - "aliases": [ - "microcad" - ] - }, - { - "denom": "mcad", - "exponent": 3, - "aliases": [ - "millicad" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The CHF stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "uchf", - "exponent": 0, - "aliases": [ - "microchf" - ] - }, - { - "denom": "mchf", - "exponent": 3, - "aliases": [ - "millichf" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The CNY stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "ucny", - "exponent": 0, - "aliases": [ - "microcny" - ] - }, - { - "denom": "mcny", - "exponent": 3, - "aliases": [ - "millicny" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The DKK stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "udkk", - "exponent": 0, - "aliases": [ - "microdkk" - ] - }, - { - "denom": "mdkk", - "exponent": 3, - "aliases": [ - "millidkk" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The EUR stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "ueur", - "exponent": 0, - "aliases": [ - "microeur" - ] - }, - { - "denom": "meur", - "exponent": 3, - "aliases": [ - "millieur" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The GBP stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "ugbp", - "exponent": 0, - "aliases": [ - "microgbp" - ] - }, - { - "denom": "mgbp", - "exponent": 3, - "aliases": [ - "milligbp" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The HKD stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "uhkd", - "exponent": 0, - "aliases": [ - "microhkd" - ] - }, - { - "denom": "mhkd", - "exponent": 3, - "aliases": [ - "millihkd" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The IDR stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "uidr", - "exponent": 0, - "aliases": [ - "microidr" - ] - }, - { - "denom": "midr", - "exponent": 3, - "aliases": [ - "milliidr" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The INR stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "uinr", - "exponent": 0, - "aliases": [ - "microinr" - ] - }, - { - "denom": "minr", - "exponent": 3, - "aliases": [ - "milliinr" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The JPY stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "ujpy", - "exponent": 0, - "aliases": [ - "microjpy" - ] - }, - { - "denom": "mjpy", - "exponent": 3, - "aliases": [ - "millijpy" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The MNT stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "umnt", - "exponent": 0, - "aliases": [ - "micromnt" - ] - }, - { - "denom": "mmnt", - "exponent": 3, - "aliases": [ - "millimnt" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The MYR stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "umyr", - "exponent": 0, - "aliases": [ - "micromyr" - ] - }, - { - "denom": "mmyr", - "exponent": 3, - "aliases": [ - "millimyr" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The NOK stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "unok", - "exponent": 0, - "aliases": [ - "micronok" - ] - }, - { - "denom": "mnok", - "exponent": 3, - "aliases": [ - "millinok" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The PHP stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "uphp", - "exponent": 0, - "aliases": [ - "microphp" - ] - }, - { - "denom": "mphp", - "exponent": 3, - "aliases": [ - "milliphp" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The SDR stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "usdr", - "exponent": 0, - "aliases": [ - "microsdr" - ] - }, - { - "denom": "msdr", - "exponent": 3, - "aliases": [ - "millisdr" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The SEK stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "usek", - "exponent": 0, - "aliases": [ - "microsek" - ] - }, - { - "denom": "msek", - "exponent": 3, - "aliases": [ - "millisek" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The SGD stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "usgd", - "exponent": 0, - "aliases": [ - "microsgd" - ] - }, - { - "denom": "msgd", - "exponent": 3, - "aliases": [ - "millisgd" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The THB stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "uthb", - "exponent": 0, - "aliases": [ - "microthb" - ] - }, - { - "denom": "mthb", - "exponent": 3, - "aliases": [ - "millithb" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The TWD stablecoin of Terra Classic.", - "denom_units": [ - { - "denom": "utwd", - "exponent": 0, - "aliases": [ - "microtwd" - ] - }, - { - "denom": "mtwd", - "exponent": 3, - "aliases": [ - "millitwd" - ] - }, - { - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neb.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/trit.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "terra2", - "assets": [ - { - "description": "The native staking token of Terra.", - "denom_units": [ - { - "denom": "uluna", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "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" - }, - "coingecko_id": "astroport-fi", - "images": [ - { - "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": [ - { - "denom": "cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "eris-amplified-luna", - "images": [ - { - "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": [ - { - "denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "lion-dao", - "images": [ - { - "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": [ - { - "denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "ERIS Alliance Staked ampWHALE on Terra", - "denom_units": [ - { - "denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg" - } - ] - }, - { - "description": "ERIS Alliance Staked boneWHALE on Terra", - "denom_units": [ - { - "denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg" - } - ] - }, - { - "description": "ERIS Liquid Enterprise Staked ROAR", - "denom_units": [ - { - "denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png" - } - ] - }, - { - "description": "Nico Dao Money", - "type_asset": "cw20", - "address": "terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3", - "denom_units": [ - { - "denom": "cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/BITZ.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C", - "exponent": 0, - "aliases": [ - "wstETH" - ] - }, - { - "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "exponent": 18 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-229", - "path": "transfer/channel-229/factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH" - } - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "denom": "cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/seul.png" - } - ] - }, - { - "description": "SEUL DAO", - "type_asset": "cw20", - "address": "terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5", - "denom_units": [ - { - "denom": "cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xseul.png" - } - ] - }, - { - "description": "ITO DAO", - "type_asset": "cw20", - "address": "terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s", - "denom_units": [ - { - "denom": "cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/I.png" - } - ] - }, - { - "description": "Chris Armani Token", - "type_asset": "cw20", - "address": "terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8", - "denom_units": [ - { - "denom": "cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/armani.png" - } - ] - }, - { - "description": "useless meme coin", - "type_asset": "cw20", - "address": "terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", - "denom_units": [ - { - "denom": "cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", - "exponent": 0 - }, - { - "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" - } - }, - { - "description": "ado the flower of night", - "type_asset": "cw20", - "address": "terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu", - "denom_units": [ - { - "denom": "cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu", - "exponent": 0 - }, - { - "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" - } - } - ] - }, - { - "$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": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "wavax", - "exponent": 18 - } - ], - "base": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c", - "name": "Wrapped AVAX", - "display": "wavax", - "symbol": "WAVAX", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "avalanchetestnet", - "base_denom": "wei" - }, - "provider": "Avalanche" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - }, - "coingecko_id": "wrapped-avax", - "images": [ - { - "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": [ - { - "denom": "0x57F1c63497AEe0bE305B8852b354CEc793da43bB", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "axlusdc", - "exponent": 6 - } - ], - "base": "0x57F1c63497AEe0bE305B8852b354CEc793da43bB", - "name": "Axelar Wrapped USDC", - "display": "axlusdc", - "symbol": "axlUSDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelartestnet", - "base_denom": "uusdc" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "wbnb", - "exponent": 18 - } - ], - "type_asset": "erc20", - "address": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd", - "base": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd", - "name": "Wrapped BNB", - "display": "wbnb", - "symbol": "WBNB", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "binancesmartchaintestnet", - "base_denom": "wei" - }, - "chain": { - "contract": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" - }, - "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" - }, - "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" - } - ] - }, - { - "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": "axlusdc", - "exponent": 6 - } - ], - "base": "0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2", - "name": "Axelar Wrapped USDC", - "display": "axlusdc", - "symbol": "axlUSDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelartestnet", - "base_denom": "uusdc" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "ethereumtestnet", - "assets": [ - { - "description": "Ether is the native fee token of the Ethereum network.", - "denom_units": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "denom": "gwei", - "exponent": 9 - }, - { - "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" - }, - "coingecko_id": "ethereum", - "images": [ - { - "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": [ - { - "denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", - "exponent": 0, - "aliases": [ - "weth-wei" - ] - }, - { - "denom": "weth", - "exponent": 18 - } - ], - "base": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "ethereumtestnet", - "base_denom": "wei" - }, - "provider": "Ethereum" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" - }, - "coingecko_id": "weth", - "images": [ - { - "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": [ - { - "denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A", - "exponent": 0, - "aliases": [ - "uausdc" - ] - }, - { - "denom": "ausdc", - "exponent": 6 - } - ], - "base": "0x254d06f33bDc5b8ee05b2ea472107E300226659A", - "name": "USD Coin", - "display": "ausdc", - "symbol": "aUSDC", - "traces": [ - { - "type": "synthetic", - "counterparty": { - "chain_name": "forex", - "base_denom": "USD" - }, - "provider": "Circle" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "coingecko_id": "usd-coin", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08", - "exponent": 0 - }, - { - "denom": "wftm", - "exponent": 18 - } - ], - "base": "0x812666209b90344Ec8e528375298ab9045c2Bd08", - "name": "Wrapped Fantom", - "display": "wftm", - "symbol": "WFTM", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "fantomtestnet", - "base_denom": "wei" - }, - "chain": { - "contract": "0x812666209b90344Ec8e528375298ab9045c2Bd08" - }, - "provider": "Fantom" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "fantomtestnet", - "base_denom": "wei" - }, - "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": [ - { - "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": "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" - }, - "coingecko_id": "moonbeam", - "images": [ - { - "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": [ - { - "denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715", - "exponent": 0, - "aliases": [ - "wglmr-wei" - ] - }, - { - "denom": "wglmr", - "exponent": 18 - } - ], - "base": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "moonbeamtestnet", - "base_denom": "Wei" - }, - "provider": "Moonbeam" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" - }, - "coingecko_id": "wrapped-moonbeam", - "images": [ - { - "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": [ - { - "denom": "0xD1633F7Fb3d716643125d6415d4177bC36b7186b", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "axlusdc", - "exponent": 6 - } - ], - "base": "0xD1633F7Fb3d716643125d6415d4177bC36b7186b", - "name": "Axelar Wrapped USD Coin", - "display": "axlusdc", - "symbol": "axlUSDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelartestnet", - "base_denom": "uusdc" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "polkadottestnet", - "assets": [ - { - "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", - "denom_units": [ - { - "denom": "Planck", - "exponent": 0, - "aliases": [ - "planck" - ] - }, - { - "denom": "uDOT", - "exponent": 4, - "aliases": [ - "udot", - "microdot", - "Microdot" - ] - }, - { - "denom": "mDOT", - "exponent": 7, - "aliases": [ - "millidot", - "Millidot" - ] - }, - { - "denom": "DOT", - "exponent": 10, - "aliases": [ - "dot", - "New DOT", - "new dot" - ] - }, - { - "denom": "DOT (old)", - "exponent": 12 - }, - { - "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" - }, - "coingecko_id": "polkadot", - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "wei", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "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": "wmatic", - "exponent": 18, - "aliases": [ - "polygon" - ] - } - ], - "base": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889", - "name": "Wrapped Matic", - "display": "wmatic", - "symbol": "WMATIC", - "traces": [ - { - "type": "wrapped", - "counterparty": { - "chain_name": "polygontestnet", - "base_denom": "wei" - }, - "provider": "Polygon" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" - }, - "coingecko_id": "wmatic", - "images": [ - { - "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": [ - { - "denom": "0x2c852e740B62308c46DD29B982FBb650D063Bd07", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "axlusdc", - "exponent": 6 - } - ], - "base": "0x2c852e740B62308c46DD29B982FBb650D063Bd07", - "name": "Axelar Wrapped USD Coin", - "display": "axlusdc", - "symbol": "axlUSDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "axelartestnet", - "base_denom": "uusdc" - }, - "provider": "Axelar" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "uakt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "archwaytestnet", - "assets": [ - { - "description": "The native token of Archway testnetwork", - "denom_units": [ - { - "denom": "aconst", - "exponent": 0 - }, - { - "denom": "uconst", - "exponent": 12 - }, - { - "denom": "const", - "exponent": 18 - } - ], - "base": "aconst", - "name": "Archway", - "display": "const", - "symbol": "CONST" - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "arkeonetworktestnet", - "assets": [ - { - "description": "", - "denom_units": [ - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/arkeonetworktestnet/images/arkeo.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "artelatestnet", - "assets": [ - { - "description": "The native EVM, governance and staking token of the Artela Network", - "denom_units": [ - { - "denom": "uart", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/artelatestnet/images/artela.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "auratestnet", - "assets": [ - { - "description": "The native token of Aura Test Network", - "denom_units": [ - { - "denom": "ueaura", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "axelartestnet", - "assets": [ - { - "description": "The native token of Axelar", - "denom_units": [ - { - "denom": "uaxl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "Circle's stablecoin on Axelar", - "denom_units": [ - { - "denom": "uausdc", - "exponent": 0 - }, - { - "denom": "ausdc", - "exponent": 6 - } - ], - "base": "uausdc", - "name": "USD Coin", - "display": "ausdc", - "symbol": "aUSDC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereumtestnet", - "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereumtestnet", - "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - }, - { - "description": "Wrapped Ether on Axelar", - "denom_units": [ - { - "denom": "eth-wei", - "exponent": 0 - }, - { - "denom": "weth", - "exponent": 18 - } - ], - "base": "eth-wei", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "axlWETH", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "ethereumtestnet", - "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "ethereumtestnet", - "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" - } - }, - { - "description": "Wrapped Moonbeam on Axelar", - "denom_units": [ - { - "denom": "wglmr-wei", - "exponent": 0 - }, - { - "denom": "wglmr", - "exponent": 18 - } - ], - "base": "wglmr-wei", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WDEV", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "moonbeamtestnet", - "base_denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "moonbeamtestnet", - "base_denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" - } - }, - { - "description": "Wrapped Matic on Axelar", - "denom_units": [ - { - "denom": "wmatic-wei", - "exponent": 0 - }, - { - "denom": "wmatic", - "exponent": 18 - } - ], - "base": "wmatic-wei", - "name": "Wrapped Matic", - "display": "wmatic", - "symbol": "WMATIC", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "polygontestnet", - "base_denom": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "polygontestnet", - "base_denom": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" - } - }, - { - "description": "Wrapped BNB on Axelar", - "denom_units": [ - { - "denom": "wbnb-wei", - "exponent": 0 - }, - { - "denom": "wbnb", - "exponent": 18 - } - ], - "base": "wbnb-wei", - "name": "Wrapped BNB", - "display": "wbnb", - "symbol": "WBNB", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "binancesmartchaintestnet", - "base_denom": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "binancesmartchaintestnet", - "base_denom": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" - } - }, - { - "description": "Wrapped AVAX on Axelar.", - "denom_units": [ - { - "denom": "wavax-wei", - "exponent": 0 - }, - { - "denom": "avax", - "exponent": 18 - } - ], - "base": "wavax-wei", - "name": "Wrapped AVAX", - "display": "avax", - "symbol": "WAVAX", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "avalanchetestnet", - "base_denom": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "avalanchetestnet", - "base_denom": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - } - }, - { - "description": "Wrapped FTM on Axelar.", - "denom_units": [ - { - "denom": "wftm-wei", - "exponent": 0 - }, - { - "denom": "ftm", - "exponent": 18 - } - ], - "base": "wftm-wei", - "name": "Wrapped FTM", - "display": "ftm", - "symbol": "WFTM", - "traces": [ - { - "type": "bridge", - "counterparty": { - "chain_name": "fantomtestnet", - "base_denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08" - }, - "provider": "Axelar" - } - ], - "images": [ - { - "image_sync": { - "chain_name": "fantomtestnet", - "base_denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" - } - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "babylontestnet", - "assets": [ - { - "description": "The native staking token of Babylon.", - "denom_units": [ - { - "denom": "ubbn", - "exponent": 0 - }, - { - "denom": "bbn", - "exponent": 6 - } - ], - "base": "uatom", - "name": "Babylon BBN", - "display": "bbn", - "symbol": "BBN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "ubcna", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "ubcna", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "cascadiatestnet", - "assets": [ - { - "description": "The World's First Neocybernetic Blockchain", - "denom_units": [ - { - "denom": "aCC", - "exponent": 0 - }, - { - "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" - }, - "keywords": [ - "cascadia", - "neocybernetic" - ], - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "celestiatestnet", - "assets": [ - { - "description": "", - "denom_units": [ - { - "denom": "utia", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "celestiatestnet2", - "assets": [ - { - "description": "", - "denom_units": [ - { - "denom": "utia", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "celestiatestnet3", - "assets": [ - { - "description": "", - "denom_units": [ - { - "denom": "utia", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "chain4energytestnet", - "assets": [ - { - "description": "The native token of Chain4Energy", - "denom_units": [ - { - "denom": "uc4e", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "cheqdtestnet", - "assets": [ - { - "description": "Native token for the cheqd network", - "denom_units": [ - { - "denom": "ncheq", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "chimbatestnet", - "assets": [ - { - "description": "The first blokchain in colombia", - "denom_units": [ - { - "denom": "ucmba", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "composabletestnet", - "assets": [ - { - "description": "The native staking and governance token of the Composable testnet.", - "denom_units": [ - { - "denom": "ppica", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "uccat", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "coreumtestnet", - "assets": [ - { - "description": "The native token of Coreum", - "denom_units": [ - { - "denom": "utestcore", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "uatom", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "cosmwasmtestnet", - "assets": [ - { - "description": "Fee Token", - "denom_units": [ - { - "denom": "umlg", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" - } - ] - }, - { - "description": "Staking Token", - "denom_units": [ - { - "denom": "uand", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "cosstestnet", - "assets": [ - { - "description": "The native token of COSS", - "denom_units": [ - { - "denom": "ucgas", - "exponent": 0, - "aliases": [] - }, - { - "denom": "cgas", - "exponent": 6, - "aliases": [] - } - ], - "base": "ucgas", - "name": "cgas", - "display": "cgas", - "symbol": "cgas" - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "cudostestnet", - "assets": [ - { - "description": "The native token of the Cudos blockchain", - "denom_units": [ - { - "denom": "acudos", - "exponent": 0, - "aliases": [ - "attocudos" - ] - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "udear", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/deardogetestnet/images/deardoge.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "desmostestnet", - "assets": [ - { - "description": "The native token of Desmos", - "denom_units": [ - { - "denom": "udaric", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "peaka", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "peaka", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "dydxtestnet", - "assets": [ - { - "description": "The native staking token of dYdX Protocol.", - "denom_units": [ - { - "denom": "adydx", - "exponent": 0 - }, - { - "denom": "dydx", - "exponent": 18 - } - ], - "base": "adydx", - "name": "dYdX", - "display": "dydx", - "symbol": "DYDX", - "coingecko_id": "dydx", - "traces": [ - { - "type": "test-mintage", - "counterparty": { - "chain_name": "dydx", - "base_denom": "adydx" - }, - "provider": "Dydx" - } - ], - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", - "theme": { - "circle": true - } - } - ], - "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": [ - { - "description": "The native token of Elys Network", - "denom_units": [ - { - "denom": "uelys", - "exponent": 0, - "aliases": [ - "microelys" - ] - }, - { - "denom": "melys", - "exponent": 3, - "aliases": [ - "millielys" - ] - }, - { - "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" - }, - "coingecko_id": "elys", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png" - } - ] - }, - { - "description": "Eden token definition", - "denom_units": [ - { - "denom": "ueden", - "exponent": 0, - "aliases": [ - "microeden" - ] - }, - { - "denom": "meden", - "exponent": 3, - "aliases": [ - "millieden" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "empowertestnet", - "assets": [ - { - "description": "The native staking and governance token of the testnet version of Empower.", - "denom_units": [ - { - "denom": "umpwr", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empowertestnet/images/mpwr.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "entrypointtestnet", - "assets": [ - { - "description": "The native token of EntryPoint", - "denom_units": [ - { - "denom": "uentry", - "exponent": 0, - "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" - }, - "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" - } - ] - }, - { - "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": "atom", - "exponent": 6 - } - ], - "base": "ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C", - "name": "Cosmos", - "display": "atom", - "symbol": "ATOM", - "traces": [ - { - "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" - } - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "evmostestnet", - "assets": [ - { - "description": "The native EVM, governance and staking token of the Evmos Hub", - "denom_units": [ - { - "denom": "atevmos", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "fetchhubtestnet", - "assets": [ - { - "description": "The native staking and governance token of the Fetch Hub.", - "denom_units": [ - { - "denom": "atestfet", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "gitopiatestnet", - "assets": [ - { - "description": "The native staking and governance token of the testnet version of Gitopia.", - "denom_units": [ - { - "denom": "utlore", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/gitopiatestnet/images/gitopia.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "humanstestnet", - "assets": [ - { - "description": "The native staking and governance token of the testnet version of Humans AI.", - "denom_units": [ - { - "denom": "uheart", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/humanstestnet/images/humans.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "hypersigntestnet", - "assets": [ - { - "description": "Native token for Hypersign Identity Network", - "denom_units": [ - { - "denom": "uhid", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "hypersign-identity-token", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hypersigntestnet/images/hypersign.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "impacthubdevnet", - "assets": [ - { - "description": "The native token of IXO Chain", - "denom_units": [ - { - "denom": "uixo", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "impacthubtestnet", - "assets": [ - { - "description": "The native token of IXO Chain", - "denom_units": [ - { - "denom": "uixo", - "exponent": 0 - }, - { - "denom": "ixo", - "exponent": 6 - } - ], - "base": "uixo", - "name": "IXO", - "display": "ixo", - "symbol": "IXO", - "traces": [ - { - "type": "test-mintage", - "counterparty": { - "chain_name": "impacthub", - "base_denom": "uixo" - }, - "provider": "impacthub" - } - ], - "images": [ - { - "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" - } - ], - "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": [ - { - "description": "The native staking and governance token of the Imversed testnet.", - "denom_units": [ - { - "denom": "nimv", - "exponent": 0, - "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" - }, - "images": [ - { - "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": [ - { - "denom": "ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B", - "exponent": 0, - "aliases": [ - "usaage" - ] - }, - { - "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" - }, - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "injectivetestnet", - "assets": [ - { - "description": "The INJ token is the native governance token for the Injective chain.", - "denom_units": [ - { - "denom": "inj", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "jackaltestnet", - "assets": [ - { - "description": "The native staking and governance token of Jackal.", - "denom_units": [ - { - "denom": "ujkl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "junotestnet", - "assets": [ - { - "description": "The native token of JUNO Chain", - "denom_units": [ - { - "denom": "ujunox", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "The native token of NEXX GEN AI", - "denom_units": [ - { - "denom": "factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "kichaintestnet", - "assets": [ - { - "description": "The native token of Ki Chain", - "denom_units": [ - { - "denom": "utki", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "kujiratestnet", - "assets": [ - { - "description": "The native staking and governance token of the Harpoon testnet version of Kujira.", - "denom_units": [ - { - "denom": "ukuji", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/kuji.png" - } - ] - }, - { - "description": "The testnet token of Fuzion", - "denom_units": [ - { - "denom": "factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/fuzn.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "kyvedevnet", - "assets": [ - { - "description": "The native utility token of the Korellia devnet version of KYVE.", - "denom_units": [ - { - "denom": "tkyve", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvedevnet/images/kyve.svg" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "kyvetestnet", - "assets": [ - { - "description": "The native utility token of the Kaon testnet version of KYVE.", - "denom_units": [ - { - "denom": "tkyve", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvetestnet/images/kyve.svg" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "lavatestnet", - "assets": [ - { - "description": "The native token of Lava", - "denom_units": [ - { - "denom": "ulava", - "exponent": 0 - }, - { - "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" - }, - "keywords": [ - "rpc", - "api" - ], - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "lavatestnet2", - "assets": [ - { - "description": "The native token of Lava", - "denom_units": [ - { - "denom": "ulava", - "exponent": 0 - }, - { - "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" - }, - "keywords": [ - "rpc", - "api" - ], - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "likecointestnet", - "assets": [ - { - "description": "EKIL is the native token for LikeCoin Testnet", - "denom_units": [ - { - "denom": "nanoekil", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "lumenxtestnet", - "assets": [ - { - "description": "The native token of Lumen Network", - "denom_units": [ - { - "denom": "ulumen", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "marstestnet", - "assets": [ - { - "description": "The native token of Mars Protocol", - "denom_units": [ - { - "denom": "umars", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "migalootestnet", - "assets": [ - { - "description": "The native token of Migaloo Chain", - "denom_units": [ - { - "denom": "uwhale", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "neutrontestnet", - "assets": [ - { - "description": "The native token of Neutron chain", - "denom_units": [ - { - "denom": "untrn", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "nobletestnet", - "assets": [ - { - "description": "The controlled staking asset for Noble Chain", - "denom_units": [ - { - "denom": "ustake", - "exponent": 0, - "aliases": [ - "microstake" - ] - }, - { - "denom": "stake", - "exponent": 6 - } - ], - "base": "ustake", - "name": "Stake", - "display": "stake", - "symbol": "STAKE" - }, - { - "description": "Love is a test tokenfactory asset controlled by the Strangelove Team", - "denom_units": [ - { - "denom": "ulove", - "exponent": 0, - "aliases": [ - "microlove" - ] - }, - { - "denom": "love", - "exponent": 6 - } - ], - "base": "ulove", - "display": "love", - "name": "Love", - "symbol": "LOVE" - }, - { - "description": "USD Coin", - "denom_units": [ - { - "denom": "uusdc", - "exponent": 0, - "aliases": [ - "microusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "base": "uusdc", - "display": "usdc", - "name": "USD Coin", - "symbol": "USDC", - "traces": [ - { - "type": "test-mintage", - "counterparty": { - "chain_name": "noble", - "base_denom": "uusdc" - }, - "provider": "Circle" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ] - }, - { - "description": "USDLR is a fiat-backed stablecoin issued by Stable. Stable pays DeFi protocols who distribute USDLR.", - "denom_units": [ - { - "denom": "uusdlr", - "exponent": 0, - "aliases": [ - "microusdlr" - ] - }, - { - "denom": "usdlr", - "exponent": 6 - } - ], - "base": "uusdlr", - "display": "usdlr", - "name": "USDLR by Stable", - "symbol": "USDLR", - "traces": [ - { - "type": "test-mintage", - "counterparty": { - "chain_name": "noble", - "base_denom": "uusdlr" - }, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "noistestnet", - "assets": [ - { - "description": "The native token of Nois", - "denom_units": [ - { - "denom": "unois", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "nolustestnet", - "assets": [ - { - "description": "The native token of Nolus chain", - "denom_units": [ - { - "denom": "unls", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "ojotestnet", - "assets": [ - { - "description": "The native token of Ojo Network", - "denom_units": [ - { - "denom": "uojo", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ojotestnet/images/ojo.svg" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "okp4testnet", - "assets": [ - { - "description": "The native token of ØKP4.", - "denom_units": [ - { - "denom": "uknow", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "osmosistestnet", - "assets": [ - { - "description": "The native token of Osmosis", - "denom_units": [ - { - "denom": "uosmo", - "exponent": 0, - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "uion", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "osmosistestnet4", - "assets": [ - { - "description": "The native token of Osmosis", - "denom_units": [ - { - "denom": "uosmo", - "exponent": 0, - "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" - }, - "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" - } - ] - }, - { - "denom_units": [ - { - "denom": "uion", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "permtestnet", - "assets": [ - { - "description": "Perm A Permissioned Blockchain", - "denom_units": [ - { - "denom": "uperm", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "persistencetestnet", - "assets": [ - { - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "denom_units": [ - { - "denom": "uxprt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "PSTAKE Liquid-Staked ATOM", - "denom_units": [ - { - "denom": "stk/uatom", - "exponent": 0, - "aliases": [] - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "persistencetestnet2", - "assets": [ - { - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "denom_units": [ - { - "denom": "uxprt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - }, - { - "description": "PSTAKE Liquid-Staked ATOM", - "denom_units": [ - { - "denom": "stk/uatom", - "exponent": 0, - "aliases": [] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" - } - ] - }, - { - "description": "PSTAKE Liquid-Staked OSMO", - "denom_units": [ - { - "denom": "stk/uosmo", - "exponent": 0, - "aliases": [] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" - } - ] - }, - { - "description": "PSTAKE Liquid-Staked DV4TNT", - "denom_units": [ - { - "denom": "stk/adv4tnt", - "exponent": 0, - "aliases": [] - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "pryzmtestnet", - "assets": [ - { - "description": "The native token of PRYZM", - "denom_units": [ - { - "denom": "upryzm", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "quasartestnet", - "assets": [ - { - "description": "The native token of Quasar", - "denom_units": [ - { - "denom": "uqsr", - "exponent": 0, - "aliases": [] - }, - { - "denom": "qsr", - "exponent": 6, - "aliases": [] - } - ], - "base": "uqsr", - "name": "Quasar", - "display": "qsr", - "symbol": "QSR" - }, - { - "denom_units": [ - { - "denom": "uayy", - "exponent": 0 - }, - { - "denom": "ayy", - "exponent": 6 - } - ], - "base": "uay", - "name": "AYY", - "display": "ayy", - "symbol": "AYY" - }, - { - "denom_units": [ - { - "denom": "uoro", - "exponent": 0 - }, - { - "denom": "oro", - "exponent": 6 - } - ], - "base": "oro", - "name": "oro", - "display": "oro", - "symbol": "ORO" - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "quicksilvertestnet", - "assets": [ - { - "description": "QCK - native token of Quicksilver", - "denom_units": [ - { - "denom": "uqck", - "exponent": 0, - "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" - }, - "coingecko_id": "quicksilver", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "qwoyntestnet", - "assets": [ - { - "description": "QWOYN is the native governance token for the Qwoyn Studios Platform", - "denom_units": [ - { - "denom": "uqwoyn", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "rsprovidertestnet", - "assets": [ - { - "description": "The native staking and governance token of the Replicated Security Testnet.", - "denom_units": [ - { - "denom": "uatom", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "sagatestnet", - "assets": [ - { - "description": "The native token of Saga Testnet", - "denom_units": [ - { - "denom": "utsaga", - "exponent": 0, - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "secretnetworktestnet", - "assets": [ - { - "description": "The native token of Secret Network", - "denom_units": [ - { - "denom": "uscrt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "secretnetworktestnet2", - "assets": [ - { - "description": "The native token of Secret Network", - "denom_units": [ - { - "denom": "uscrt", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "seidevnet3", - "assets": [ - { - "description": "The native staking and governance token of the Atlantic testnet version of Sei.", - "denom_units": [ - { - "denom": "usei", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seidevnet3/images/sei.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "seitestnet", - "assets": [ - { - "description": "The native staking and governance token of the Atlantic testnet version of Sei.", - "denom_units": [ - { - "denom": "usei", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet/images/sei.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "seitestnet2", - "assets": [ - { - "description": "The native staking and governance token of the Atlantic testnet version of Sei.", - "denom_units": [ - { - "denom": "usei", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "uself", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/selfchaindevnet/images/selfchain.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "sgetestnet", - "assets": [ - { - "description": "The SGE token is primarily a governance token for the SGE Network blockchain.", - "denom_units": [ - { - "denom": "usge", - "exponent": 0, - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "sixtestnet", - "assets": [ - { - "description": "The native staking token of the SIX Protocol.", - "denom_units": [ - { - "denom": "usix", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sixtestnet/images/six.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "sourcetestnet", - "assets": [ - { - "description": "The native token of SOURCE Chain", - "denom_units": [ - { - "denom": "usource", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "stargazetestnet", - "assets": [ - { - "description": "The native token of Stargaze", - "denom_units": [ - { - "denom": "ustars", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "stargaze", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "statesettestnet", - "assets": [ - { - "description": "The native token of the Stateset Network", - "denom_units": [ - { - "denom": "ustate", - "exponent": 0, - "aliases": [] - }, - { - "denom": "state", - "exponent": 6, - "aliases": [] - } - ], - "base": "ustate", - "name": "Stateset", - "display": "state", - "symbol": "STATE" - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "stridetestnet", - "assets": [ - { - "description": "The native token of Stride", - "denom_units": [ - { - "denom": "ustrd", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "temporaltestnet", - "assets": [ - { - "description": "The native staking and governance token of the testnet version of Temporal.", - "denom_units": [ - { - "denom": "utprl", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/temporaltestnet/images/temporal.png" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "uterpx", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "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": [ - { - "denom": "uthiolx", - "exponent": 0 - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "terra2testnet", - "assets": [ - { - "description": "The native staking token of Terra.", - "denom_units": [ - { - "denom": "uluna", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "ulastestnet", - "assets": [ - { - "description": "WEB3 twitter", - "denom_units": [ - { - "denom": "uulas", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "ulas", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "uniontestnet", - "assets": [ - { - "description": "The native token of union", - "denom_units": [ - { - "denom": "muno", - "exponent": 0, - "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" - }, - "coingecko_id": "unionlabs", - "keywords": [ - "staking" - ], - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "upticktestnet", - "assets": [ - { - "description": "The native token of Uptick", - "denom_units": [ - { - "denom": "auptick", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/upticktestnet/images/uptick.png" - } - ] - } - ] - }, - { - "$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": [ - { - "denom": "avce", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "wavehashtestnet", - "assets": [ - { - "description": "WaveHash A Permissioned Blockchain", - "denom_units": [ - { - "denom": "uwahax", - "exponent": 0 - }, - { - "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" - }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/wavehashtestnet/images/WaveHash.png" - } - ] - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "xiontestnet", - "assets": [ - { - "description": "The native staking token of the Xion network.", - "denom_units": [ - { - "denom": "uxion", - "exponent": 0, - "aliases": [ - "microxion" - ] - }, - { - "denom": "mxion", - "exponent": 3, - "aliases": [ - "millixion" - ] - }, - { - "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" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png" - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", - "exponent": 0, - "aliases": [ - "uaxl" - ] - }, - { - "denom": "axl", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-5", - "path": "transfer/channel-5/uaxl" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "axelartestnet", - "base_denom": "uaxl" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", - "exponent": 0, - "aliases": [ - "uosmo" - ] - }, - { - "denom": "osmo", - "exponent": 6 - } - ], - "type_asset": "ics20", - "base": "ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B", - "name": "Osmosis OSMO Token", - "display": "osmo", - "symbol": "OSMO", - "traces": [ - { - "type": "ibc", - "counterparty": { - "chain_name": "osmosistestnet", - "base_denom": "uosmo", - "channel_id": "channel-1299" - }, - "chain": { - "channel_id": "channel-8", - "path": "transfer/channel-8/uosmo" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "osmosistestnet", - "base_denom": "uosmo" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - } - }, - { - "denom_units": [ - { - "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", - "exponent": 0, - "aliases": [ - "uusdc" - ] - }, - { - "denom": "usdc", - "exponent": 6 - } - ], - "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" - }, - "chain": { - "channel_id": "channel-9", - "path": "transfer/channel-9/uusdc" - } - } - ], - "images": [ - { - "image_sync": { - "chain_name": "nobletestnet", - "base_denom": "uusdc" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - } - ] - }, - { - "$schema": "../../assetlist.schema.json", - "chain_name": "zetachaintestnet", - "assets": [ - { - "description": "The native token of ZetaChain", - "denom_units": [ - { - "denom": "azeta", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "tgrade", - "assets": [ - { - "description": "The native token of Tgrade", - "denom_units": [ - { - "denom": "utgd", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "umee", - "assets": [ - { - "description": "The native token of Umee", - "denom_units": [ - { - "denom": "uumee", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "unification", - "assets": [ - { - "description": "Staking and governance coin for the Unification Blockchain", - "denom_units": [ - { - "denom": "nund", - "exponent": 0 - }, - { - "denom": "FUND", - "exponent": 9 - } - ], - "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" - } - ], - "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" - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "ununifi", - "assets": [ - { - "description": "The governance token of UnUniFi protocol.", - "denom_units": [ - { - "denom": "uguu", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "uptick", - "assets": [ - { - "description": "The native token of Uptick", - "denom_units": [ - { - "denom": "auptick", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "vidulum", - "assets": [ - { - "description": "The native token of Vidulum", - "denom_units": [ - { - "denom": "uvdl", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - }, - { - "$schema": "../assetlist.schema.json", - "chain_name": "xpla", - "assets": [ - { - "description": "The native staking token of XPLA.", - "denom_units": [ - { - "denom": "axpla", - "exponent": 0 - }, - { - "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" - }, - "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" - } - ] - } - ] - } -]; -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 deleted file mode 100644 index 8ade119eb..000000000 --- a/packages/chain-registry/src/chains.ts +++ /dev/null @@ -1,30584 +0,0 @@ -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": { - "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.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://8ball-rpc.genznodes.dev/", - "provider": "genznodes" - } - ], - "rest": [ - { - "address": "https://rest.8ball.info", - "provider": "8ball" - }, - { - "address": "https://api.8ball.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://8ball-api.genznodes.dev/", - "provider": "genznodes" - }, - { - "address": "https://api-8ball.nodine.id/", - "provider": "Nodine.ID" - } - ], - "grpc": [ - { - "address": "grpc.8ball.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "8ball-grpc.genznodes.dev:31090", - "provider": "genznodes" - }, - { - "address": "https://grpc.8ball.nodexcapital.com:443", - "provider": "NodeX Validator" - } - ] - }, - "explorers": [ - { - "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": "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.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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "aacre" - } - ] - }, - "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": [ - { - "address": "https://rpc.acre.nodestake.top", - "provider": "nodestake" - }, - { - "address": "https://rpc-acre.synergynodes.com", - "provider": "Synergy Nodes" - }, - { - "address": "https://acrechain-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc.acre.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://mainnet-acre-rpc.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://acred-rpc.staketab.org:443", - "provider": "Staketab" - } - ], - "rest": [ - { - "address": "https://lcd-acre.synergynodes.com", - "provider": "Synergy Nodes" - }, - { - "address": "https://acrechain-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rest.acre.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://mainnet-acre-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://acred-rest.staketab.org", - "provider": "Staketab" - } - ], - "grpc": [ - { - "address": "grpc.acre.nodestake.top:443", - "provider": "Nodestake" - }, - { - "address": "acrechain-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "acre-grpc.genznodes.dev:27090", - "provider": "genznodes" - }, - { - "address": "services.staketab.com:9008", - "provider": "Staketab" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://jsonrpc-acre.d-stake.xyz", - "provider": "D-stake" - }, - { - "address": "https://rpc2-acre.synergynodes.com", - "provider": "Synergy Nodes" - }, - { - "address": "https://jsonrpc.acre.nodestake.top", - "provider": "Nodestake" - }, - { - "address": "https://acre-rpc-evm.genznodes.dev/", - "provider": "genznodes" - }, - { - "address": "https://evm-acre.sr20de.xyz/", - "provider": "Sr20de" - }, - { - "address": "https://evm.acrescan.com/", - "provider": "Anonstake" - }, - { - "address": "https://json-rpc.acre.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://mainnet-acre-evm.konsortech.xyz", - "provider": "KonsorTech" - } - ] - }, - "explorers": [ - { - "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://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://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}" - } - ], - "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" - } - ] - }, - { - "$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": "uist", - "low_gas_price": 0.0034, - "average_gas_price": 0.007, - "high_gas_price": 0.02 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "ubld" - } - ] - }, - "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" - }, - "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://agoric-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc.agoric.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://agoric.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://agoric-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc-agoric-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://agoric-rpc.0base.dev", - "provider": "0base.vc" - }, - { - "address": "https://agoric-rpc.stakeangle.com", - "provider": "StakeAngle" - }, - { - "address": "https://agoric-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc.agoric.stakewith.us", - "provider": "StakeWithUs" - }, - { - "address": "https://rpc-agoric-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://agoric-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://rpc.agoric.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://main.api.agoric.net:443" - }, - { - "address": "https://api.agoric.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://agoric-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://agoric.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://agoric-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://api-agoric-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://agoric-rest.0base.dev", - "provider": "0base.vc" - }, - { - "address": "https://agoric-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://api.agoric.stakewith.us", - "provider": "StakeWithUs" - }, - { - "address": "https://api-agoric-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://agoric-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://lcd.agoric.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "grpc.agoric.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "agoric-grpc.polkachu.com:14490", - "provider": "Polkachu" - }, - { - "address": "agoric-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "agoric.grpc.kjnodes.com:12790", - "provider": "kjnodes" - }, - { - "address": "grpc-agoric-01.stakeflow.io:2202", - "provider": "Stakeflow" - }, - { - "address": "agoric.mellifera.network:9090", - "provider": "MELLIFERA" - }, - { - "address": "agoric-grpc.w3coins.io:14490", - "provider": "w3coins" - }, - { - "address": "https://grpc.agoric.stakewith.us", - "provider": "StakeWithUs" - }, - { - "address": "grpc-agoric-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "agoric-grpc.stakeandrelax.net:14490", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://grpc.agoric.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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": "Stakeflow", - "url": "https://stakeflow.io/agoric", - "account_page": "https://stakeflow.io/agoric/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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.", - "apis": { - "evm-http-jsonrpc": [ - { - "address": "https://eth-dataseed.aioz.network", - "provider": "AIOZ Network" - } - ], - "rpc": [ - { - "address": "https://rpc-dataseed.aioz.network:443", - "provider": "AIOZ Network" - } - ], - "rest": [ - { - "address": "https://lcd-dataseed.aioz.network", - "provider": "AIOZ Network" - } - ], - "grpc": [ - { - "address": "grpc-dataseed.aioz.network:443", - "provider": "AIOZ Network" - } - ] - }, - "explorers": [ - { - "kind": "aioz", - "url": "https://explorer.aioz.network", - "tx_page": "https://explorer.aioz.network/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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.ecostake.com:443", - "provider": "ecostake" - }, - { - "address": "https://akash-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes" - }, - { - "address": "https://akash-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-akash.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://rpc-akash-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "http://akash.c29r3.xyz:80/rpc", - "provider": "c29r3" - }, - { - "address": "https://akash-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://akash-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://rpc-akash-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://akash-mainnet-rpc.cosmonautstakes.com:443", - "provider": "Cosmonaut Stakes" - }, - { - "address": "https://akash-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://akash-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://akash-rpc.validatornode.com", - "provider": "ValidatorNode" - }, - { - "address": "https://rpc-akash.whispernode.com:443", - "provider": "WhisperNode 🤐" - } - ], - "rest": [ - { - "address": "https://api.akash.forbole.com:443", - "provider": "forbole" - }, - { - "address": "https://rest-akash.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://akash-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes" - }, - { - "address": "https://akash-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://api-akash.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://api-akash-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://akash.c29r3.xyz:443/api", - "provider": "c29r3" - }, - { - "address": "https://akash-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://akash-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://api-akash-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://akash-mainnet-rest.cosmonautstakes.com:443", - "provider": "Cosmonaut Stakes" - }, - { - "address": "https://akash-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://akash-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://akash-api.validatornode.com", - "provider": "ValidatorNode" - }, - { - "address": "https://lcd-akash.whispernode.com:443", - "provider": "WhisperNode 🤐" - } - ], - "grpc": [ - { - "address": "grpc-akash-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "akash-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "akash-grpc.polkachu.com:12890", - "provider": "Polkachu" - }, - { - "address": "akash-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-akash.cosmos-spaces.cloud:1110", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc-akash-01.stakeflow.io:1502", - "provider": "Stakeflow" - }, - { - "address": "akash-grpc.w3coins.io:12890", - "provider": "w3coins" - }, - { - "address": "akash-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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": "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": "ValidatorNode", - "url": "https://explorer.validatornode.com/akash-network", - "tx_page": "https://explorer.validatornode.com/akash-network/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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" - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "uandr" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.andromeda-1.andromeda.aviaone.com", - "provider": "AVIAONE" - }, - { - "address": "https://rpc-andromeda.nodeist.net", - "provider": "nodeist" - }, - { - "address": "https://andromeda.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://andromeda.rpc.nodex.one", - "provider": "nodex" - }, - { - "address": "https://andro.rpc.m.stavr.tech/", - "provider": "🔥STAVR🔥" - }, - { - "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.stakerhouse.com:443", - "provider": "StakerHouse" - }, - { - "address": "https://andromeda-rpc.highstakes.ch:26657", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://andromeda-rpc.genznodes.dev", - "provider": "genznodes" - } - ], - "rest": [ - { - "address": "https://api.andromeda-1.andromeda.aviaone.com/", - "provider": "AVIAONE" - }, - { - "address": "https://api-andromeda.nodeist.net", - "provider": "nodeist" - }, - { - "address": "https://andromeda.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://andromeda.api.nodex.one", - "provider": "nodex" - }, - { - "address": "https://andro.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://andromeda-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://andromeda-api.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "https://andromeda-rest.stakerhouse.com:443", - "provider": "StakerHouse" - }, - { - "address": "https://andromeda-api.highstakes.ch:1317", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://andromeda-api.genznodes.dev", - "provider": "genznodes" - } - ], - "grpc": [ - { - "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.nodeist.net:443", - "provider": "nodeist" - }, - { - "address": "andromeda.grpc.kjnodes.com:443", - "provider": "kjnodes" - }, - { - "address": "https://andromeda.grpc.nodex.one:443", - "provider": "nodex" - }, - { - "address": "http://andromedad.grpc.t.stavr.tech:132", - "provider": "🔥STAVR🔥" - }, - { - "address": "andromeda-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "andromeda-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - }, - { - "address": "andromeda-grpc.genznodes.dev:27090", - "provider": "genznodes" - } - ] - }, - "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": "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}" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" - } - ] - }, - { - "$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": { - "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-archway.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://archway-mainnet-archive.allthatnode.com:26657", - "provider": "All That Node" - }, - { - "address": "https://m-archway.rpc.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://rpc-1.archway.nodes.guru", - "provider": "Nodes.Guru" - }, - { - "address": "https://archway.rpc.silknodes.io/", - "provider": "Silk Nodes" - }, - { - "address": "https://archway.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rpc-archway.cryptech.com.ua", - "provider": "cryptech" - }, - { - "address": "https://rpc.archway.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc-archway.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://rpc-archway.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://archway-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://m-archway.rpc.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://archway-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-archway.mms.team", - "provider": "MMS" - }, - { - "address": "https://rpc-archway.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://rpc.archway.lgns.net", - "provider": "Luganodes" - }, - { - "address": "https://archway-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://archway-rpc.0base.dev", - "provider": "0base.vc" - }, - { - "address": "https://archway-mainnet.rpc.l0vd.com", - "provider": "L0vd.com" - }, - { - "address": "https://archway-rpc.openbitlab.com", - "provider": "openbitlab" - }, - { - "address": "https://rpc-archway.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://rpc-archway.mainnet.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "https://rpc.archway.stakeup.tech", - "provider": "StakeUp" - }, - { - "address": "https://archway.api.trivium.network:26657", - "provider": "TriviumX | Architech" - }, - { - "address": "https://archway-rpc.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://archway-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://rpc.archway.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://api.mainnet.archway.io", - "provider": "Archway Foundation" - }, - { - "address": "https://archway-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://m-archway.api.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://api-1.archway.nodes.guru", - "provider": "Nodes.Guru" - }, - { - "address": "https://archway.api.silknodes.io/", - "provider": "Silk Nodes" - }, - { - "address": "https://archway.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://api-archway.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://api-archway.cryptech.com.ua", - "provider": "cryptech" - }, - { - "address": "https://api.archway.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rest-archway.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://lcd-archway.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://archway-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-archway.mms.team", - "provider": "MMS" - }, - { - "address": "https://api-archway.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://rest.archway.lgns.net", - "provider": "Luganodes" - }, - { - "address": "https://archway-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://archway-rest.0base.dev", - "provider": "0base.vc" - }, - { - "address": "https://archway-mainnet.api.l0vd.com", - "provider": "L0vd.com" - }, - { - "address": "https://archway-api.openbitlab.com", - "provider": "openbitlab" - }, - { - "address": "https://api-archway.mainnet.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "https://api.archway.stakeup.tech", - "provider": "StakeUp" - }, - { - "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-api.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://archway-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://lcd.archway.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "grpc.mainnet.archway.io:443", - "provider": "Archway Foundation" - }, - { - "address": "grpc-1.archway.nodes.guru:10690", - "provider": "Nodes.Guru" - }, - { - "address": "archway.grpc.kjnodes.com:15690", - "provider": "kjnodes" - }, - { - "address": "https://grpc-archway.cryptech.com.ua", - "provider": "cryptech" - }, - { - "address": "https://grpc.archway.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "grpc-archway.theamsolutions.info:443", - "provider": "AM Solutions" - }, - { - "address": "archway-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "archway.grpc.nodersteam.com:9090", - "provider": "[NODERS]TEAM" - }, - { - "address": "grpc-archway.mms.team:443", - "provider": "MMS" - }, - { - "address": "grpc-archway.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "grpc.archway.lgns.net:443", - "provider": "Luganodes" - }, - { - "address": "archway-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "archway-grpc.huginn.tech:4090", - "provider": "Huginn" - }, - { - "address": "archway-mainnet.grpc.l0vd.com:80", - "provider": "L0vd.com" - }, - { - "address": "archway-grpc.openbitlab.com:443", - "provider": "openbitlab" - }, - { - "address": "grpc-archway.mainnet.validatrium.club:27490", - "provider": "Validatrium" - }, - { - "address": "grpc.archway.stakeup.tech:443", - "provider": "StakeUp" - }, - { - "address": "grpc-archway.cosmos-spaces.cloud:4820", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc-archway-mainnet.testnet-pride.com:9096", - "provider": "TestnetPride" - }, - { - "address": "archway.api.trivium.network:9090", - "provider": "TriviumX | Architech" - }, - { - "address": "archway-grpc.tienthuattoan.ventures:9290", - "provider": "TienThuatToan" - }, - { - "address": "archway-grpc.stakeandrelax.net:11590", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://grpc.archway.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀", - "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": "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": "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": "Big Dipper", - "url": "https://bigdipper.live/archway", - "tx_page": "https://bigdipper.live/archway/transactions/${txHash}", - "account_page": "https://bigdipper.live/archway/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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": [ - { - "address": "https://asc-dataseed.arkhadian.com/", - "provider": "arkhnetwork" - }, - { - "address": "https://rpc.arkh.nodestake.top", - "provider": "NodeStake" - } - ], - "rest": [ - { - "address": "https://asc-blockchain-api.arkhadian.com/", - "provider": "arkhnetwork" - }, - { - "address": "https://api.arkh.nodestake.top", - "provider": "NodeStake" - } - ], - "grpc": [ - { - "address": "grpc.arkh.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://grpc.arkh.nodexcapital.com:443", - "provider": "NodeX Validator" - } - ] - }, - "explorers": [ - { - "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": "NODEXPLORER", - "url": "https://explorer.nodexcapital.com/arkhadian", - "tx_page": "https://explorer.nodexcapital.com/arkhadian/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "umntl" - } - ] - }, - "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" - }, - "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.blockpower.capital", - "provider": "Blockpower" - }, - { - "address": "https://rpc-assetmantle.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://assetmantle-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc.assetmantle.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc-assetmantle-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc-assetmantle.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://rpc.mantle.paranorm.pro:443", - "provider": "paranorm" - }, - { - "address": "https://assetmantle-rpc.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://assetmantle-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://rest.assetmantle.one", - "provider": "AssetMantle" - }, - { - "address": "https://rest-assetmantle.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://api.assetmantle.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://api-assetmantle-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://assetmantle-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://lcd-assetmantle.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api.mantle.paranorm.pro:443", - "provider": "paranorm" - }, - { - "address": "https://assetmantle-rest.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://assetmantle-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc.assetmantle.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "grpc-assetmantle-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "assetmantle-grpc.polkachu.com:14690", - "provider": "Polkachu" - }, - { - "address": "assetmantle-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - }, - { - "address": "assetmantle-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "uaura" - } - ], - "lock_duration": { - "time": "1209600s" - } - }, - "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" - }, - "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" - } - ], - "rest": [ - { - "address": "https://lcd.aura.network/", - "provider": "Aura Network Foundation" - }, - { - "address": "https://m-aura.api.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://aura.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api.aura.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://aura-api.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://aura.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://mainnet-aura-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://aura-api.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://aura-api.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://aura-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://api.aura.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://api.aura.silentvalidator.com", - "provider": "silent" - }, - { - "address": "https://aura-api.sergo.dev", - "provider": "SerGo" - }, - { - "address": "https://api-aura.mms.team", - "provider": "MMS" - }, - { - "address": "https://aura-api.stake-town.com", - "provider": "StakeTown" - } - ], - "grpc": [ - { - "address": "https://grpc.aura.network", - "provider": "Aura Network Foundation" - }, - { - "address": "auranetwork-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://grpc.aura.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "aura.mainnet.grpc.nodersteam.com:9100/", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://aura-grpc.ramuchi.tech:15000", - "provider": "ramuchi.tech" - }, - { - "address": "http://aura.grpc.m.stavr.tech:9901", - "provider": "🔥STAVR🔥" - }, - { - "address": "aura.grpc.kjnodes.com:11790", - "provider": "kjnodes" - }, - { - "address": "aura-grpc.tienthuattoan.ventures:9090", - "provider": "TienThuatToan" - }, - { - "address": "aura-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "services.staketab.com:9021", - "provider": "Staketab" - }, - { - "address": "grpc.aura.silentvalidator.com:443", - "provider": "silent" - }, - { - "address": "grpc-aura.mms.team:443", - "provider": "MMS" - }, - { - "address": "aura-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "grpc.aura.safeblock.space:9090", - "provider": "Safe Block" - } - ] - }, - "explorers": [ - { - "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": "🔥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": "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": "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": [ - { - "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": [ - { - "denom": "uaxl" - } - ] - }, - "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" - }, - "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.quantnode.tech:9091", - "provider": "Quantnode" - } - ], - "rpc": [ - { - "address": "https://rpc-axelar.imperator.co:443", - "provider": "Imperator.co" - }, - { - "address": "https://axelar-rpc.quickapi.com:443", - "provider": "chainlayer" - }, - { - "address": "https://rpc-axelar.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://axelar-rpc.pops.one:443", - "provider": "p-ops" - }, - { - "address": "https://axelar-rpc.qubelabs.io:443", - "provider": "Qubelabs" - }, - { - "address": "https://rpc-1.axelar.nodes.guru:443", - "provider": "nodes.guru" - }, - { - "address": "https://rpc-axelar-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://axelar-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://axelar.rpc.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://rpc.axelar.bh.rocks", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://axelar-rpc.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "https://rpc-axelar.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://axelar-rpc.quantnode.tech/", - "provider": "QuantNode" - }, - { - "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.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://rpc-axelar-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://axelar-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://axelar-rpc.w3coins.io", - "provider": "w3coins" - } - ], - "rest": [ - { - "address": "https://lcd-axelar.imperator.co:443", - "provider": "Imperator.co" - }, - { - "address": "https://axelar-lcd.quickapi.com:443", - "provider": "chainlayer" - }, - { - "address": "https://api-axelar.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://axelar-lcd.qubelabs.io:443", - "provider": "Qubelabs" - }, - { - "address": "https://api-1.axelar.nodes.guru:443", - "provider": "nodes.guru" - }, - { - "address": "https://api-axelar-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://axelar-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://axelar.rest.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://api.axelar.bh.rocks", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://axelar-api.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "https://lcd-axelar.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://axelar-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://axelar-lcd.quantnode.tech/", - "provider": "QuantNode" - }, - { - "address": "https://axelar-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://api-axelar-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://axelar-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://axelar-api.w3coins.io", - "provider": "w3coins" - } - ], - "grpc": [ - { - "address": "axelar-grpc.qubelabs.io:9092", - "provider": "Qubelabs" - }, - { - "address": "axelar-grpc.quantnode.tech:9090", - "provider": "Quantnode" - }, - { - "address": "services.staketab.com:9080", - "provider": "Staketab" - }, - { - "address": "grpc-axelar.cosmos-spaces.cloud:1590", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc-axelar-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "axelar-grpc.polkachu.com:15190", - "provider": "Polkachu" - }, - { - "address": "axelar.grpc.stakin-nodes.com:443", - "provider": "Stakin" - }, - { - "address": "axelar-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-axelar-01.stakeflow.io:1602", - "provider": "Stakeflow" - }, - { - "address": "axelar-grpc.w3coins.io:15190", - "provider": "w3coins" - }, - { - "address": "grpc-axelar.whispernode.com:443", - "provider": "WhisperNode 🤐" - } - ] - }, - "explorers": [ - { - "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": "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": "Stakeflow", - "url": "https://stakeflow.io/axelar", - "account_page": "https://stakeflow.io/axelar/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "uband" - } - ] - }, - "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" - }, - "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": "https://rpc-bandchain-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://band-rpc.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://bandchain-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://band.rpc.m.stavr.tech:443", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-band-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://rpc-band.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://band-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://bandprotocol-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://band-rpc.stake-town.com", - "provider": "StakeTown" - } - ], - "rest": [ - { - "address": "https://laozi1.bandchain.org/api", - "provider": "bandprotocol" - }, - { - "address": "https://api-bandchain-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://band-api.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://api-band.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://band.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://bandchain-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://api-band-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://band-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://bandprotocol-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://band-api.stake-town.com", - "provider": "StakeTown" - } - ], - "grpc": [ - { - "address": "grpc-bandchain-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "bandchain-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-band.cosmos-spaces.cloud:2240", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc-band-01.stakeflow.io:2502", - "provider": "Stakeflow" - }, - { - "address": "band-grpc.w3coins.io:22990", - "provider": "w3coins" - }, - { - "address": "http://band.grpc.m.stavr.tech:7803", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://grpc-band.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "band.grpc.kjnodes.com:443", - "provider": "kjnodes" - }, - { - "address": "band-grpc.stake-town.com:443", - "provider": "StakeTown" - } - ] - }, - "explorers": [ - { - "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": "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": "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": "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": "kjnodes Explorer", - "url": "https://explorer.kjnodes.com/band", - "tx_page": "https://explorer.kjnodes.com/band/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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-1.getbze.com", - "provider": "AlphaTeam" - }, - { - "address": "https://rpc-2.getbze.com", - "provider": "AlphaTeam" - } - ], - "rest": [ - { - "address": "https://rest.getbze.com", - "provider": "AlphaTeam" - }, - { - "address": "https://rest-1.getbze.com", - "provider": "AlphaTeam" - }, - { - "address": "https://rest-2.getbze.com", - "provider": "AlphaTeam" - } - ], - "grpc": [ - { - "address": "grpc.getbze.com:9099", - "provider": "AlphaTeam" - }, - { - "address": "grpc-1.getbze.com:9099", - "provider": "AlphaTeam" - }, - { - "address": "grpc-2.getbze.com:9099", - "provider": "AlphaTeam" - } - ] - }, - "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://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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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": "http://bcna.paranorm.pro/", - "provider": "ParanormalBrothers" - }, - { - "address": "https://bcna-rpc.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://bitcanna-rpc.panthea.eu", - "provider": "Panthea EU" - }, - { - "address": "https://rpc.bitcanna.sgtstake.com/", - "provider": "SGTstake" - }, - { - "address": "https://bitcanna.rpc.m.anode.team", - "provider": "AlxVoy ⚡ ANODE.TEAM" - }, - { - "address": "http://bitcanna.rpc.m.stavr.tech:21327", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-bcna.kjinc.io/", - "provider": "KJINC.io" - }, - { - "address": "https://mainnet-bitcanna-rpc.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://bitcanna.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://bitcanna-rpc.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://rpc.bitcanna-1.bitcanna.aviaone.com", - "provider": "AVIAONE 🟢" - }, - { - "address": "https://rpc.bitcanna-mainnet.hexnodes.co", - "provider": "Hexnodes" - }, - { - "address": "http://rpc.bitcanna.citizencosmos.space/", - "provider": "Citizen Web3" - }, - { - "address": "https://bitcanna-mainnet.rpc.l0vd.com/", - "provider": "L0vd.com" - }, - { - "address": "https://rpc-bitcanna-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://bitcanna-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc.bitcanna.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://bitcanna.nodejumper.io:443", - "provider": "NODEJUMPER" - }, - { - "address": "https://rpc.bitcanna.indonode.net/", - "provider": "Indonode" - }, - { - "address": "https://rpc-bitcanna.mms.team:443", - "provider": "MMS" - }, - { - "address": "http://65.108.142.81:26683", - "provider": "Stakely" - }, - { - "address": "http://93.115.25.15:26657", - "provider": "Stakely" - }, - { - "address": "https://bitcanna-rpc.validatornode.com", - "provider": "ValidatorNode" - }, - { - "address": "https://bcna.rpc.arcturian.tech/", - "provider": "Arcturian Tech" - }, - { - "address": "https://bitcanna-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc.bitcanna.io:443", - "provider": "bitcanna" - }, - { - "address": "bitcanna-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "bitcanna.grpc.m.stavr.tech:9081", - "provider": "🔥STAVR🔥" - }, - { - "address": "grpc.bitcanna-mainnet.hexnodes.co:27090", - "provider": "HexNodes" - }, - { - "address": "grpc.bitcanna-1.bitcanna.aviaone.com:9092", - "provider": "AVIAONE 🟢" - }, - { - "address": "bitcanna-mainnet.grpc.l0vd.com:80", - "provider": "L0vd.com" - }, - { - "address": "grpc-bitcanna-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "bitcanna.grpc.kjnodes.com:14290", - "provider": "kjnodes" - }, - { - "address": "bitcanna-grpc.polkachu.com:13090", - "provider": "Polkachu" - }, - { - "address": "grpc-bitcanna.mms.team:443", - "provider": "MMS" - }, - { - "address": "bitcanna.grpc.m.anode.team:443", - "provider": "AlxVoy ⚡ ANODE.TEAM" - }, - { - "address": "bitcanna-grpc.panthea.eu:16710", - "provider": "Panthea EU" - }, - { - "address": "https://grpc.bitcanna.indonode.net:11090", - "provider": "Indonode" - }, - { - "address": "bitcanna-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "grpc.bitcanna.safeblock.space:9090", - "provider": "Safe Block" - } - ], - "rest": [ - { - "address": "https://lcd.bitcanna.io", - "provider": "bitcanna" - }, - { - "address": "https://bitcanna-api.panthea.eu", - "provider": "Panthea EU" - }, - { - "address": "https://api.bitcanna.sgtstake.com/", - "provider": "SGTstake" - }, - { - "address": "https://bitcanna.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://bcna-api.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://bitcanna.api.m.anode.team", - "provider": "AlxVoy ⚡ ANODE.TEAM" - }, - { - "address": "https://api-bcna.kjinc.io/", - "provider": "KJINC.io" - }, - { - "address": "https://mainnet-bitcanna-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://bitcanna.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://bitcanna-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://bitcanna-api.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://api.bitcanna-1.bitcanna.aviaone.com/", - "provider": "AVIAONE 🟢" - }, - { - "address": "https://lcd.bitcanna-mainnet.hexnodes.co", - "provider": "Hexnodes" - }, - { - "address": "https://bitcanna-mainnet.api.l0vd.com", - "provider": "L0vd.com" - }, - { - "address": "https://api-bitcanna-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://bitcanna-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://api.bitcanna.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://bitcanna.nodejumper.io:1317", - "provider": "NODEJUMPER" - }, - { - "address": "https://api-bitcanna.mms.team:443", - "provider": "MMS" - }, - { - "address": "http://65.108.142.81:1325", - "provider": "Stakely" - }, - { - "address": "http://93.115.25.15:1317", - "provider": "Stakely" - }, - { - "address": "https://bitcanna-api.validatornode.com", - "provider": "ValidatorNode" - }, - { - "address": "https://bcna.api.arcturian.tech/", - "provider": "Arcturian Tech" - }, - { - "address": "https://api.bitcanna.indonode.net/", - "provider": "Indonode" - }, - { - "address": "https://bitcanna-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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": "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "ubtsg", - "fixed_min_gas_price": 0, - "low_gas_price": 3, - "average_gas_price": 10, - "high_gas_price": 20 - } - ] - }, - "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.", - "apis": { - "rpc": [ - { - "address": "https://rpc-bitsong-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc.explorebitsong.com", - "provider": "stake.systems" - }, - { - "address": "https://bitsong-rpc.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "https://rpc.bitsong.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://rpc.bitsong.quokkastake.io", - "provider": "🐹 Quokka Stake" - }, - { - "address": "https://bitsong-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-bitsong.starsquid.io", - "provider": "Starsquid" - }, - { - "address": "https://rpc-bitsong.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "http://bitsong.statesync.nodersteam.com:11657", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://rpc.bitsong.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://bitsong.tdrsys.com:2053", - "provider": "TdrSys" - } - ], - "rest": [ - { - "address": "https://api-bitsong-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://lcd.explorebitsong.com/", - "provider": "stake.systems" - }, - { - "address": "https://bitsong-api.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "https://api.bitsong.quokkastake.io", - "provider": "🐹 Quokka Stake" - }, - { - "address": "http://bitsong.api.nodersteam.com:11017", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://bitsong-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-bitsong.starsquid.io", - "provider": "Starsquid" - }, - { - "address": "https://rest-bitsong.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://api.bitsong.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://bitsong.tdrsys.com", - "provider": "TdrSys" - } - ], - "grpc": [ - { - "address": "grpc-bitsong-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "bitsong-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "bitsong.grpc.nodersteam.com:9111/", - "provider": "[NODERS]TEAM" - }, - { - "address": "grpc.bitsong.safeblock.space:9090", - "provider": "Safe Block" - } - ] - }, - "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": "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": "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": "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": [ - { - "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": { - "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://b.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" - } - ], - "rest": [ - { - "address": "https://a.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://bluzelle-api.genznodes.dev/", - "provider": "genznodes" - } - ], - "grpc": [ - { - "address": "a.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": "bluzelle-grpc.genznodes.dev:34090", - "provider": "genznodes" - }, - { - "address": "https://grpc-curium.nodine.id:443", - "provider": "Nodine.ID" - } - ] - }, - "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": "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": "Nodine.ID", - "url": "https://explorer.co.id/bluzelle", - "tx_page": "https://explorer.co.id/bluzelle/transaction/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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.cyber.posthuman.digital", - "provider": "posthuman" - }, - { - "address": "https://rpc-cyber-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc.cyber.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://lcd.bostrom.cybernode.ai", - "provider": "cybercongress" - }, - { - "address": "https://lcd.cyber.posthuman.digital", - "provider": "posthuman" - }, - { - "address": "https://api-cyber-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://lcd.cyber.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "grpc-cyber-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "https://grpc.cyber.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "explorers": [ - { - "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": "atomscan", - "url": "https://atomscan.com/bostrom", - "tx_page": "https://atomscan.com/bostrom/transactions/${txHash}", - "account_page": "https://atomscan.com/bostrom/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "acanto" - } - ] - }, - "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": [ - { - "address": "https://rpc.canto.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://canto-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc.canto.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://canto.gravitychain.io:26657", - "provider": "Althea" - }, - { - "address": "https://rpc-canto.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://canto-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ], - "rest": [ - { - "address": "https://api.canto.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://canto-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://api.canto.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://api-canto.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://canto-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ], - "grpc": [ - { - "address": "canto-grpc.polkachu.com:15590", - "provider": "Polkachu" - }, - { - "address": "grpc.canto.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://grpc.canto.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "grpc-canto.cosmos-spaces.cloud:2280", - "provider": "Cosmos Spaces" - }, - { - "address": "https://canto.gravitychain.io:9090", - "provider": "Althea" - }, - { - "address": "canto-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://canto.neobase.one/", - "provider": "NeoBase" - }, - { - "address": "https://canto.evm.chandrastation.com", - "provider": "Chandra Station" - }, - { - "address": "https://canto.slingshot.finance", - "provider": "Slingshot" - }, - { - "address": "https://jsonrpc.canto.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://evm-rpc.canto.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://canto.gravitychain.io:8545", - "provider": "althea" - } - ] - }, - "explorers": [ - { - "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": "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": "TC Network", - "url": "https://explorer.tcnetwork.io/canto", - "tx_page": "https://explorer.tcnetwork.io/canto/transaction/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": "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": "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": "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.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/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/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/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/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/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": "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": "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": {}, - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://tm-api.carbon.network", - "provider": "switcheo-labs" - }, - { - "address": "https://carbon-rpc.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://carbon-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc.carbon.blockhunters.org", - "provider": "BlockHunters" - } - ], - "rest": [ - { - "address": "https://api.carbon.network", - "provider": "switcheo-labs" - }, - { - "address": "https://carbon-api.lavenderfive.com", - "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" - } - ] - }, - "explorers": [ - { - "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": "atomscan", - "url": "https://atomscan.com/carbon", - "tx_page": "https://atomscan.com/carbon/transactions/${txHash}", - "account_page": "https://atomscan.com/carbon/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "utia" - } - ] - }, - "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" - }, - "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://celestia-rpc.mesa.newmetric.xyz", - "provider": "Newmetric" - }, - { - "address": "https://rpc.lunaroasis.net", - "provider": "Lunar Oasis" - }, - { - "address": "https://rpc.celestia.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://celestia-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-celestia-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://rpc-celestia.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "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.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://celestia.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://celestia-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-celestia.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://celestia-rpc.enigma-validator.com", - "provider": "Enigma" - }, - { - "address": "https://rpc-celestia.theamsolutions.info", - "provider": "AM Solutions" - } - ], - "rest": [ - { - "address": "https://public-celestia-lcd.numia.xyz", - "provider": "Numia" - }, - { - "address": "https://celestia-rest.mesa.newmetric.xyz", - "provider": "Newmetric" - }, - { - "address": "http://celestia.rpc.nodersteam.com:1617", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://api.lunaroasis.net", - "provider": "Lunar Oasis" - }, - { - "address": "https://api.celestia.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://celestia-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-celestia-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://api-celestia.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://celestia-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://celestia.rest.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://celestia.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://api-celestia.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://celestia-lcd.enigma-validator.com", - "provider": "Enigma" - }, - { - "address": "https://rest-celestia.theamsolutions.info", - "provider": "AM Solutions" - } - ], - "grpc": [ - { - "address": "https://grpc.celestia.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "celestia-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://celestia-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "celestia.grpc.nodersteam.com:9690", - "provider": "[NODERS]TEAM" - }, - { - "address": "grpc-celestia-01.stakeflow.io:15002", - "provider": "Stakeflow" - }, - { - "address": "grpc-celestia.cosmos-spaces.cloud:5190", - "provider": "Cosmos Spaces" - }, - { - "address": "celestia-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "celestia.grpc.stakin-nodes.com:443", - "provider": "Stakin" - }, - { - "address": "celestia.grpc.kjnodes.com:443", - "provider": "kjnodes" - }, - { - "address": "grpc-celestia.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "grpc-celestia.theamsolutions.info:443", - "provider": "AM Solutions" - } - ] - }, - "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": "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": "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": "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": [ - { - "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": {}, - "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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "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" - }, - "apis": { - "rpc": [], - "rest": [], - "grpc": [ - { - "address": "grpc-cerberus-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "cerberus-grpc.polkachu.com:13890", - "provider": "Polkachu" - } - ] - }, - "explorers": [ - { - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://chain4energy-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "http://c4e.rpc.m.stavr.tech:17097", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-c4e.d-stake.xyz", - "provider": "D-Stake" - }, - { - "address": "https://c4e.rpc.bccnodes.com", - "provider": "BccNodes" - }, - { - "address": "https://rpc-m.c4e.hexnodes.co", - "provider": "Hexnodes" - }, - { - "address": "https://rpc-c4e.takeshi.team", - "provider": "TAKESHI" - }, - { - "address": "https://rpc-c4e.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://rpc.cros-nest.com/chain4energy", - "provider": "Crosnest" - }, - { - "address": "https://rpc.c4e.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://c4e-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://rpc.c4e.silentvalidator.com", - "provider": "silent" - }, - { - "address": "http://rpc.c4e.stakeup.tech", - "provider": "StakeUp" - }, - { - "address": "https://chain4energy-rpc.stakeangle.com", - "provider": "StakeAngle" - }, - { - "address": "https://c4e-rpc.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://rpc-c4e.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://c4e.rpc.m.anode.team", - "provider": "AlxVoy ⚡ ANODE.TEAM" - }, - { - "address": "https://c4e-rpc.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "http://185.245.182.192:46657", - "provider": "Meerlabs" - }, - { - "address": "http://89.117.58.109:26657", - "provider": "medes" - }, - { - "address": "http://c4e.rpc.node75.org:26957", - "provider": "Pro-nodes75" - }, - { - "address": "https://rpc-c4e.stakerun.com:443", - "provider": "StakeRun" - }, - { - "address": "http://164.68.125.243:26657", - "provider": "Smt Network" - }, - { - "address": "https://c4e-rpc.antrixy.org/", - "provider": "Antrix Validators" - }, - { - "address": "https://c4e.doubletop.tech/", - "provider": "DOUBLETOP" - }, - { - "address": "https://c4e-rpc.kalia.network:443", - "provider": "Kalia Network" - }, - { - "address": "https://c4e.rpc.skynodejs.net", - "provider": "skynodejs" - }, - { - "address": "http://38.242.220.64:16657", - "provider": "mahof" - }, - { - "address": "http://209.182.239.169:46657", - "provider": "SECARD" - }, - { - "address": "https://rpc.c4e.validatus.com:443", - "provider": "Validatus" - } - ], - "rest": [ - { - "address": "https://lcd.c4e.io/", - "provider": "C4E" - }, - { - "address": "https://api.c4e.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://chain4energy-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://c4e.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api-m.c4e.hexnodes.co", - "provider": "Hexnodes" - }, - { - "address": "https://api-c4e.takeshi.team", - "provider": "TAKESHI" - }, - { - "address": "https://api-c4e.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://rest.cros-nest.com/chain4energy", - "provider": "Crosnest" - }, - { - "address": "https://api.c4e.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://c4e-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://api.c4e.silentvalidator.com", - "provider": "silent" - }, - { - "address": "http://api.c4e.stakeup.tech", - "provider": "StakeUp" - }, - { - "address": "http://chain4energy-rpc.stakeangle.com:1317", - "provider": "StakeAngle" - }, - { - "address": "https://c4e-api.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://api-c4e.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://c4e.api.m.anode.team", - "provider": "AlxVoy ⚡ ANODE.TEAM" - }, - { - "address": "https://c4e-api.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "http://c4e.api.node75.org:1397", - "provider": "Pro-nodes75" - }, - { - "address": "https://lcd-c4e.stakerun.com:443", - "provider": "StakeRun" - }, - { - "address": "http://164.68.125.243:1319", - "provider": "Smt Network" - }, - { - "address": "https://c4e-rest.antrixy.org/", - "provider": "Antrix Validators" - }, - { - "address": "https://c4e-api.kalia.network:443", - "provider": "Kalia Network" - }, - { - "address": "https://c4e.api.skynodejs.net", - "provider": "skynodejs" - }, - { - "address": "http://38.242.220.64:11317", - "provider": "mahof" - }, - { - "address": "http://209.182.239.169:1417", - "provider": "SECARD" - }, - { - "address": "https://api.c4e.validatus.com:443", - "provider": "Validatus" - } - ], - "grpc": [ - { - "address": "grpc.c4e.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "chain4energy-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "c4e.grpc.bccnodes.com:443", - "provider": "BccNodes" - }, - { - "address": "grpc-c4e.takeshi.team:443", - "provider": "TAKESHI" - }, - { - "address": "grpc-c4e.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "http://c4e.grpc.m.stavr.tech:7029", - "provider": "🔥STAVR🔥" - }, - { - "address": "c4e-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "grpc.c4e.silentvalidator.com:443", - "provider": "silent" - }, - { - "address": "http://chain4energy-rpc.stakeangle.com:1317", - "provider": "StakeAngle" - }, - { - "address": "c4e-grpc.genznodes.dev:52090", - "provider": "genznodes" - }, - { - "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.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "http://185.245.182.192:1318", - "provider": "Meerlabs" - }, - { - "address": "grpc-c4e.stakerun.com:1190", - "provider": "StakeRun" - }, - { - "address": "https://c4e-grpc.antrixy.org/", - "provider": "Antirx Validators" - }, - { - "address": "https://c4e.doubletop.tech:443", - "provider": "DOUBLETOP" - }, - { - "address": "c4e-grpc.kalia.network:3090", - "provider": "Kalia Network" - }, - { - "address": "https://c4e.grpc.skynodejs.net", - "provider": "skynodejs" - }, - { - "address": "http://38.242.220.64:19090", - "provider": "mahof" - }, - { - "address": "http://209.182.239.169:9190", - "provider": "SECARD" - }, - { - "address": "https://grpc.c4e.validatus.com:443", - "provider": "Validatus" - } - ] - }, - "explorers": [ - { - "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.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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 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": "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": "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": "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}" - } - ], - "images": [ - { - "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": { - "cosmos_sdk_version": "0.46.10" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.cheqd.net", - "provider": "cheqd" - }, - { - "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.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc-cheqd.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://cheqd-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc-cheqd.blockval.io", - "provider": "Blockval" - } - ], - "rest": [ - { - "address": "https://api.cheqd.net", - "provider": "cheqd" - }, - { - "address": "https://cheqd-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes" - }, - { - "address": "https://api-cheqd-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://cheqd-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://api.cheqd.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://lcd-cheqd.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api-cheqd.blockval.io", - "provider": "Blockval" - } - ], - "grpc": [ - { - "address": "grpc.cheqd.net:443", - "provider": "cheqd" - }, - { - "address": "cheqd-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "cheqd-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-cheqd-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "grpc.cheqd.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "grpc-cheqd.blockval.io:9290", - "provider": "Blockval" - } - ] - }, - "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": "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": "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://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" - }, - "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" - } - ] - }, - { - "$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": { - "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.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://chihuahua-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-chihuahua-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://chihuahua-rpc.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc.huahua.bh.rocks", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://chihuahua-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://rpc-chihuahua.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://chihuahua-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://chihuahua-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://api.chihuahua.wtf", - "provider": "Chihuahua" - }, - { - "address": "https://rest-chihuahua.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://api-chihuahua-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://chihuahua-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://chihuahua-api.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://chihuahua-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://api-chihuahua.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://chihuahua-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://chihuahua-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc-chihuahua-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "chihuahua-grpc.polkachu.com:12990", - "provider": "Polkachu" - }, - { - "address": "chihuahua-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc-chihuahua.cosmos-spaces.cloud:2290", - "provider": "Cosmos Spaces" - }, - { - "address": "chihuahua-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "chihuahua-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "explorers": [ - { - "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": "atomscan", - "url": "https://atomscan.com/chihuahua", - "tx_page": "https://atomscan.com/chihuahua/transactions/${txHash}", - "account_page": "https://atomscan.com/chihuahua/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "chimba" - } - ] - }, - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.mainnet.chimba.ooo", - "provider": "chimba" - } - ], - "rest": [ - { - "address": "https://mainnet.chimba.ooo", - "provider": "chimba" - } - ] - }, - "explorers": [ - { - "kind": "bigdipper", - "url": "https://explorer.chimba.ooo/", - "tx_page": "https://explorer.chimba.ooo/transactions/${txHash}" - } - ], - "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" - } - ], - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-chronic.zenchainlabs.io/", - "provider": "ZenChainLabs" - } - ], - "rest": [ - { - "address": "https://api-chronic.zenchainlabs.io/", - "provider": "ZenChainLabs" - } - ], - "grpc": [] - }, - "explorers": [ - { - "kind": "skynetexplorers", - "url": "https://www.skynetexplorers.com/chronic-token", - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "ucmdx" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "v0.47.5", - "cosmwasm_enabled": true, - "cosmwasm_version": "v0.41.0" - }, - "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": [ - { - "address": "https://rpc.comdex.one", - "provider": "comdex" - }, - { - "address": "https://comdex-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc.comdex.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://comdex-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-comdex.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://rpc-comdex.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://comdex-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://comdex-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://comdex-rpc.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://comdex-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://rpc-comdex-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://comdex-rpc.validatornode.com", - "provider": "ValidatorNode" - } - ], - "rest": [ - { - "address": "https://rest.comdex.one", - "provider": "comdex" - }, - { - "address": "https://api.comdex.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://comdex-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://comdex-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-comdex.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://comdex-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://lcd-comdex.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://comdex-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://comdex-rest.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://comdex-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://api-comdex-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://comdex-api.validatornode.com", - "provider": "ValidatorNode" - } - ], - "grpc": [ - { - "address": "grpc-comdex-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "comdex.grpcui.chaintools.host:443", - "provider": "ChainTools" - }, - { - "address": "comdex-grpc.polkachu.com:13190", - "provider": "Polkachu" - }, - { - "address": "grpc-comdex.cosmos-spaces.cloud:2300", - "provider": "Cosmos Spaces" - }, - { - "address": "comdex-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "comdex-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "comdex-grpc.w3coins.io:13190", - "provider": "w3coins" - }, - { - "address": "comdex-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "grpc-comdex-01.stakeflow.io:10002", - "provider": "Stakeflow" - }, - { - "address": "comdex-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - } - ] - }, - "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": "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": "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": "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": "ValidatorNode", - "url": "https://explorer.validatornode.com/comdex", - "tx_page": "https://explorer.validatornode.com/comdex/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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": [ - { - "address": "https://rpc-mainnet.commercio.network" - } - ], - "rest": [ - { - "address": "https://lcd-mainnet.commercio.network" - } - ] - }, - "explorers": [ - { - "kind": "almerico", - "url": "https://mainnet.commercio.network", - "tx_page": "https://mainnet.commercio.network/transactions/detail/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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.", - "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://rpc-centauri.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://composable-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://composable-rpc.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://rpc-composable.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://composable-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://composable.rpc.stakevillage.net:443", - "provider": "Stake Village" - }, - { - "address": "https://composable-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://rpc.centauri.bronbro.io:443", - "provider": "Bro_n_Bro" - }, - { - "address": "https://composable.rpc.moonbridge.team", - "provider": "Moonbridge" - } - ], - "rest": [ - { - "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-api.cogwheel.zone:443", - "provider": "Cogwheel" - }, - { - "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.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://lcd-composable.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://composable-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://composable.api.stakevillage.net", - "provider": "Stake Village" - }, - { - "address": "https://composable-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://lcd.centauri.bronbro.io:443", - "provider": "Bro_n_Bro" - }, - { - "address": "https://composable.api.moonbridge.team", - "provider": "Moonbridge" - } - ], - "grpc": [ - { - "address": "https://grpc-composable-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "grpc.composable.nodestake.top:9090", - "provider": "NodeStake" - }, - { - "address": "composable-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-centauri.cosmos-spaces.cloud:1120", - "provider": "Cosmos Spaces" - }, - { - "address": "https://composable-grpc.cogwheel.zone:443", - "provider": "Cogwheel" - }, - { - "address": "https://composable-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "composable-grpc.genznodes.dev:53090", - "provider": "genznodes" - }, - { - "address": "composable-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "grpc-composable.vinjan.xyz:36090", - "provider": "vinjan" - }, - { - "address": "composable.grpc.skynodejs.net", - "provider": "skynodejs" - }, - { - "address": "composable.grpc.stakevillage.net:16190", - "provider": "Stake Village" - }, - { - "address": "composable-rpc.stakeandrelax.net:22290", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://grpc.centauri.bronbro.io:443", - "provider": "Bro_n_Bro" - }, - { - "address": "https://composable.grpc.moonbridge.team", - "provider": "Moonbridge" - } - ] - }, - "explorers": [ - { - "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": "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": [ - { - "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": [ - { - "denom": "acvnt" - } - ] - }, - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.cvn.io/", - "provider": "cvn.io" - } - ], - "rest": [ - { - "address": "https://api.consciousdao.com", - "provider": "consciousdao.com" - } - ], - "grpc": [ - { - "address": "https://rest.consciousdao.com", - "provider": "consciousdao.com" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://node.cvn.io/", - "provider": "cvn" - }, - { - "address": "https://node.consciousdao.io/", - "provider": "consciousdao" - } - ] - }, - "explorers": [ - { - "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": { - "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", - "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" - }, - "apis": { - "rpc": [ - { - "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-curium.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://coreum.rpc.silknodes.io", - "provider": "Silk Nodes" - }, - { - "address": "https://coreum-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://rpc.mainnet.solonation.cf", - "provider": "#SoloNation" - }, - { - "address": "https://coreum-rpc.genznodes.dev", - "provider": "genznodes" - } - ], - "grpc": [ - { - "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-curium.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": "coreum-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "coreum-grpc.genznodes.dev:35090", - "provider": "genznodes" - } - ], - "rest": [ - { - "address": "https://rest-coreum.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://coreum.api.silknodes.io", - "provider": "Silk Nodes" - }, - { - "address": "https://full-node.mainnet-1.coreum.dev:1317", - "provider": "Coreum" - }, - { - "address": "https://coreum-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://api.mainnet.solonation.cf", - "provider": "#SoloNation" - }, - { - "address": "https://coreum-api.genznodes.dev", - "provider": "genznodes" - } - ] - }, - "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": "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": "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": "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" - ] - }, - { - "$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": {}, - "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://cosmos-rpc.quickapi.com:443", - "provider": "Chainlayer" - }, - { - "address": "https://cosmos-rpc.onivalidator.com", - "provider": "Oni Validator ⛩️" - }, - { - "address": "https://rpc-cosmoshub.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://cosmoshub-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc.cosmoshub.strange.love", - "provider": "strangelove-ventures" - }, - { - "address": "https://rpc-cosmoshub.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://rpc-cosmoshub.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://rpc-cosmoshub.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://cosmos-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://cosmos-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://rpc-cosmoshub-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc-cosmoshub.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://rpc.cosmos.dragonstake.io", - "provider": "DragonStake" - }, - { - "address": "https://cosmoshub.rpc.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://cosmos-rpc.icycro.org", - "provider": "IcyCRO 🧊" - }, - { - "address": "https://rpc.cosmos.bh.rocks", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://cosmos-rpc.rockrpc.net", - "provider": "RockawayX Infra" - }, - { - "address": "http://rpc-cosmoshub.freshstaking.com:26657", - "provider": "FreshSTAKING" - }, - { - "address": "https://cosmos-rpc.easy2stake.com/", - "provider": "Easy 2 Stake" - }, - { - "address": "https://rpc.cosmos.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://cosmos.rpc.silknodes.io", - "provider": "Silk Nodes" - }, - { - "address": "https://cosmos-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://cosmoshub.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rpc-cosmoshub.goldenratiostaking.net", - "provider": "Golden Ratio Staking" - }, - { - "address": "https://rpc-cosmos-hub-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://cosmos-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://cosmos-rpc.enigma-validator.com", - "provider": "Enigma" - }, - { - "address": "https://rpc-cosmoshub.mms.team", - "provider": "MMS" - }, - { - "address": "https://cosmos-rpc.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://community.nuxian-node.ch:6797/gaia/trpc", - "provider": "PRO Delegators" - }, - { - "address": "https://cosmos-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://cosmoshub-rpc.cosmosrescue.dev", - "provider": "cosmosrescue" - }, - { - "address": "https://cosmos-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - } - ], - "rest": [ - { - "address": "https://lcd-cosmoshub.blockapsis.com", - "provider": "chainapsis" - }, - { - "address": "https://cosmos-lcd.quickapi.com:443", - "provider": "Chainlayer" - }, - { - "address": "https://rest-cosmoshub.goldenratiostaking.net", - "provider": "Golden Ratio Staking" - }, - { - "address": "https://cosmoshub-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-cosmoshub.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://api-cosmoshub.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://api-cosmoshub-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://cosmos-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://lcd.cosmos.dragonstake.io", - "provider": "DragonStake" - }, - { - "address": "https://cosmoshub.rest.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://rest-cosmoshub.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://rest-cosmoshub.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://lcd-cosmoshub.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://cosmos-lcd.easy2stake.com", - "provider": "Easy 2 Stake" - }, - { - "address": "https://api.cosmos.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://cosmos.api.silknodes.io", - "provider": "Silk Nodes" - }, - { - "address": "https://cosmos-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://cosmoshub.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://api-cosmos-hub-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://cosmos-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://api-cosmoshub.mms.team", - "provider": "MMS" - }, - { - "address": "https://cosmos-api.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://community.nuxian-node.ch:6797/gaia/crpc", - "provider": "PRO Delegators" - }, - { - "address": "https://cosmos-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://cosmoshub-mainnet.api.l0vd.com", - "provider": "L0vd.com ❤️" - }, - { - "address": "https://cosmos-lcd.enigma-validator.com", - "provider": "Enigma" - }, - { - "address": "https://cosmoshub-api.cosmosrescue.dev", - "provider": "cosmosrescue" - }, - { - "address": "https://cosmos-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - } - ], - "grpc": [ - { - "address": "cosmoshub-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc-cosmoshub-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "cosmos-grpc.polkachu.com:14990", - "provider": "Polkachu" - }, - { - "address": "grpc.cosmos.interbloc.org:443", - "provider": "Interbloc" - }, - { - "address": "services.staketab.com:9030", - "provider": "Staketab" - }, - { - "address": "grpc.cosmos.dragonstake.io:443", - "provider": "DragonStake" - }, - { - "address": "cosmoshub.grpc.stakin-nodes.com:443", - "provider": "Stakin" - }, - { - "address": "https://grpc.cosmos.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "cosmos-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "grpc-cosmoshub.cosmos-spaces.cloud:3910", - "provider": "Cosmos Spaces" - }, - { - "address": "cosmoshub.grpc.kjnodes.com:11390", - "provider": "kjnodes" - }, - { - "address": "grpc-cosmos-hub-01.stakeflow.io:9090", - "provider": "Stakeflow" - }, - { - "address": "grpc-cosmoshub.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "cosmos-grpc.w3coins.io:14990", - "provider": "w3coins" - }, - { - "address": "grpc-cosmoshub.mms.team:443", - "provider": "MMS" - }, - { - "address": "cosmos-grpc.tienthuattoan.ventures:9090", - "provider": "TienThuatToan" - }, - { - "address": "cosmoshub-mainnet.grpc.l0vd.com:80", - "provider": "L0vd.com ❤️" - }, - { - "address": "https://grpc-cosmos.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "cosmos-grpc.stakeandrelax.net:14990", - "provider": "Stake&Relax 🦥" - } - ] - }, - "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": "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": "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": "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": "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": "Inbloc", - "url": "https://inbloc.org", - "tx_page": "https://inbloc.org/transactions/${txHash}", - "account_page": "https://inbloc.org/account/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": "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": [ - { - "denom": "ucgas" - } - ] - }, - "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": [ - { - "address": "https://coss-rpc.coss.ink", - "provider": "StellarGuardian" - }, - { - "address": "https://coss-rpc.cias.network", - "provider": "CelestialPhoenix" - } - ], - "rest": [ - { - "address": "https://coss-rest.coss.ink", - "provider": "StellarGuardian" - }, - { - "address": "https://coss-rest.cias.network", - "provider": "CelestialPhoenix" - } - ] - }, - "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" - } - ] - }, - { - "$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": {}, - "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://crescent-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-crescent.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://crescent.rpc.stakin-nodes.com", - "provider": "Stakin" - }, - { - "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-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://crescent-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc.crescent.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://mainnet.crescent.network:1317", - "provider": "crescent" - }, - { - "address": "https://api-crescent.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://crescent-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://crescent.rest.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://api-crescent.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://crescent-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://api-crescent-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://crescent-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://lcd.crescent.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "crescent-grpc.polkachu.com:14590", - "provider": "Polkachu" - }, - { - "address": "crescent.grpc.stakin-nodes.com:443", - "provider": "Stakin" - }, - { - "address": "crescent-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-crescent.cosmos-spaces.cloud:2270", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc-crescent-01.stakeflow.io:1402", - "provider": "Stakeflow" - }, - { - "address": "crescent-grpc.w3coins.io:14590", - "provider": "w3coins" - }, - { - "address": "https://grpc.crescent.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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": "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": "Stakeflow", - "url": "https://stakeflow.io/crescent", - "account_page": "https://stakeflow.io/crescent/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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://cronos-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://rest.cronos.org/", - "provider": "cronos.org" - }, - { - "address": "https://cronos-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc.cronos.org:443", - "provider": "cronos.org" - }, - { - "address": "cronos-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://evm.cronos.org/", - "provider": "cronos.org" - }, - { - "address": "https://cronos-evm.publicnode.com", - "provider": "Allnodes.com ⚡️ Nodes & Staking" - } - ] - }, - "explorers": [ - { - "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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-cryptoorgchain-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc-cryptoorgchain.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://cryptocom-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://cryptocom-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc-cryptoorg.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://cro-chain-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://rest.mainnet.crypto.org/", - "provider": "cronos.org" - }, - { - "address": "https://api-cryptoorgchain-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://cryptocom-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rest-cryptoorgchain.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://cryptocom-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://api-cryptoorg.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://cro-chain-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc.mainnet.crypto.org:443", - "provider": "cronos.org" - }, - { - "address": "grpc-cryptoorgchain-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "cryptocom-grpc.polkachu.com:20290", - "provider": "Polkachu" - }, - { - "address": "cryptocom-grpc.w3coins.io:20290", - "provider": "w3coins" - }, - { - "address": "grpc-cryptoorg.cosmos-spaces.cloud:1160", - "provider": "Cosmos Spaces" - }, - { - "address": "cro-chain-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "yummy-explorer", - "url": "https://explorer.yummy.capital", - "tx_page": "https://explorer.yummy.capital/txs/${txHash}" - } - ], - "images": [ - { - "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" - }, - { - "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": [ - { - "denom": "acudos" - } - ] - }, - "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" - }, - "apis": { - "rpc": [ - { - "address": "http://mainnet-full-node-01.hosts.cudos.org:26657", - "provider": "cudo" - }, - { - "address": "https://mainnet-full-node-02.hosts.cudos.org:36657", - "provider": "cudo" - }, - { - "address": "https://cudos-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://cudos-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://cudos-rpc.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - } - ], - "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" - }, - { - "address": "https://cudos-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://cudos-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://cudos-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - } - ], - "grpc": [ - { - "address": "mainnet-full-node-01.hosts.cudos.org:9090", - "provider": "cudo" - }, - { - "address": "cudos-mainnet-grpc.autostake.com:443", - "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" - } - ] - }, - "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": "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://rpc-dcntr.nodine.id/", - "provider": "Nodine.ID" - }, - { - "address": "https://rpc-decentr.mms.team/", - "provider": "MMS" - } - ], - "rest": [ - { - "address": "https://rest.mainnet.decentr.xyz", - "provider": "decentr" - }, - { - "address": "https://api.decentr.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://decentr-api.ibs.team/", - "provider": "Inter Blockchain Services" - } - ], - "grpc": [ - { - "address": "https://grpc-decentr.sxlzptprjkt.xyz:443", - "provider": "sxlzptprjkt | VALIDATOR" - }, - { - "address": "https://grpc.decentr.hexnodes.co", - "provider": "Hexnodes" - }, - { - "address": "https://grpc.decentr.nodexcapital.com:443", - "provider": "NodeX Validator" - }, - { - "address": "grpc-decentr.mms.team:443", - "provider": "MMS" - } - ] - }, - "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": "Nodine.ID", - "url": "https://explorer.co.id/decentr", - "tx_page": "https://explorer.co.id/decentr/tx/${txHash}" - }, - { - "kind": "THE EXPLORER", - "url": "https://explorer.sxlzptprjkt.xyz/decentr", - "tx_page": "https://explorer.sxlzptprjkt.xyz/decentr/tx/${txHash}" - }, - { - "kind": "hexskrt EXPLORER", - "url": "https://explorer.hexskrt.net/decentr", - "tx_page": "https://explorer.hexskrt.net/decentr/tx/${txHash}" - }, - { - "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" - } - ] - }, - { - "$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": {}, - "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": [ - { - "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}" - } - ], - "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": [ - { - "denom": "udig" - } - ] - }, - "codebase": {}, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc-1-dig.notional.ventures" - }, - { - "address": "https://rpc-dig-ia.cosmosia.notional.ventures/", - "provider": "Notional" - } - ], - "rest": [ - { - "address": "https://api-1-dig.notional.ventures" - }, - { - "address": "https://api-dig-ia.cosmosia.notional.ventures/", - "provider": "Notional" - } - ], - "grpc": [ - { - "address": "grpc-dig-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - } - ] - }, - "explorers": [ - { - "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": "TC Network", - "url": "https://explorer.tcnetwork.io/dig", - "tx_page": "https://explorer.tcnetwork.io/dig/transaction/${txHash}" - } - ], - "images": [ - { - "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": [ - { - "denom": "peaka" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://vota-rpc.dorafactory.org/", - "provider": "dorafactory" - } - ], - "rest": [ - { - "address": "https://vota-rest.dorafactory.org", - "provider": "dorafactory" - } - ], - "grpc": [ - { - "address": "vota-grpc.dorafactory.org:443", - "provider": "dorafactory" - } - ] - }, - "explorers": [ - { - "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": [ - { - "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" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "v0.47.4", - "cosmwasm_enabled": false - }, - "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": "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://dydx-dao-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "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.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "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.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://rpc-dydx.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://dydx-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://rpc-dydx.cros-nest.com:443", - "provider": "Crosnest" - }, - { - "address": "https://dydx-rpc.enigma-validator.com", - "provider": "Enigma" - } - ], - "rest": [ - { - "address": "https://community.nuxian-node.ch:6797/dydx/crpc", - "provider": "PRO Delegators" - }, - { - "address": "https://dydx-dao-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://dydx-mainnet-full-lcd.public.blastapi.io", - "provider": "Bware Labs" - }, - { - "address": "https://dydx-rest.kingnodes.com:443", - "provider": "Kingnodes" - }, - { - "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://rest-dydx.ecostake.com:443", - "provider": "ecostake" - }, - { - "address": "https://api-dydx.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://api.dydx.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://dydx-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://rest-dydx.cros-nest.com:443", - "provider": "Crosnest" - }, - { - "address": "https://dydx-lcd.enigma-validator.com", - "provider": "Enigma" - } - ], - "grpc": [ - { - "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-3.polkachu.com:23890", - "provider": "Polkachu (3)" - }, - { - "address": "dydx-dao-grpc-4.polkachu.com:23890", - "provider": "Polkachu (4)" - }, - { - "address": "dydx-dao-grpc-5.polkachu.com:23890", - "provider": "Polkachu (5)" - }, - { - "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.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "dydx-mainnet-grpc.autostake.com:443", - "provider": "AutoStake ⚡ 0% fee > Airdrops 🪂💰" - }, - { - "address": "https://grpc.dydx.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "dydx.grpc.kjnodes.com:443", - "provider": "kjnodes" - }, - { - "address": "grpc-dydx.cosmos-spaces.cloud:4990", - "provider": "Cosmos Spaces" - }, - { - "address": "dydx-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "dys" - } - ] - }, - "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": [ - { - "address": "https://dys-tm.dysonprotocol.com:443", - "provider": "dysonprotocol" - }, - { - "address": "https://dyson-rpc.cogwheel.zone:443", - "provider": "cogwheel" - } - ], - "rest": [ - { - "address": "https://dys-api.dysonprotocol.com:443", - "provider": "dysonprotocol" - }, - { - "address": "https://dyson-api.cogwheel.zone:443", - "provider": "cogwheel" - } - ], - "grpc": [ - { - "address": "dys-grpc.dyson.lol:443", - "provider": "lol" - }, - { - "address": "https://dyson-grpc.cogwheel.zone:443", - "provider": "cogwheel" - } - ] - }, - "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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": [ - { - "address": "https://ech01trpc.mindheartsoul.org", - "provider": "Mind Heart Soul" - }, - { - "address": "https://rpc.echjoker.lol", - "provider": "⚡ Echelon Joker ⚛ 🃏" - } - ], - "rest": [ - { - "address": "https://ech01api.mindheartsoul.org", - "provider": "Mind Heart Soul" - }, - { - "address": "https://api.echjoker.lol", - "provider": "⚡ Echelon Joker ⚛ 🃏" - } - ], - "grpc": [], - "evm-http-jsonrpc": [ - { - "address": "https://ech01jrpc.mindheartsoul.org", - "provider": "Mind Heart Soul" - }, - { - "address": "https://jrpc.echjoker.lol", - "provider": "⚡ Echelon Joker ⚛ 🃏" - } - ] - }, - "explorers": [ - { - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": "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": "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": "edkk", - "low_gas_price": 1, - "average_gas_price": 1, - "high_gas_price": 1 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "ungm" - } - ] - }, - "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": [ - { - "address": "https://emoney.validator.network", - "provider": "e-Money" - }, - { - "address": "https://rpc-emoney-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc.emoney.bh.rocks", - "provider": "BlockHunters 🎯" - } - ], - "rest": [ - { - "address": "https://emoney.validator.network/api/", - "provider": "e-Money" - }, - { - "address": "https://api-emoney-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://api.emoney.bh.rocks", - "provider": "BlockHunters 🎯" - } - ], - "grpc": [ - { - "address": "grpc-emoney-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "emoney-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-empowerchain.ecostake.com:443", - "provider": "ecostake" - }, - { - "address": "https://empowerchain-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://empower.rpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "http://empw.rpc.m.stavr.tech:22057", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-empower.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://rpc-empowerchain.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "https://empower-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc-empower.vinjan.xyz:443", - "provider": "vinjan" - }, - { - "address": "https://rpc.empower.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://mainnet-empower-rpc.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://empower.rpc.stakevillage.net:443", - "provider": "Stake Village" - }, - { - "address": "https://rpc.empowerchain.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://rest-empowerchain.ecostake.com:443", - "provider": "ecostake" - }, - { - "address": "https://empowerchain-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://empower.api.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://empw.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://empower-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://lcd-empower.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api-empower.vinjan.xyz:443", - "provider": "vinjan" - }, - { - "address": "https://api.empower.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://mainnet-empower-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://empower.api.stakevillage.net", - "provider": "Stake Village" - }, - { - "address": "https://lcd.empowerchain.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "empowerchain-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://empower.grpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "empower-grpc.w3coins.io:17390", - "provider": "w3coins" - }, - { - "address": "grpc-empowerchain.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "http://empw.grpc.m.stavr.tech:9141", - "provider": "🔥STAVR🔥" - }, - { - "address": "grpc-empower.vinjan.xyz", - "provider": "vinjan" - }, - { - "address": "https://grpc.empower.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "empower.grpc.stakevillage.net:16890", - "provider": "Stake Village" - }, - { - "address": "https://grpc.empowerchain.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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}" - } - ] - }, - { - "$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" - } - ] - }, - "apis": { - "rpc": [ - { - "address": "https://ethos-rpc.provable.dev:443/", - "provider": "laurel.provable" - } - ], - "rest": [ - { - "address": "https://ethos.provable.dev/rest/", - "provider": "laurel.provable" - } - ], - "grpc": [ - { - "address": "ethos-grpc.provable.dev:443", - "provider": "laurel.provable" - } - ], - "evm-http-jsonrpc": [ - { - "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": {}, - "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" - } - ] - }, - { - "$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": [ - { - "address": "https://rpc-evmos.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://evmos-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://tendermint.bd.evmos.org:26657", - "provider": "Blockdaemon" - }, - { - "address": "https://rpc-evmos-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "https://rpc.evmos.testnet.run", - "provider": "TestNetRun" - }, - { - "address": "https://rpc.evmos.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc.evmos.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://evmos-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc.evmos.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://rpc.evmos.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://evmos.rpc.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://rpc-evmos.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://evmos-rpc.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "https://evmos-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://rpc-evmos-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://evmos-rpc.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://rpc-evmos.validavia.me", - "provider": "Validavia" - }, - { - "address": "https://evmos-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://evmos-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://evmos.rpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://evmos-rpc.antrixy.org/", - "provider": "Antrix Validators" - }, - { - "address": "https://evmos-mainnet.rpc.stakevillage.net:443", - "provider": "Stake Village" - }, - { - "address": "https://rpc.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 🐝" - }, - { - "address": "https://api-evmos-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://api.evmos.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://evmos-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://api.evmos.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://rest.evmos.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://evmos.rest.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://rest-evmos.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://evmos-api.validatrium.club", - "provider": "Validatrium" - }, - { - "address": "https://rest-evmos.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://evmos-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://api-evmos-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://evmos-api.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://lcd-evmos.validavia.me", - "provider": "Validavia" - }, - { - "address": "https://evmos-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://evmos-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://evmos.api.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://evmos-rest.antrixy.org/", - "provider": "Antrix Validators" - }, - { - "address": "https://evmos-mainnet.api.stakevillage.net", - "provider": "Stake Village" - }, - { - "address": "https://lcd.evmos.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "grpc.bd.evmos.org:9090", - "provider": "evmos.org" - }, - { - "address": "grpc-evmos-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "evmos-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc.evmos.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "grpc-evmos.cosmos-spaces.cloud:1190", - "provider": "Cosmos Spaces" - }, - { - "address": "evmos.grpcui.chaintools.host:443", - "provider": "ChainTools" - }, - { - "address": "evmos-grpc.polkachu.com:13490", - "provider": "Polkachu" - }, - { - "address": "evmos.grpc.stakin-nodes.com:443", - "provider": "Stakin" - }, - { - "address": "evmos-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "evmos-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "grpc-evmos-01.stakeflow.io:1702", - "provider": "Stakeflow" - }, - { - "address": "https://evmos-grpc.theamsolutions.info ", - "provider": "AM Solutions" - }, - { - "address": "evmos-grpc.w3coins.io:13490", - "provider": "w3coins" - }, - { - "address": "grpc-evmos.mms.team:443", - "provider": "MMS" - }, - { - "address": "evmos-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "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" - } - ] - }, - "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": "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": "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": "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": "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": "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": [ - { - "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": [ - { - "denom": "afet" - } - ] - }, - "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": [ - { - "address": "https://rpc-fetchhub.fetch.ai:443", - "provider": "fetch.ai" - }, - { - "address": "https://rpc-fetchhub-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://fetch-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://fetchai-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://fetch-rpc.teasel.org", - "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" - }, - { - "address": "https://fetch-rpc.antrixy.org", - "provider": "Antrix" - }, - { - "address": "https://rpc-fetch.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "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.cosmosrescue.com", - "provider": "cosmosrescue" - }, - { - "address": "https://fetch-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://fetch-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://fetch-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - } - ], - "rest": [ - { - "address": "https://rest-fetchhub.fetch.ai", - "provider": "fetch.ai" - }, - { - "address": "https://api-fetchhub-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://fetch-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://fetchai-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://fetch-rest.teasel.org", - "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" - }, - { - "address": "https://fetch-rest.antrixy.org", - "provider": "Antrix" - }, - { - "address": "https://fetchhub-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rest-fetch.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://fetch-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://fetch-api.cosmosrescue.com", - "provider": "cosmosrescue" - }, - { - "address": "https://fetch-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://fetch-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://fetch-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - } - ], - "grpc": [ - { - "address": "grpc-fetchhub.fetch.ai:443", - "provider": "fetch.ai" - }, - { - "address": "grpc-fetchhub-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "fetch-grpc.polkachu.com:15290", - "provider": "Polkachu" - }, - { - "address": "fetchhub-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "fetch-grpc.teasel.org:443", - "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" - }, - { - "address": "fetch-grpc.antrixy.org:443", - "provider": "Antrix" - }, - { - "address": "fetch-grpc.cosmosrescue.com:9090", - "provider": "cosmosrescue" - }, - { - "address": "fetch-grpc.w3coins.io:15290", - "provider": "w3coins" - }, - { - "address": "fetch-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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": "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": [ - { - "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": [ - { - "denom": "ufct" - } - ] - }, - "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": [ - { - "address": "https://lcd-mainnet.firmachain.dev:26657", - "provider": "FirmaChain" - }, - { - "address": "https://rpc.firmachain.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://firmachain-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://firmachain-rpc.ramuchi.tech", - "provider": "ramuchi.tech" - } - ], - "rest": [ - { - "address": "https://lcd-mainnet.firmachain.dev:1317", - "provider": "FirmaChain" - }, - { - "address": "https://api.firmachain.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://firmachain-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://firmachain-api.ramuchi.tech", - "provider": "ramuchi.tech" - } - ], - "grpc": [ - { - "address": "firmachain-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://firmachain-grpc.ramuchi.tech:1390", - "provider": "ramuchi.tech" - } - ] - }, - "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": "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": "atomscan", - "url": "https://atomscan.com/firmachain", - "tx_page": "https://atomscan.com/firmachain/transactions/${txHash}", - "account_page": "https://atomscan.com/firmachain/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "ufury" - } - ] - }, - "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": [ - { - "address": "https://rpc.furya.xyz", - "provider": "Furya Genesis Validator 🐝" - } - ], - "rest": [ - { - "address": "https://api.furya.xyz", - "provider": "Furya Genesis Validator 🐝" - } - ], - "grpc": [ - { - "address": "grpc.furya.xyz:443", - "provider": "Lavender.Five Nodes 🐝" - } - ] - }, - "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.46" - }, - "apis": { - "rpc": [ - { - "address": "https://fx-json.functionx.io", - "provider": "Function X" - } - ], - "rest": [ - { - "address": "https://fx-rest.functionx.io", - "provider": "Function X" - } - ], - "grpc": [ - { - "address": "https://fx-grpc.functionx.io", - "provider": "Function X" - }, - { - "address": "https://fx-grpc.portfolio-x.xyz:9090", - "provider": "Portfolio X" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://fx-web3.functionx.io", - "provider": "Function X" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": {}, - "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": [ - { - "kind": "ping.pub", - "url": "https://explorer.postcapitalist.io/Galaxy", - "tx_page": "https://explorer.postcapitalist.io/Galaxy/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "uworm" - } - ] - }, - "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": [ - { - "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" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/gateway_logo.png" - }, - "apis": { - "rpc": [ - { - "address": "https://tncnt-eu-wormchain-main-01.rpc.p2p.world/", - "provider": "P2P" - }, - { - "address": "https://wormchain-rpc.quickapi.com/", - "provider": "ChainLayer" - } - ], - "rest": [ - { - "address": "https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/", - "provider": "P2P" - }, - { - "address": "https://wormchain-lcd.quickapi.com/", - "provider": "ChainLayer" - } - ], - "grpc": [ - { - "address": "tncnt-eu-wormchain-main-01-grpc.rpc.p2p.world:80", - "provider": "P2P" - } - ] - }, - "explorers": [ - { - "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" - ] - }, - { - "$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": [ - { - "denom": "el1" - } - ] - }, - "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": [ - { - "address": "https://26657.genesisl1.org", - "provider": "GenesisL1" - } - ], - "rest": [ - { - "address": "https://api.genesisl1.org", - "provider": "GenesisL1" - } - ] - }, - "explorers": [ - { - "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": "🔥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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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": "https://gitopia-rpc.polkachu.com:443", - "provider": "polkachu" - }, - { - "address": "https://gitopia-rpc.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc.gitopia.nodestake.top:443", - "provider": "nodestake" - }, - { - "address": "https://gitopia-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://gitopia-rpc.ibs.team:443", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://m-gitopia.rpc.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "http://gitopia.rpc.m.stavr.tech:51057", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-gitopia.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://gitopia-rpc.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://rpc-gitopia.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://gitopia.rpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://gitopia-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://rpc.gitopia.silentvalidator.com", - "provider": "silent" - }, - { - "address": "https://gitopia-rpc.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://rpc-gitopia.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://gitopia.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rpc.gitopia.sgtstake.com", - "provider": "SGTstake" - }, - { - "address": "https://mainnet-gitopia-rpc.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://rpc.gitopia.quokkastake.io", - "provider": "🐹 Quokka Stake" - }, - { - "address": "http://gitopia.rpc.tarabukin.work:60557", - "provider": "tarabukinivan" - }, - { - "address": "https://rpc.gitopia.roomit.xyz", - "provider": "RoomIT" - }, - { - "address": "https://gitopia.rpc.moonbridge.team", - "provider": "Moonbridge" - }, - { - "address": "https://gitopia-rpc.stakeangle.com", - "provider": "StakeAngle" - }, - { - "address": "https://gitopia.rpc.m.anode.team", - "provider": "AlxVoy ⚡ ANODE.TEAM" - }, - { - "address": "https://rpc.gitopia.sbgid.com", - "provider": "kokos" - }, - { - "address": "https://gitopia.rpc.stakevillage.net", - "provider": "Stake Village" - }, - { - "address": "https://gitopia-rpc.enigma-validator.com/", - "provider": "Enigma" - }, - { - "address": "https://rpc.gitopia.tcnetwork.io/", - "provider": "TC Network" - }, - { - "address": "https://gitopia.nodejumper.io:443", - "provider": "NODEJUMPER" - }, - { - "address": "https://rpc.gitopia.stakeup.tech/", - "provider": "StakeUp" - }, - { - "address": "https://gitopia-mainnet.rpc.l0vd.com:443", - "provider": "L0vd.com ❤️" - } - ], - "rest": [ - { - "address": "http://gitopia.api.nodersteam.com:20017", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://gitopia-api.polkachu.com:443", - "provider": "polkachu" - }, - { - "address": "https://gitopia-api.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api.gitopia.nodestake.top:443", - "provider": "nodestake" - }, - { - "address": "https://gitopia-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://gitopia-mainnet-lcd.autostake.com:443", - "provider": "autostake" - }, - { - "address": "https://gitopia-api.ibs.team:443", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://m-gitopia.api.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://gitopia.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api-gitopia.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://gitopia-api.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://lcd-gitopia.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://gitopia.api.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://gitopia-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://api.gitopia.silentvalidator.com", - "provider": "silent" - }, - { - "address": "https://gitopia-api.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://api-gitopia.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://gitopia.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://api.gitopia.sgtstake.com/", - "provider": "SGTstake" - }, - { - "address": "https://mainnet-gitopia-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://api.gitopia.quokkastake.io", - "provider": "🐹 Quokka Stake" - }, - { - "address": "https://api.gitopia.roomit.xyz", - "provider": "RoomIT" - }, - { - "address": "https://gitopia.api.moonbridge.team", - "provider": "Moonbridge" - }, - { - "address": "http://gitopia-rpc.stakeangle.com:41317", - "provider": "StakeAngle" - }, - { - "address": "https://gitopia.api.m.anode.team", - "provider": "AlxVoy ⚡ ANODE.TEAM" - }, - { - "address": "https://api.gitopia.sbgid.com", - "provider": "kokos" - }, - { - "address": "https://gitopia.api.stakevillage.net", - "provider": "Stake Village" - }, - { - "address": "https://gitopia-lcd.enigma-validator.com/", - "provider": "Enigma" - }, - { - "address": "https://rest.gitopia.tcnetwork.io/", - "provider": "TC Network" - }, - { - "address": "https://gitopia.nodejumper.io:1317", - "provider": "NODEJUMPER" - }, - { - "address": "https://api.gitopia.stakeup.tech/", - "provider": "StakeUp" - }, - { - "address": "https://gitopia-mainnet.api.l0vd.com:443", - "provider": "L0vd.com ❤️" - } - ], - "grpc": [ - { - "address": "grpc.gitopia.indonode.net:26090", - "provider": "indonode" - }, - { - "address": "gitopia.grpc.nodersteam.com:9201", - "provider": "[NODERS]TEAM" - }, - { - "address": "gitopia-grpc.polkachu.com:11390", - "provider": "polkachu" - }, - { - "address": "services.staketab.com:9410", - "provider": "Staketab" - }, - { - "address": "https://gitopia-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://grpc.gitopia.nodestake.top:443", - "provider": "nodestake" - }, - { - "address": "https://grpc-gitopia.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "http://gitopia.grpc.m.stavr.tech:5123", - "provider": "🔥STAVR🔥" - }, - { - "address": "gitopia-grpc.genznodes.dev:33090", - "provider": "genznodes" - }, - { - "address": "https://grpc.gitopia.hexnodes.co:16090", - "provider": "Hexnodes" - }, - { - "address": "https://gitopia.grpc.liveraven.net:443", - "provider": "LiveRaveN" - }, - { - "address": "https://grpc.gitopia.indonode.net:26090", - "provider": "Indonode" - }, - { - "address": "gitopia-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "grpc.gitopia.silentvalidator.com:443", - "provider": "silent" - }, - { - "address": "https://gitopia-grpc.ramuchi.tech:16001", - "provider": "ramuchi.tech" - }, - { - "address": "grpc-gitopia.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "gitopia.grpc.kjnodes.com:14190", - "provider": "kjnodes" - }, - { - "address": "grpc.gitopia.roomit.xyz:8443", - "provider": "RoomIT" - }, - { - "address": "https://gitopia.grpc.moonbridge.team", - "provider": "Moonbridge" - }, - { - "address": "http://gitopia-rpc.stakeangle.com:41390", - "provider": "StakeAngle" - }, - { - "address": "https://gitopia.grpc.m.anode.team", - "provider": "AlxVoy ⚡ ANODE.TEAM" - }, - { - "address": "https://grpc.gitopia.sbgid.com", - "provider": "kokos" - }, - { - "address": "mainnet-gitopia-grpc.konsortech.xyz:38090", - "provider": "KonsorTech" - }, - { - "address": "gitopia.grpc.stakevillage.net:14190", - "provider": "Stake Village" - }, - { - "address": "gitopia.nodejumper.io:9090", - "provider": "NODEJUMPER" - }, - { - "address": "grpc.gitopia.stakeup.tech:443", - "provider": "StakeUp" - }, - { - "address": "gitopia-mainnet.grpc.l0vd.com:80", - "provider": "L0vd.com ❤️" - } - ] - }, - "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": "🔥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": "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": "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": "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": "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": "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": "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" - } - }, - { - "$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": {}, - "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": "http://gravity-bridge-1-08.nodes.amhost.net:26657", - "provider": "amhost" - }, - { - "address": "https://gravity-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-gravitybridge-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://gravitybridge-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc.gravity.bh.rocks/", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://gravity-rpc.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://gravity-rpc.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://rpc-gravity-bridge-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://gravity-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://gravity-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc.g-bridge.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://gravitychain.io:1317", - "provider": "althea" - }, - { - "address": "https://api-gravitybridge-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://gravity-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://gravitybridge-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api.gravity.bh.rocks/", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://gravity-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://gravity-api.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://api-gravity-bridge-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://gravity-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://gravity-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://lcd.g-bridge.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "gravity-bridge-1-08.nodes.amhost.net:9090", - "provider": "amhost" - }, - { - "address": "grpc-gravitybridge-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "gravity-grpc.polkachu.com:14290", - "provider": "Polkachu" - }, - { - "address": "gravitybridge-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://gravity-grpc.ramuchi.tech:10090", - "provider": "ramuchi.tech" - }, - { - "address": "grpc-gravity-bridge-01.stakeflow.io:1302", - "provider": "Stakeflow" - }, - { - "address": "services.staketab.com:9017", - "provider": "Staketab" - }, - { - "address": "gravity-grpc.w3coins.io:14290", - "provider": "w3coins" - }, - { - "address": "https://grpc.g-bridge.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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://m-s1-tm.haqq.sh", - "provider": "kioqq" - }, - { - "address": "http://haqq.rpc.nodersteam.com:19657", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://rpc.haqq.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://haqq-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://haqq-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-haqq.sr20de.xyz:443", - "provider": "Sr20de" - } - ], - "rest": [ - { - "address": "https://rest.cosmos.haqq.network", - "provider": "Haqq" - }, - { - "address": "https://m-s1-sdk.haqq.sh", - "provider": "kioqq" - }, - { - "address": "http://haqq.api.nodersteam.com:19017", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://api.haqq.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://haqq-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://haqq-api.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://mainnet-haqq-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://api-haqq.sr20de.xyz", - "provider": "Sr20de" - } - ], - "grpc": [ - { - "address": "https://grpc.cosmos.haqq.network", - "provider": "Haqq" - }, - { - "address": "grpc://m-s1-grpc.haqq.sh:1337", - "provider": "kioqq" - }, - { - "address": "haqq.grpc.nodersteam.com:9191", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://grpc.haqq.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "haqq-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://haqq-grpc.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "mainnet-haqq-grpc.konsortech.xyz:11090", - "provider": "KonsorTech" - }, - { - "address": "https://grpc-haqq.sr20de.xyz", - "provider": "Sr20de" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://rpc.eth.haqq.network", - "provider": "Haqq" - }, - { - "address": "https://m-s1-evm-rpc.haqq.sh", - "provider": "kioqq" - }, - { - "address": "https://jsonrpc.haqq.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://haqq-evm.publicnode.com", - "provider": "Allnodes.com ⚡️ Nodes & Staking" - }, - { - "address": "https://haqq-jsonrpc.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://mainnet-haqq-evm.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://evm-haqq.sr20de.xyz", - "provider": "Sr20de" - } - ] - }, - "explorers": [ - { - "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": "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": "KonsorTech Explorer", - "url": "https://explorer.konsortech.xyz/haqq", - "tx_page": "https://explorer.konsortech.xyz/haqq/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "ufury" - } - ] - }, - "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": [ - { - "address": "https://gridiron.furya.io", - "provider": "fanfury" - } - ], - "rest": [ - { - "address": "https://api-mainnet.furya.io/", - "provider": "fanfury" - } - ], - "grpc": [ - { - "address": "api-mainnet.furya.io:9090", - "provider": "fanfury" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://rest.furya.io/", - "provider": "fanfury" - } - ] - }, - "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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://humans.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "http://humans.rpc.nodersteam.com:22657", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://rpc-humans.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://humans-mainnet-rpc.itrocket.net", - "provider": "itrocket" - }, - { - "address": "https://humans-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://rpc-humansai.thenop.io:443", - "provider": "TheNOP.io" - }, - { - "address": "https://humans-rpc.stakeangle.com/", - "provider": "StakeAngle" - }, - { - "address": "https://rpc.humans.stakepool.dev.br", - "provider": "StakePool" - }, - { - "address": "https://humans-rpc.anyvalid.com:26627", - "provider": "AnyValid" - }, - { - "address": "https://mainnet-humans-rpc.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://rpc.humans-mainnet.stake-take.com/", - "provider": "Stake-Take" - } - ], - "rest": [ - { - "address": "https://api.humans.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://humans.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "http://humans.api.nodersteam.com:22017", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://api-humans.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://humans-mainnet-api.itrocket.net", - "provider": "itrocket" - }, - { - "address": "https://humans-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://api-humansai.thenop.io:443", - "provider": "TheNOP.io" - }, - { - "address": "http://humans-rpc.stakeangle.com:41417", - "provider": "StakeAngle" - }, - { - "address": "https://rest.humans.stakepool.dev.br", - "provider": "StakePool" - }, - { - "address": "https://mainnet-humans-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://api.humans-mainnet.stake-take.com/", - "provider": "Stake-Take" - } - ], - "grpc": [ - { - "address": "https://grpc.humans.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://humans.grpc.kjnodes.com/", - "provider": "kjnodes" - }, - { - "address": "https://grpc-humans.nodeist.net/", - "provider": "Nodeist" - }, - { - "address": "humans-mainnet-grpc.itrocket.net:17090", - "provider": "itrocket" - }, - { - "address": "http://humans-rpc.stakeangle.com:41490/", - "provider": "Staketab" - }, - { - "address": "humans.grpc.nodersteam.com:9221", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://grpc-humans.cosmos-spaces.cloud:1190", - "provider": "StakePool" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://jsonrpc.humans.nodestake.top/", - "provider": "NodeStake" - }, - { - "address": "https://humans-mainnet-evm.itrocket.net", - "provider": "itrocket" - }, - { - "address": "https://humans-evm-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://evm.humans.stakepool.dev.br", - "provider": "Stakepool" - }, - { - "address": "https://mainnet-humans-evm.konsortech.xyz", - "provider": "KonsorTech" - } - ] - }, - "explorers": [ - { - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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 🐝" - } - ] - }, - "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": "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": "TC Network", - "url": "https://explorer.tcnetwork.io/idep", - "tx_page": "https://explorer.tcnetwork.io/idep/transaction/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "uixo" - } - ] - }, - "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": [ - { - "address": "https://proxies.sifchain.finance/api/impacthub-3/rpc", - "provider": "sifchain" - }, - { - "address": "https://impacthub.ixo.world/rpc/", - "provider": "ixoworld" - }, - { - "address": "https://rpc-ixo-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://impacthub-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://ixo-rpc.ibs.team", - "provider": "Inter Blockchain Services" - } - ], - "rest": [ - { - "address": "https://proxies.sifchain.finance/api/impacthub-3/rest", - "provider": "sifchain" - }, - { - "address": "https://impacthub.ixo.world/rest/", - "provider": "ixoworld" - }, - { - "address": "https://api-ixo-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://impacthub-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://ixo-api.ibs.team", - "provider": "Inter Blockchain Services" - } - ], - "grpc": [ - { - "address": "grpc-ixo-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "impacthub-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://jsonrpc.imversed.network:443", - "provider": "imversed" - } - ] - }, - "explorers": [ - { - "kind": "blockscout", - "url": "https://txe.imversed.network/", - "tx_page": "https://txe.imversed.network/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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://rpc-injective.goldenratiostaking.net", - "provider": "Golden Ratio Staking" - }, - { - "address": "https://injective-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://injective-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-injective-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "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.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://rpc-injective-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://injective-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://injective-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://injective-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - } - ], - "rest": [ - { - "address": "https://injective-lcd.quickapi.com:443", - "provider": "Chainlayer" - }, - { - "address": "https://api-injective-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://injective-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://injective-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rest.injective.posthuman.digital:443", - "provider": "POSTHUMAN ꝏ DVS" - }, - { - "address": "https://lcd-injective.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api-injective-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://rest-injective.goldenratiostaking.net", - "provider": "Golden Ratio Staking" - }, - { - "address": "https://injective-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://injective-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://injective-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - } - ], - "grpc": [ - { - "address": "grpc-injective-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "injective-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "injective-grpc.polkachu.com:14390", - "provider": "Polkachu" - }, - { - "address": "injective-mainnet-grpc.autostake.com:443", - "provider": "AutoStake.com" - }, - { - "address": "grpc-injective.cosmos-spaces.cloud:9900", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc.injective.posthuman.digital:80", - "provider": "POSTHUMAN ꝏ DVS" - }, - { - "address": "grpc-injective.architectnodes.com:1443", - "provider": "Architect Nodes" - }, - { - "address": "grpc-injective-01.stakeflow.io:2102", - "provider": "Stakeflow" - }, - { - "address": "injective-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "injective-grpc.w3coins.io:14390", - "provider": "w3coins" - }, - { - "address": "grpc-injective.whispernode.com:443", - "provider": "WhisperNode 🤐" - } - ] - }, - "explorers": [ - { - "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": "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": "Stakeflow", - "url": "https://stakeflow.io/injective", - "account_page": "https://stakeflow.io/injective/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "uiris" - } - ] - }, - "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": [ - { - "address": "https://rpc-irisnet-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc-irisnet-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://irisnet-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://iris-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://iris-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://iris-mainnet.rpc.l0vd.com:443", - "provider": "L0vd.com ❤️" - }, - { - "address": "https://mainnet-iris-rpc.konsortech.xyz", - "provider": "KonsorTech" - } - ], - "rest": [ - { - "address": "https://api-irisnet-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://api-irisnet-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://irisnet-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://iris-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://iris-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://iris-mainnet.api.l0vd.com:443", - "provider": "L0vd.com ❤️" - }, - { - "address": "https://mainnet-iris-api.konsortech.xyz", - "provider": "KonsorTech" - } - ], - "grpc": [ - { - "address": "grpc-irisnet-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "grpc-irisnet-01.stakeflow.io:1902", - "provider": "Stakeflow" - }, - { - "address": "irisnet-grpc.w3coins.io:22690", - "provider": "w3coins" - }, - { - "address": "iris-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "iris.grpc.kjnodes.com:443", - "provider": "kjnodes" - }, - { - "address": "https://grpc-irisnet.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "iris-mainnet.grpc.l0vd.com:80", - "provider": "L0vd.com ❤️" - }, - { - "address": "mainnet-iris.konsortech.xyz:30090", - "provider": "KonsorTech" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://iris-evm.publicnode.com", - "provider": "Allnodes.com ⚡️ Nodes & Staking" - }, - { - "address": "https://mainnet-iris-evm.konsortech.xyz", - "provider": "KonsorTech" - } - ] - }, - "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": "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": "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": "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": "KonsorTech", - "url": "https://explorer.konsortech.xyz/iris", - "tx_page": "https://explorer.konsortech.xyz/iris/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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" - } - ], - "rpc": [ - { - "address": "https://rpc.jackalprotocol.com", - "provider": "Jackal Labs" - }, - { - "address": "https://jackal-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "http://jkl.rpc.m.stavr.tech:11127", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://jackal.rpc.bccnodes.com", - "provider": "BccNodes" - }, - { - "address": "https://rpc.jackal.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc-jackal.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://jackal-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://m-jackal.rpc.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://rpc-jackal.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://jackal-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "http://jackal.rpc.nodersteam.com:31657", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://jackal.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://jackal.rpc.silknodes.io", - "provider": "Silk Nodes" - }, - { - "address": "https://jackal.rpc.skynodejs.net", - "provider": "skynodejs" - } - ], - "rest": [ - { - "address": "https://api.jackalprotocol.com", - "provider": "Jackal Labs" - }, - { - "address": "https://jackal-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://jkl.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api.jackal.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "http://jackal.api.nodersteam.com:2917", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://api-jackal.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://jackal-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://m-jackal.api.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://jackal-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://lcd-jackal.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://jackal.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://jackal.api.silknodes.io", - "provider": "Silk Nodes" - }, - { - "address": "https://jackal.api.skynodejs.net", - "provider": "skynodejs" - } - ], - "grpc": [ - { - "address": "grpc.jackalprotocol.com:443", - "provider": "Jackal Labs" - }, - { - "address": "jackal.grpc.bccnodes.com:9490", - "provider": "BccNodes" - }, - { - "address": "jackal.grpc.nodersteam.com:9990", - "provider": "[NODERS]TEAM" - }, - { - "address": "jackal-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc.jackal.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "jackal-grpc.polkachu.com:17590", - "provider": "Polkachu" - }, - { - "address": "http://jkl.grpc.m.stavr.tech:5013", - "provider": "🔥STAVR🔥" - }, - { - "address": "jackal-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "jackal.grpc.kjnodes.com:13790", - "provider": "kjnodes" - }, - { - "address": "https://jackal.grpc.skynodejs.net", - "provider": "skynodejs" - } - ] - }, - "explorers": [ - { - "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": "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": "🔥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": "Big Dipper", - "url": "https://bigdipper.live/jackal", - "tx_page": "https://bigdipper.live/jackal/transactions/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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.goldenratiostaking.net", - "provider": "Golden Ratio Staking" - }, - { - "address": "https://rpc-juno.itastakers.com", - "provider": "itastakers" - }, - { - "address": "http://juno.rpc.m.stavr.tech:1067", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-juno.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://juno-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://juno-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-juno.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://rpc-juno.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://rpc-juno-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc.juno.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://juno-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://juno-rpc.icycro.org", - "provider": "IcyCRO 🧊" - }, - { - "address": "https://rpc.juno.bh.rocks", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://juno.kingnodes.com", - "provider": "kingnodes 👑" - }, - { - "address": "https://juno-rpc.reece.sh", - "provider": "Reecepbcups" - }, - { - "address": "https://juno-rpc.stakeandrelax.net", - "provider": "Stake&Relax Validator 🦥" - }, - { - "address": "https://rpc-juno.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://rpc-juno-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://rpc-juno.validavia.me", - "provider": "Validavia" - }, - { - "address": "https://juno-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://juno-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://juno-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://rpc-juno.mainnet.validatrium.club:443", - "provider": "Validatrium" - }, - { - "address": "https://juno-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://rpc.juno.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://lcd-juno.itastakers.com", - "provider": "itastakers" - }, - { - "address": "https://rest-juno.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://juno-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://juno.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api-juno.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://api-juno-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://api.juno.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://juno-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://api-juno.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://juno-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://api.juno.bh.rocks", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://juno.kingnodes.com", - "provider": "kingnodes 👑" - }, - { - "address": "https://juno-api.reece.sh", - "provider": "Reecepbcups" - }, - { - "address": "https://juno-api.stakeandrelax.net", - "provider": "Stake&Relax Validator 🦥" - }, - { - "address": "https://rest-juno.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://rest-juno.goldenratiostaking.net", - "provider": "Golden Ratio Staking" - }, - { - "address": "https://api-juno-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://lcd-juno.validavia.me", - "provider": "Validavia" - }, - { - "address": "https://juno-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://juno-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://juno-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://lcd-juno.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://juno-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://lcd.juno.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "grpc-juno-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "juno-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "juno-grpc.polkachu.com:12690", - "provider": "Polkachu" - }, - { - "address": "http://juno.grpc.m.stavr.tech:504", - "provider": "🔥STAVR🔥" - }, - { - "address": "grpc-juno.kingnodes.com:443", - "provider": "kingnodes 👑" - }, - { - "address": "grpc-juno.cosmos-spaces.cloud:4830", - "provider": "Cosmos Spaces" - }, - { - "address": "http://juno-grpc.stakeandrelax.net:12690", - "provider": "Stake&Relax Validator 🦥" - }, - { - "address": "grpc-juno.architectnodes.com:1443", - "provider": "Architect Nodes" - }, - { - "address": "juno-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "http://167.235.211.168:9091", - "provider": "CommunityStaking" - }, - { - "address": "grpc-juno-01.stakeflow.io:2302", - "provider": "Stakeflow" - }, - { - "address": "juno-grpc.w3coins.io:12690", - "provider": "w3coins" - }, - { - "address": "juno-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "juno-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "138.201.21.121:24990", - "provider": "Validatrium" - }, - { - "address": "juno-grpc.stakeandrelax.net:12690", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://grpc.juno.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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": "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": "🔥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": "Stakeflow", - "url": "https://stakeflow.io/juno", - "account_page": "https://stakeflow.io/juno/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "ukava" - } - ] - }, - "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.", - "apis": { - "rpc": [ - { - "address": "https://rpc.data.kava.io", - "provider": "kava" - }, - { - "address": "https://kava-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-kava-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://kava-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://kava-rpc.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://rpc-kava-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://kava-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://api.data.kava.io/", - "provider": "kava" - }, - { - "address": "https://api-kava-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://kava-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://kava-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://kava-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://api-kava-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://kava-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc.data.kava.io:443", - "provider": "kava" - }, - { - "address": "grpc-kava-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "kava-grpc.polkachu.com:13990", - "provider": "Polkachu" - }, - { - "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" - } - ] - }, - "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": "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": "Stakeflow", - "url": "https://stakeflow.io/kava", - "account_page": "https://stakeflow.io/kava/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "uxki" - } - ] - }, - "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": [ - { - "address": "https://rpc-mainnet.blockchain.ki", - "provider": "kifoundation" - }, - { - "address": "https://kichain-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-kichain-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://kichain-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc.kichain.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://kichain-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "http://ki-chain.statesync.nodersteam.com:14657", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://ki-rpc.ibs.team/", - "provider": "Inter Blockchain Services" - } - ], - "rest": [ - { - "address": "https://api-mainnet.blockchain.ki", - "provider": "kifoundation" - }, - { - "address": "https://api-kichain-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://api.kichain.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://kichain-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "http://ki-chain.api.nodersteam.com:14017", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://kichain-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://kichain-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://ki-api.ibs.team/", - "provider": "Inter Blockchain Services" - } - ], - "grpc": [ - { - "address": "grpc-kichain-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "kichain-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "ki-chain.grpc.nodersteam.com:9410", - "provider": "[NODERS]TEAM" - }, - { - "address": "kichain-grpc.polkachu.com:13590", - "provider": "Polkachu" - }, - { - "address": "kichain-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - } - ] - }, - "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": "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": "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": [ - { - "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": {}, - "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": [ - { - "denom": "udarc" - } - ] - }, - "apis": { - "rpc": [ - { - "address": "https://konstellation-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-konstellation-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://konstellation-rpc.stakerhouse.com", - "provider": "StakerHouse" - } - ], - "rest": [ - { - "address": "https://api-konstellation-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://konstellation-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://konstellation-rest.stakerhouse.com", - "provider": "StakerHouse" - } - ], - "grpc": [ - { - "address": "grpc-konstellation-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "konstellation-grpc.polkachu.com:13390", - "provider": "Polkachu" - }, - { - "address": "konstellation-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "konstellation-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - } - ] - }, - "explorers": [ - { - "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}" - } - ], - "images": [ - { - "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 - }, - { - "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": { - "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.kaiyo.kujira.setten.io", - "provider": "setten.io" - }, - { - "address": "https://kujira-rpc.polkachu.com", - "provider": "polkachu" - }, - { - "address": "https://rpc-kujira.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://kujira-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc.kujira.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://rpc-kujira-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://kujira-rpc.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://rpc-kujira.starsquid.io", - "provider": "Starsquid" - }, - { - "address": "https://kujira.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://kuji-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://rpc-kujira.goldenratiostaking.net", - "provider": "Golden Ratio Staking" - }, - { - "address": "https://kujira-mainnet-rpc.autostake.com:443", - "provider": "AutoStake ⚡️ 0% fee" - }, - { - "address": "https://rpc.kujira.rektdao.club", - "provider": "rektDAO" - }, - { - "address": "https://kujira-rpc.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://kujira-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc-kujira.mms.team", - "provider": "MMS" - }, - { - "address": "https://kujira-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://kujira.interstellar-lounge.org", - "provider": "Interstellar Lounge 🍸" - } - ], - "rest": [ - { - "address": "https://lcd-kujira.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "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.polkachu.com/", - "provider": "polkachu" - }, - { - "address": "https://rest-kujira.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://api-kujira-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://kujira-lcd.wildsage.io/", - "provider": "WildSage Labs" - }, - { - "address": "https://kujira-api.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://api-kujira.starsquid.io", - "provider": "Starsquid" - }, - { - "address": "https://kujira.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://kuji-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://kujira-mainnet-lcd.autostake.com:443", - "provider": "AutoStake ⚡️ 0% fee" - }, - { - "address": "https://api.kujira.rektdao.club", - "provider": "rektDAO" - }, - { - "address": "https://kujira-api.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://kujira-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://api-kujira.mms.team", - "provider": "MMS" - }, - { - "address": "https://kujira-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://kujira-rest.interstellar-lounge.org", - "provider": "Interstellar Lounge 🍸" - } - ], - "grpc": [ - { - "address": "kujira.grpcui.chaintools.host:443", - "provider": "ChainTools" - }, - { - "address": "grpc-kujira-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "kujira-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "kujira-grpc.polkachu.com:11890", - "provider": "Polkachu" - }, - { - "address": "kujira-mainnet-grpc.autostake.com:443", - "provider": "AutoStake ⚡️ 0% fee" - }, - { - "address": "kujira.grpc.kjnodes.com:11390", - "provider": "kjnodes" - }, - { - "address": "kujira-grpc.w3coins.io:11890", - "provider": "w3coins" - }, - { - "address": "grpc-kujira.mms.team:443", - "provider": "MMS" - }, - { - "address": "kujira-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "grpc-kujira.whispernode.com:443", - "provider": "WhisperNode 🤐" - } - ] - }, - "explorers": [ - { - "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": "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" - }, - "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" - } - ] - }, - { - "$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": { - "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-kyve.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://kyve-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "http://kyve.rpc.m.stavr.tech:12357", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-kyve.imperator.co", - "provider": "Imperator.co" - }, - { - "address": "https://kyve-rpc.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://rpc-kyve.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://rpc.kyve.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://kyve.rpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://rpc-kyve.mms.team", - "provider": "MMS" - } - ], - "rest": [ - { - "address": "https://api-eu-1.kyve.network", - "provider": "kyve" - }, - { - "address": "https://kyve-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rest-kyve.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://lcd-kyve.imperator.co", - "provider": "Imperator.co" - }, - { - "address": "https://kyve.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://kyve-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://api.kyve.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://api-kyve.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://kyve.api.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://api-kyve.mms.team", - "provider": "MMS" - } - ], - "grpc": [ - { - "address": "https://grpc.kyve.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://kyve-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc-kyve.cosmos-spaces.cloud:2590", - "provider": "Cosmos Spaces" - }, - { - "address": "https://grpc-kyve.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "http://kyve.grpc.stavr.tech:7106", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://kyve.grpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "grpc-kyve.mms.team:443", - "provider": "MMS" - } - ] - }, - "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": "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": "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": [ - { - "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": [ - { - "denom": "ulamb" - } - ] - }, - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.lambda.im", - "provider": "Lambda" - }, - { - "address": "http://lambda.rpc.m.stavr.tech:31327", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc.lambda.nodestake.top", - "provider": "NodeStake" - } - ], - "rest": [ - { - "address": "https://rest.lambda.im", - "provider": "Lambda" - }, - { - "address": "https://lambda.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api.lambda.nodestake.top", - "provider": "NodeStake" - } - ], - "grpc": [ - { - "address": "http://lambda.grpc.m.stavr.tech:2287", - "provider": "🔥STAVR🔥" - }, - { - "address": "grpc.lambda.nodestake.top:443", - "provider": "NodeStake" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://jsonrpc-lambda.d-stake.xyz", - "provider": "D-stake" - } - ] - }, - "explorers": [ - { - "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": "🔥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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.46", - "cosmwasm_enabled": false - }, - "apis": { - "rpc": [ - { - "address": "https://mainnet-node.like.co/rpc/", - "provider": "like.co" - }, - { - "address": "https://likecoin-node.oldcat.io:443/rpc/", - "provider": "Oldcat" - }, - { - "address": "https://rpc-likecoin-mainnet.pikaser.net", - "provider": "PikaSer" - }, - { - "address": "http://51.159.223.25:28657", - "provider": "Citizen Web3" - } - ], - "rest": [ - { - "address": "https://mainnet-node.like.co", - "provider": "like.co" - }, - { - "address": "https://likecoin-node.oldcat.io:443/api/", - "provider": "Oldcat" - }, - { - "address": "https://rest-likecoin-mainnet.pikaser.net", - "provider": "PikaSer" - } - ], - "grpc": [ - { - "address": "mainnet-node-grpc.like.co:80", - "provider": "like.co" - }, - { - "address": "https://likecoin-node.oldcat.io:443/grpc/", - "provider": "Oldcat" - }, - { - "address": "grpc-likecoin-mainnet.pikaser.net:443", - "provider": "PikaSer" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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" - } - ] - }, - "apis": { - "rpc": [ - { - "address": "https://logos-rpc.provable.dev:443/", - "provider": "laurel.provable" - } - ], - "rest": [ - { - "address": "https://logos.provable.dev/rest/", - "provider": "laurel.provable" - } - ], - "grpc": [ - { - "address": "logos-grpc.provable.dev:443", - "provider": "laurel.provable" - } - ], - "evm-http-jsonrpc": [ - { - "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" - }, - "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" - } - ] - }, - { - "$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": [ - { - "denom": "ulyl" - } - ] - }, - "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": [ - { - "address": "https://rpc-main.joinloyal.io/" - }, - { - "address": "https://loyal-rpc.polkachu.com", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://lcd-main.joinloyal.io/" - }, - { - "address": "https://loyal-api.polkachu.com", - "provider": "Polkachu" - } - ], - "grpc": [ - { - "address": "https://grpc.loyal.nodestake.top", - "provider": "NodeStake" - } - ] - }, - "explorers": [ - { - "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": "NodeStake Explorer", - "url": "https://explorer.nodestake.top/loyal", - "tx_page": "https://explorer.nodestake.top/loyal/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "ulumen" - } - ] - }, - "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": [ - { - "address": "https://rpc-lumenx.cryptonet.pl/", - "provider": "CryptoNet" - }, - { - "address": "https://lumenx-rpc.kynraze.com/", - "provider": "Kynraze" - } - ], - "rest": [ - { - "address": "https://api-lumenx.cryptonet.pl/", - "provider": "CryptoNet" - }, - { - "address": "https://api-lumenx.nodine.id/", - "provider": "Nodine.ID" - }, - { - "address": "https://lcd.lumenx.hexnodes.co/", - "provider": "Hexnodes" - } - ], - "grpc": [ - { - "address": "https://lumenx-grpc.kynraze.com", - "provider": "Kynraze" - }, - { - "address": "https://grpc-lumenx.nodine.id", - "provider": "Nodine.ID" - }, - { - "address": "https://grpc.lumenx.hexnodes.co", - "provider": "Hexnodes" - } - ] - }, - "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.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": "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": "atomscan", - "url": "https://atomscan.com/lumenx", - "tx_page": "https://atomscan.com/lumenx/transactions/${txHash}", - "account_page": "https://atomscan.com/lumenx/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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://lumnetwork-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://lum-rpc.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://lum-rpc.stakerhouse.com", - "provider": "StakerHouse" - } - ], - "rest": [ - { - "address": "https://node0.mainnet.lum.network/rest", - "provider": "Lum Foundation" - }, - { - "address": "https://lumnetwork-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://lum-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://lum-rest.stakerhouse.com", - "provider": "StakerHouse" - } - ], - "grpc": [ - { - "address": "lumnetwork-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "lum-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "lum-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "umars" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.46.7", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.30.0" - }, - "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://mars-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://mars-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://mars-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc.expedition-mars.com", - "provider": "Expedition Mars" - }, - { - "address": "https://mars-rpc.genznodes.dev:443", - "provider": "genznodes" - }, - { - "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.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - } - ], - "rest": [ - { - "address": "https://rest.marsprotocol.io:443", - "provider": "Delphi Labs" - }, - { - "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-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://lcd.expedition-mars.com:443", - "provider": "Expedition Mars" - }, - { - "address": "https://mars-api.genznodes.dev:443", - "provider": "genznodes" - }, - { - "address": "https://mars-api.stakeandrelax.net", - "provider": "Stake&Relax Validator 🦥" - }, - { - "address": "https://mars-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://mars-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - } - ], - "grpc": [ - { - "address": "grpc.marsprotocol.io:443", - "provider": "Delphi Labs" - }, - { - "address": "mars-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "mars-grpc.polkachu.com:18590", - "provider": "Polkachu" - }, - { - "address": "mars-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "mars-grpc.genznodes.dev:26090", - "provider": "genznodes" - }, - { - "address": "mars.grpc.kjnodes.com:14590", - "provider": "kjnodes" - }, - { - "address": "grpc.mars.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "mars-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "mars-grpc.stakeandrelax.net:18590", - "provider": "Stake&Relax 🦥" - } - ] - }, - "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": "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": "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}" - } - ], - "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": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://tendermint.mayachain.info", - "provider": "tendermint" - } - ], - "rest": [ - { - "address": "https://mayanode.mayachain.info", - "provider": "mayanode" - } - ] - }, - "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": [ - { - "denom": "umedas", - "low_gas_price": 0.1, - "average_gas_price": 0.25, - "high_gas_price": 0.4 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "umedas" - } - ] - }, - "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://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": {}, - "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": [ - { - "address": "https://rpc-meme-1.meme.sx/", - "provider": "MEME Foundation" - }, - { - "address": "https://meme-rpc.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://rpc-meme.pupmos.network/", - "provider": "PUPMØS" - }, - { - "address": "https://meme.rpc.m.anode.team", - "provider": "ANODE TEAM" - } - ], - "rest": [ - { - "address": "https://api-meme-1.meme.sx/", - "provider": "MEME Foundation" - }, - { - "address": "https://meme-api.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://api-meme.pupmos.network/", - "provider": "PUPMØS" - }, - { - "address": "https://meme.api.m.anode.team", - "provider": "ANODE TEAM" - } - ], - "grpc": [ - { - "address": "meme-grpc.polkachu.com:14790", - "provider": "Polkachu" - } - ] - }, - "explorers": [ - { - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "utick" - } - ] - }, - "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": [ - { - "kind": "ping.pub", - "url": "https://ping.pub/microtick", - "tx_page": "https://ping.pub/microtick/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-migaloo.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://migaloo-rpc.kleomedes.network:443", - "provider": "Kleomedes" - }, - { - "address": "https://rpc.whitewhale.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://migaloo.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://migaloo-rpc.cosmosrescue.com", - "provider": "cosmosrescue" - } - ], - "rest": [ - { - "address": "https://migaloo-api.polkachu.com:443", - "provider": "Polkachu" - }, - { - "address": "https://migaloo-api.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-migaloo.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://migaloo-api.kleomedes.network:443", - "provider": "Kleomedes" - }, - { - "address": "https://api.whitewhale.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://migaloo.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://migaloo-api.cosmosrescue.com", - "provider": "cosmosrescue" - } - ], - "grpc": [ - { - "address": "migaloo-grpc.polkachu.com:20790", - "provider": "Polkachu" - }, - { - "address": "migaloo-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "whitewhale-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-migaloo.cosmos-spaces.cloud:4810", - "provider": "Cosmos Spaces" - }, - { - "address": "https://grpc.whitewhale.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "migaloo.grpc.kjnodes.com:14990", - "provider": "kjnodes" - }, - { - "address": "migaloo-grpc.cosmosrescue.com:9090", - "provider": "cosmosrescue" - } - ] - }, - "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": "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": "atomscan", - "url": "https://atomscan.com/migaloo", - "tx_page": "https://atomscan.com/migaloo/transactions/${txHash}", - "account_page": "https://atomscan.com/migaloo/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "umis" - } - ] - }, - "codebase": {}, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.gw.mises.site:443", - "provider": "Mises-1" - }, - { - "address": "https://e2.mises.site:443", - "provider": "Mises-3" - }, - { - "address": "https://w2.mises.site:443", - "provider": "Mises-5" - } - ], - "rest": [], - "grpc": [] - }, - "explorers": [ - { - "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}" - } - ], - "images": [ - { - "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": [ - { - "denom": "umun" - } - ] - }, - "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": [ - { - "address": "https://mainnet1rpc.mun.money", - "provider": "Mun" - }, - { - "address": "https://mainnet-mun-rpc.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://rpc.mun.tcnetwork.io", - "provider": "TC Network" - } - ], - "rest": [ - { - "address": "https://mainnet1.mun.money", - "provider": "Mun" - }, - { - "address": "https://mainnet-mun-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://rest.mun.tcnetwork.io", - "provider": "TC Network" - } - ], - "grpc": [] - }, - "explorers": [ - { - "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.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": "TC Network", - "url": "https://explorer.tcnetwork.io/mun", - "tx_page": "https://explorer.tcnetwork.io/mun/transaction/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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" - } - ] - }, - "apis": { - "rpc": [ - { - "address": "https://mythos-rpc.provable.dev:443/", - "provider": "laurel.provable" - } - ], - "rest": [ - { - "address": "https://mythos.provable.dev/rest/", - "provider": "laurel.provable" - } - ], - "grpc": [ - { - "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" - }, - "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" - } - ] - }, - { - "$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": { - "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.novel.remedy.tm.p2p.org", - "provider": "P2P" - }, - { - "address": "https://neutron-rpc.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-neutron.whispernode.com", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://rpc-neutron.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "http://rpc.neutron.nodestake.top", - "provider": "NodeStake" - }, - { - "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://rpc-neutron.in3s.com:443", - "provider": "in3s.com" - }, - { - "address": "https://rpc.neutron.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://rest-lb.neutron.org", - "provider": "Neutron" - }, - { - "address": "https://api.novel.remedy.tm.p2p.org", - "provider": "P2P" - }, - { - "address": "https://neutron-api.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://lcd-neutron.whispernode.com", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api-neutron.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "http://api.neutron.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://neutron-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://community.nuxian-node.ch:6797/neutron/crpc", - "provider": "PRO Delegators" - }, - { - "address": "https://lcd.neutron.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "grpc-kralum.neutron-1.neutron.org:80", - "provider": "Neutron" - }, - { - "address": "https://grpc.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": "grpc-neutron.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "grpc-neutron.cosmos-spaces.cloud:3090", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc.neutron.nodestake.top:9090", - "provider": "NodeStake" - }, - { - "address": "neutron-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://grpc.neutron.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "unibi" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, - "codebase": { - "cosmos_sdk_version": "v0.45.5", - "cosmwasm_enabled": true, - "cosmwasm_version": "v0.44.0" - }, - "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" - }, - "description": "A Web3 hub ushering in the next era of money", - "apis": { - "rpc": [ - { - "address": "https://rpc.nibiru.fi", - "provider": "Nibiru Foundation" - } - ], - "rest": [ - { - "address": "https://lcd.nibiru.fi", - "provider": "Nibiru Foundation" - } - ], - "grpc": [ - { - "address": "grpc.nibiru.fi:443", - "provider": "Nibiru Foundation" - } - ] - }, - "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "v0.45.16", - "cosmwasm_enabled": false - }, - "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.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - } - ], - "rest": [ - { - "address": "https://noble-api.polkachu.com", - "provider": "polkachu" - }, - { - "address": "https://noble-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - } - ], - "grpc": [ - { - "address": "noble-grpc.polkachu.com:21590", - "provider": "polkachu" - }, - { - "address": "https://noble-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - } - ] - }, - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "unois" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, - "codebase": { - "cosmos_sdk_version": "v0.45.15", - "cosmwasm_enabled": true, - "cosmwasm_version": "v0.31.0" - }, - "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", - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://nois-rpc.nysa.network", - "provider": "nysa.network" - }, - { - "address": "https://nois.rpc.bccnodes.com", - "provider": "BccNodes" - }, - { - "address": "https://nois-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-nois.mib.tech/", - "provider": "MadeInBlock" - }, - { - "address": "https://m-nois.rpc.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "http://nois.rpc.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-nois.ezstaking.dev", - "provider": "EZStaking" - }, - { - "address": "https://nois-mainnet-rpc.itrocket.net", - "provider": "itrocket" - }, - { - "address": "https://rpc.nois.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc-nois.d-stake.xyz", - "provider": "D-Stake" - }, - { - "address": "https://rpc-nois.sr20de.xyz", - "provider": "SR20DE" - }, - { - "address": "https://nois-mainnet-rpc.autostake.com", - "provider": "AutoStake" - }, - { - "address": "https://nois-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://nois.kingnodes.com", - "provider": "Kingnodes" - }, - { - "address": "https://nois.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rpc.nois.silentvalidator.com", - "provider": "silent" - }, - { - "address": "https://nois-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - } - ], - "grpc": [ - { - "address": "https://nois-grpc.nysa.network", - "provider": "nysa.network" - }, - { - "address": "nois.grpc.bccnodes.com:443", - "provider": "BccNodes" - }, - { - "address": "https://nois-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://grpc.noismain.mcbnode.online", - "provider": "mcbnode" - }, - { - "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": "https://grpc.nois.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://grpc-nois.d-stake.xyz", - "provider": "D-Stake" - }, - { - "address": "https://grpc.nois.hexnodes.co", - "provider": "HexNodes" - }, - { - "address": "https://grpc-nois.sr20de.xyz", - "provider": "SR20DE" - }, - { - "address": "https://nois-testnet-grpc.autostake.com", - "provider": "AutoStake" - }, - { - "address": "nois-grpc.polkachu.com:17390", - "provider": "Polkachu" - }, - { - "address": "https://grpc-nois.kingnodes.com", - "provider": "Kingnodes" - }, - { - "address": "nois.grpc.kjnodes.com:15190", - "provider": "kjnodes" - }, - { - "address": "grpc.nois.silentvalidator.com:443", - "provider": "silent" - }, - { - "address": "nois-grpc.stakeandrelax.net:17390", - "provider": "Stake&Relax 🦥" - } - ], - "rest": [ - { - "address": "https://m-nois.api.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://nois-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://lcd-nois.ezstaking.dev", - "provider": "EZStaking" - }, - { - "address": "https://lcd-nois.mib.tech/", - "provider": "MadeInBlock" - }, - { - "address": "https://nois.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://nois-mainnet-api.itrocket.net", - "provider": "itrocket" - }, - { - "address": "https://api.nois.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://api-nois.d-stake.xyz", - "provider": "D-Stake" - }, - { - "address": "https://api-nois.sr20de.xyz", - "provider": "SR20DE" - }, - { - "address": "https://nois-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://nois.kingnodes.com", - "provider": "Kingnodes" - }, - { - "address": "https://nois.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://api.nois.silentvalidator.com", - "provider": "silent" - }, - { - "address": "https://nois-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - } - ] - }, - "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": "🔥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": "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" - ] - }, - { - "$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": { - "cosmos_sdk_version": "v0.47.6-nolus", - "cosmwasm_enabled": true, - "cosmwasm_version": "neutron-org/wasmd v0.45.0" - }, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" - }, - "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://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.sphincs.plus", - "provider": "Sphincs.plus 🔅" - }, - { - "address": "https://nolus.rpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://rpc-nolus.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://nolus.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://nolus-rpc.enigma-validator.com/", - "provider": "Enigma" - }, - { - "address": "https://nolus-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "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.ibs.team", - "provider": "Inter Blockchain Services" - } - ], - "rest": [ - { - "address": "https://pirin-cl.nolus.network:1317", - "provider": "NolusProtocol" - }, - { - "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-lcd.sphincs.plus", - "provider": "Sphincs.plus 🔅" - }, - { - "address": "https://api-nolus.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://nolus.api.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://rest-nolus.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://nolus.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://nolus-lcd.enigma-validator.com/", - "provider": "Enigma" - }, - { - "address": "https://nolus-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://nolus-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://nolus-api.ibs.team", - "provider": "Inter Blockchain Services" - } - ], - "grpc": [ - { - "address": "https://pirin-cl.nolus.network:9090", - "provider": "NolusProtocol" - }, - { - "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.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "grpc-nolus.architectnodes.com:1443", - "provider": "Architect Nodes" - }, - { - "address": "grpc-nolus.cosmos-spaces.cloud:1190", - "provider": "Cosmos Spaces" - }, - { - "address": "nolus.grpc.kjnodes.com:14390", - "provider": "kjnodes" - }, - { - "address": "nolus-grpc.w3coins.io:19790", - "provider": "w3coins" - }, - { - "address": "nolus-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "unom" - } - ], - "lock_duration": { - "time": "1209600s" - } - }, - "codebase": { - "cosmos_sdk_version": "cosmos-sdk-proto 0.19.0" - }, - "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" - }, - "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://nomic-rpc.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://rpc-nomic.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://rpc.nomic.basementnodes.ca:443", - "provider": "Basement Nodes ⚡️" - }, - { - "address": "https://rpc.nomic.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://app.nomic.io:8443", - "provider": "nomic-io" - }, - { - "address": "https://rest.nomic.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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": [ - { - "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" - } - }, - { - "$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": { - "cosmwasm_enabled": true - }, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png" - }, - "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" - } - ], - "rest": [ - { - "address": "https://nym-api.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://api.nyx.nodes.guru/", - "provider": "nodes guru" - }, - { - "address": "https://api.nymtech.net", - "provider": "Nym" - } - ], - "grpc": [ - { - "address": "nym-grpc.polkachu.com:15390", - "provider": "Polkachu" - }, - { - "address": "grpc.nymtech.net:443", - "provider": "Nym" - } - ] - }, - "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": "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": "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}" - } - ], - "images": [ - { - "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": [ - { - "denom": "uocta", - "fixed_min_gas_price": 0 - } - ] - }, - "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" - }, - "apis": { - "rpc": [], - "rest": [] - }, - "explorers": [ - { - "kind": "Octa explorer", - "url": "http://explorer.octa-coin.com/", - "tx_page": "http://explorer.octa-coin.com/txs/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "loki" - } - ] - }, - "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": [ - { - "address": "http://34.79.179.216:26657", - "provider": "Odin Protocol" - }, - { - "address": "https://odin-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://odin-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ], - "rest": [ - { - "address": "http://34.79.179.216:1317/", - "provider": "Odin Protocol" - }, - { - "address": "https://odin-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://odin-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ], - "grpc": [ - { - "address": "odin-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "odin-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ] - }, - "explorers": [ - { - "kind": "odin web", - "url": "https://mainnet.odinprotocol.io/", - "tx_page": "https://mainnet.odinprotocol.io/transactions/${txHash}" - }, - { - "kind": "ping.pub", - "url": "https://ping.pub/odin", - "tx_page": "https://ping.pub/odin/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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 - } - ] - }, - "codebase": {}, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" - }, - "apis": { - "rpc": [ - { - "address": "https://exchaintmrpc.okex.org", - "provider": "okx chain" - } - ], - "rest": [] - }, - "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}" - } - ], - "images": [ - { - "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": { - "cosmos_sdk_version": "v0.47.5" - }, - "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" - }, - "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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "uflix" - } - ] - }, - "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://rpc.omniflix.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc.omniflix.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://rpc-omniflixhub-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://omniflixhub-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc.omniflix.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://omniflixhub-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc-omniflix.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://omniflix-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://rpc-omniflixhub.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://omniflix-rpc.dakshavalidator.in", - "provider": "Daksha Validator" - }, - { - "address": "https://rpc-omniflix.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "https://rpc.omniflix.stakeup.tech:443", - "provider": "StakeUp" - }, - { - "address": "https://rpc.omniflix.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://api.omniflix.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://api-omniflixhub-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://omniflixhub-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-omniflixhub.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://api.omniflix.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://omniflix.kingnodes.com", - "provider": "kingnodes" - }, - { - "address": "https://omniflixhub-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rest-omniflix.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://omniflix-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://omniflix-api.dakshavalidator.in", - "provider": "Daksha Validator" - }, - { - "address": "http://omniflix.api.staking-explorer.com", - "provider": "Daily $FLIX DROP 💰" - }, - { - "address": "https://api.omniflix.stakeup.tech", - "provider": "StakeUp" - }, - { - "address": "https://lcd.omniflix.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "grpc-omniflix.kingnodes.com:443", - "provider": "kingnodes" - }, - { - "address": "grpc.omniflix.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "grpc-omniflixhub-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "omniflixhub-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc-omniflixhub.cosmos-spaces.cloud:2230", - "provider": "Cosmos Spaces" - }, - { - "address": "omniflixhub-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-omniflix.architectnodes.com:1443", - "provider": "Architect Nodes" - }, - { - "address": "services.staketab.com:9015", - "provider": "Staketab" - }, - { - "address": "grpc-omniflix.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "grpc.omniflix.stakeup.tech:443", - "provider": "StakeUp" - }, - { - "address": "https://grpc.omniflix.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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" - } - ], - "rest": [ - { - "address": "https://rest-mainnet.onomy.io", - "provider": "onomy" - } - ], - "grpc": [] - }, - "explorers": [ - { - "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}" - } - ], - "keywords": [ - "dex", - "stablecoin", - "bridge", - "staking" - ], - "images": [ - { - "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": {}, - "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.nodine.id/", - "provider": "Nodine.ID" - }, - { - "address": "https://oraichain-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc-oraichain.mms.team", - "provider": "MMS" - }, - { - "address": "https://rpc-orai.blockval.io/", - "provider": "Blockval" - } - ], - "rest": [ - { - "address": "http://lcd.orai.io", - "provider": "oraichain-team" - }, - { - "address": "https://oraichain-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://api-oraichain.mms.team", - "provider": "MMS" - }, - { - "address": "https://api-orai.blockval.io", - "provider": "Blockval" - } - ], - "grpc": [ - { - "address": "grpc-oraichain.mms.team:443", - "provider": "MMS" - }, - { - "address": "oraichain-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-orai.blockval.io:9390", - "provider": "Blockval" - } - ] - }, - "explorers": [ - { - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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" - }, - "layout": "logo", - "text_position": "right" - }, - { - "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.", - "apis": { - "rpc": [ - { - "address": "https://rpc.osmosis.zone/", - "provider": "Osmosis Foundation" - }, - { - "address": "https://rpc-osmosis.blockapsis.com", - "provider": "chainapsis" - }, - { - "address": "https://osmosis-rpc.onivalidator.com", - "provider": "Oni Validator ⛩️" - }, - { - "address": "https://osmosis-rpc.quickapi.com:443", - "provider": "Chainlayer" - }, - { - "address": "https://rpc-osmosis.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://osmosis-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-osmosis.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://rpc-osmosis.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://osmosis-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-osmosis-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://osmosis.rpc.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://osmosis-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://osmosis.api.onfinality.io/public", - "provider": "OnFinality" - }, - { - "address": "https://rpc-osmosis-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://osmosis-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc-osmosis.mms.team", - "provider": "MMS" - }, - { - "address": "https://osmosis-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://community.nuxian-node.ch:6797/osmosis/trpc", - "provider": "PRO Delegators" - }, - { - "address": "http://rpc-osmosis.freshstaking.com:31657", - "provider": "FreshSTAKING" - }, - { - "address": "https://osmosis-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://osmosis-mainnet.rpc.l0vd.com:443", - "provider": "L0vd.com ❤️" - }, - { - "address": "https://osmosis-rpc.reece.sh", - "provider": "Reecepbcups" - }, - { - "address": "https://rpc.osmosis.validatus.com", - "provider": "Validatus" - }, - { - "address": "https://rpc.osmosis.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://lcd.osmosis.zone/", - "provider": "Osmosis Foundation" - }, - { - "address": "https://osmosis-lcd.quickapi.com:443", - "provider": "Chainlayer" - }, - { - "address": "https://lcd-osmosis.blockapsis.com", - "provider": "chainapsis" - }, - { - "address": "https://osmosis-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rest-osmosis.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://api-osmosis-ia.cosmosia.notional.ventures", - "provider": "Notional" - }, - { - "address": "https://api-osmosis.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://osmosis-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://osmosis.rest.stakin-nodes.com", - "provider": "Stakin" - }, - { - "address": "https://osmosis-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://api-osmosis-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://osmosis-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://lcd-osmosis.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api-osmosis.mms.team", - "provider": "MMS" - }, - { - "address": "https://osmosis-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://community.nuxian-node.ch:6797/osmosis/crpc", - "provider": "PRO Delegators" - }, - { - "address": "https://osmosis-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://osmosis-mainnet.api.l0vd.com:443", - "provider": "L0vd.com ❤️" - }, - { - "address": "https://osmosis-api.reece.sh", - "provider": "Reecepbcups" - }, - { - "address": "https://api.osmosis.validatus.com:443", - "provider": "Validatus" - }, - { - "address": "https://lcd.osmosis.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "osmosis-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc-osmosis-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "osmosis.grpc.stakin-nodes.com:443", - "provider": "Stakin" - }, - { - "address": "osmosis-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-osmosis.cosmos-spaces.cloud:1130", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc-osmosis-01.stakeflow.io:6754", - "provider": "Stakeflow" - }, - { - "address": "services.staketab.com:9010", - "provider": "Staketab" - }, - { - "address": "osmosis-grpc.w3coins.io:12590", - "provider": "w3coins" - }, - { - "address": "grpc-osmosis.mms.team:443", - "provider": "MMS" - }, - { - "address": "osmosis-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "osmosis-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "https://grpc-osmosis.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "osmosis-mainnet.grpc.l0vd.com:80", - "provider": "L0vd.com ❤️" - }, - { - "address": "grpc-osmosis.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "grpc.osmosis.validatus.com:443", - "provider": "Validatus" - }, - { - "address": "https://grpc.osmosis.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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": "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": "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": "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": "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}" - } - ], - "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": [ - { - "denom": "umed" - } - ] - }, - "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": [ - { - "address": "https://rpc.gopanacea.org", - "provider": "medibloc" - }, - { - "address": "https://panacea-rpc.staketab.org:443", - "provider": "Staketab" - } - ], - "rest": [ - { - "address": "https://api.gopanacea.org", - "provider": "medibloc" - }, - { - "address": "https://panacea-rest.staketab.org", - "provider": "Staketab" - } - ], - "grpc": [ - { - "address": "services.staketab.com:9400", - "provider": "Staketab" - } - ] - }, - "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": "bigdipper", - "url": "https://explorer.gopanacea.org", - "tx_page": "https://explorer.gopanacea.org/transactions/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.passage.vitwit.com", - "provider": "vitwit" - }, - { - "address": "https://passage-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://rpc-passage.ecostake.com", - "provider": "ecostake" - }, - { - "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.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://rpc.passage.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://passage-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://passage-rpc.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://rpc-passage.d-stake.xyz", - "provider": "D-stake" - }, - { - "address": "https://rpc-passage.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://passage-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://passage-rpc.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://passage-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://passage-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://rpc-passage.mainnet.validatrium.club", - "provider": "Validatrium" - } - ], - "rest": [ - { - "address": "https://api.passage.vitwit.com", - "provider": "vitwit" - }, - { - "address": "https://passage-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://rest-passage.ecostake.com", - "provider": "ecostake" - }, - { - "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-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://api.passage.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://passage-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://passage-api.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://api-passage.d-stake.xyz", - "provider": "D-stake" - }, - { - "address": "https://passage-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://lcd-passage.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://passage-rest.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://passage-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://passage-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://api-passage.mainnet.validatrium.club", - "provider": "Validatrium" - } - ], - "grpc": [ - { - "address": "grpc-passage-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "passage-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "passage-grpc.polkachu.com:15690", - "provider": "Polkachu" - }, - { - "address": "grpc-passage.cosmos-spaces.cloud:2320", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc.passage.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "passage-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "services.staketab.com:9023", - "provider": "Staketab" - }, - { - "address": "passage-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - }, - { - "address": "passage-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "passage-grpc.stakeandrelax.net:15690", - "provider": "Stake&Relax 🦥" - }, - { - "address": "grpc-passage.mainnet.validatrium.club:20590", - "provider": "Validatrium" - } - ] - }, - "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": "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": "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" - }, - "images": [ - { - "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": [ - { - "denom": "upasg", - "fixed_min_gas_price": 0 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "upasg" - } - ] - }, - "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": "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}" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" - } - ] - }, - { - "$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": { - "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-persistent-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://persistence-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://persistence-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://rpc-persistence.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://rpc-persistence.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://persistence-mainnet-rpc.cosmonautstakes.com", - "provider": "Cosmonaut Stakes" - }, - { - "address": "https://persistence-rpc.quantnode.tech", - "provider": "QuantNode" - }, - { - "address": "https://persistence-rpc.zenscape.one", - "provider": "Zenscape" - }, - { - "address": "https://persistence-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://persistence-rpc.stakeandrelax.net", - "provider": "Stake&Relax Validator 🦥" - }, - { - "address": "https://rpc.persistence.posthuman.digital:443", - "provider": "POSTHUMAN∞DVS" - }, - { - "address": "https://rpc-persistence-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "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.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - } - ], - "rest": [ - { - "address": "https://rest.core.persistence.one", - "provider": "Persistence" - }, - { - "address": "https://api-persistent-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://persistence-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://api-persistence.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://persistence-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "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-rest.cosmonautstakes.com", - "provider": "Cosmonaut Stakes" - }, - { - "address": "https://persistence-lcd.quantnode.tech", - "provider": "QuantNode" - }, - { - "address": "https://persistence-rest.zenscape.one", - "provider": "Zenscape" - }, - { - "address": "https://persistence-api.stakeandrelax.net", - "provider": "Stake&Relax Validator 🦥" - }, - { - "address": "https://rest.persistence.posthuman.digital:443", - "provider": "POSTHUMAN∞DVS" - }, - { - "address": "https://api-persistence-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://persistence-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://persistence-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://persistence-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - } - ], - "grpc": [ - { - "address": "grpc.core.persistence.one:443", - "provider": "Persistence" - }, - { - "address": "grpc-persistent-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "persistence-grpc.polkachu.com:15490", - "provider": "Polkachu" - }, - { - "address": "persistence-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc.persistence.posthuman.digital:80", - "provider": "POSTHUMAN∞DVS" - }, - { - "address": "grpc-persistence.cosmos-spaces.cloud:1180", - "provider": "Cosmos Spaces" - }, - { - "address": "141.95.33.97:9090", - "provider": "Stakewolle.com | Auto-compound" - }, - { - "address": "grpc-persistence-01.stakeflow.io:49090", - "provider": "Stakeflow" - }, - { - "address": "persistence-grpc.w3coins.io:15490", - "provider": "w3coins" - }, - { - "address": "persistence-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "persistence-grpc.stakeandrelax.net:15490", - "provider": "Stake&Relax 🦥" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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://planq.rpc.bccnodes.com", - "provider": "BccNodes" - }, - { - "address": "https://rpc.planq.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://planq-rpc.kynraze.com", - "provider": "Kynraze" - }, - { - "address": "https://rpc.planq.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://rpc.planq.roomit.xyz", - "provider": "RoomIT" - }, - { - "address": "https://planq-rpc.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://rpc.planq.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://planq.rpc.skynodejs.net", - "provider": "skynodejs" - } - ], - "rest": [ - { - "address": "https://rest.planq.network", - "provider": "planq.network" - }, - { - "address": "https://api.planq.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://planq-api.kynraze.com", - "provider": "Kynraze" - }, - { - "address": "https://api.planq.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://api.planq.roomit.xyz", - "provider": "RoomIT" - }, - { - "address": "https://planq-api.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://api.planq.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://planq.api.skynodejs.net", - "provider": "skynodejs" - } - ], - "grpc": [ - { - "address": "grpc.planq.network:443", - "provider": "planq.network" - }, - { - "address": "planq.grpc.bccnodes.com:443", - "provider": "BccNodes" - }, - { - "address": "grpc.planq.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://grpc-planq.nodine.id", - "provider": "Nodine.id" - }, - { - "address": "https://grpc-planq.sxlzptprjkt.xyz:443", - "provider": "sxlzptprjkt | VALIDATOR" - }, - { - "address": "https://grpc.planq.nodexcapital.com:443", - "provider": "NodeX Validator" - }, - { - "address": "https://grpc.planq.roomit.xyz:8443", - "provider": "RoomIT" - }, - { - "address": "https://grpc.planq.hexnodes.co:33090", - "provider": "Hexnodes" - }, - { - "address": "planq-grpc.genznodes.dev:28090", - "provider": "genznodes" - }, - { - "address": "grpc.planq.safeblock.space:9090", - "provider": "Safe Block" - }, - { - "address": "https://planq.grpc.skynodejs.net", - "provider": "skynodejs" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://evm-rpc.planq.network", - "provider": "planq.network" - }, - { - "address": "https://jsonrpc.planq.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc-evm-planq.sxlzptprjkt.xyz", - "provider": "sxlzptprjkt | VALIDATOR" - }, - { - "address": "https://jsonrpc.planq.nodexcapital.com", - "provider": "NodeX Validator" - }, - { - "address": "https://planq-rpc-evm.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://evm.planq.safeblock.space", - "provider": "Safe Block" - } - ] - }, - "explorers": [ - { - "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": "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": "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": "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": "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": "Safe Block", - "url": "https://explorer.safeblock.space/planq", - "tx_page": "https://explorer.safeblock.space/planq/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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.point.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc.point.indonode.net", - "provider": "Indonode" - } - ], - "rest": [ - { - "address": "https://rpc-mainnet-1.point.space:1317", - "provider": "Point Network" - }, - { - "address": "https://api.point.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://api.point.indonode.net", - "provider": "Indonode" - } - ], - "grpc": [ - { - "address": "grpc.point.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://grpc.point.nodexcapital.com", - "provider": "⚡NodeX Validator⚡" - }, - { - "address": "https://grpc.point.indonode.net:21090", - "provider": "Indonode" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://rpc-mainnet-1.point.space", - "provider": "Point Network" - }, - { - "address": "https://jsonrpc.point.nodestake.top", - "provider": "NodeStake" - } - ] - }, - "explorers": [ - { - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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.io/", - "provider": "Figure" - }, - { - "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-rpc.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://provenance-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://rpc.provenance.blockval.io/", - "provider": "Blockval" - } - ], - "rest": [ - { - "address": "https://api-provenance.takeshi.team", - "provider": "TAKESHI" - }, - { - "address": "https://provenance-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://api.provenance.io", - "provider": "Figure" - }, - { - "address": "https://api-provenance-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://provenance-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://provenance-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://api.provenance.blockval.io", - "provider": "Blockval" - } - ], - "grpc": [ - { - "address": "grpc-provenance.takeshi.team:443", - "provider": "TAKESHI" - }, - { - "address": "provenance-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-provenance-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "grpc.provenance.blockval.io:9290", - "provider": "Blockval" - } - ] - }, - "explorers": [ - { - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.45.11" - }, - "apis": { - "rpc": [ - { - "address": "https://px-json.pundix.com", - "provider": "Pundi X" - } - ], - "rest": [ - { - "address": "https://px-rest.pundix.com", - "provider": "Pundi X" - } - ], - "grpc": [ - { - "address": "https://px-grpc.pundix.com", - "provider": "Pundi X" - } - ] - }, - "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" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png" - }, - "explorers": [ - { - "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": { - "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.polkachu.com", - "provider": "polkachu" - }, - { - "address": "https://rpc-quasar.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://quasar-rpc.enigma-validator.com", - "provider": "Enigma" - }, - { - "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.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rpc-quasar.validavia.me", - "provider": "Validavia" - }, - { - "address": "https://quasar-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://quasar-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://quasar-rpc.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://quasar-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://quasar-rpc.genznodes.dev", - "provider": "genznodes" - } - ], - "rest": [ - { - "address": "https://quasar-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://quasar-api.polkachu.com", - "provider": "polkachu" - }, - { - "address": "https://lcd-quasar.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api-quasar.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://quasar-lcd.enigma-validator.com", - "provider": "Enigma" - }, - { - "address": "https://quasar-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://quasar.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://lcd-quasar.validavia.me", - "provider": "Validavia" - }, - { - "address": "https://quasar-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://quasar-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://quasar-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://quasar-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://quasar-api.genznodes.dev", - "provider": "genznodes" - } - ], - "grpc": [ - { - "address": "https://quasar-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "quasar-grpc.polkachu.com:18290", - "provider": "polkachu" - }, - { - "address": "grpc-quasar.cosmos-spaces.cloud:12890", - "provider": "Cosmos Spaces" - }, - { - "address": "quasar-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "quasar.grpc.kjnodes.com:14890", - "provider": "kjnodes" - }, - { - "address": "quasar-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "quasar-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "quasar-grpc.stakeandrelax.net:18290", - "provider": "Stake&Relax 🦥" - }, - { - "address": "quasar-grpc.genznodes.dev:29090", - "provider": "genznodes" - } - ] - }, - "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": "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": [ - { - "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": { - "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.zone:443", - "provider": "Quicksilver" - }, - { - "address": "http://quicksilver.statesync.nodersteam.com:16657", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://rpc-quicksilver-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "https://quicksilver-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-quicksilver.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://m-quicksilver.rpc.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "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-rpc.ibs.team:443", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://quicksilver.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rpc-quicksilver.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://rpc.quicksilver.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://quicksilver-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://quicksilver-rpc.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://quicksilver-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc-quicksilver.mms.team/", - "provider": "MMS" - }, - { - "address": "https://quicksilver-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://quicksilver-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://mainnet-quicksilver-rpc.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://quicksilver.tdrsys.com:2053", - "provider": "TdrSys" - } - ], - "rest": [ - { - "address": "https://api-quicksilver.takeshi.team:443", - "provider": "TAKESHI" - }, - { - "address": "https://api-quicksilver-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "http://quicksilver.api.nodersteam.com:16017", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://quicksilver-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-quicksilver.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://quicksilver-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://m-quicksilver.api.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://quick.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://quicksilver.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rest-quicksilver.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://api.quicksilver.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://quicksilver-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://quicksilver-api.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://quicksilver-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://api-quicksilver.mms.team", - "provider": "MMS" - }, - { - "address": "https://quicksilver-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://quicksilver-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://mainnet-quicksilver-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://quicksilver.tdrsys.com", - "provider": "TdrSys" - } - ], - "grpc": [ - { - "address": "grpc-quicksilver.takeshi.team:443", - "provider": "TAKESHI" - }, - { - "address": "grpc-quicksilver-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "quicksilver-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "quicksilver.grpc.nodersteam.com:9161", - "provider": "[NODERS]TEAM" - }, - { - "address": "grpc-quicksilver.cosmos-spaces.cloud:3300", - "provider": "Cosmos Spaces" - }, - { - "address": "quicksilver-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "quicksilver.grpc.kjnodes.com:11190", - "provider": "kjnodes" - }, - { - "address": "quick.grpc.m.stavr.tech:9113", - "provider": "🔥STAVR🔥" - }, - { - "address": "grpc-quicksilver.architectnodes.com:1443", - "provider": "Architect Nodes" - }, - { - "address": "archive-grpc-quicksilver.huginn.tech:9090", - "provider": "Huginn" - }, - { - "address": "https://grpc.quicksilver.indonode.net:28090", - "provider": "Indonode" - }, - { - "address": "services.staketab.com:9034", - "provider": "Staketab" - }, - { - "address": "https://quicksilver-grpc.theamsolutions.info:9797", - "provider": "AM Solutions" - }, - { - "address": "quicksilver-grpc.w3coins.io:11190", - "provider": "w3coins" - }, - { - "address": "grpc-quicksilver.mms.team:443", - "provider": "MMS" - }, - { - "address": "quicksilver-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "quicksilver-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "mainnet-quicksilver.konsortech.xyz:46090", - "provider": "KonsorTech" - }, - { - "address": "https://quicksilver.tdrsys.com:2083", - "provider": "TdrSys" - } - ] - }, - "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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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.theamsolutions.info:443", - "provider": "AM Solutions" - }, - { - "address": "https://qwoyn-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://qwoyn-rpc-archive.staketab.org:443", - "provider": "Staketab archive" - }, - { - "address": "https://qwoyn-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc-qwoyn.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "https://rpc.qwoyn.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "services.staketab.com:9430", - "provider": "Staketab" - }, - { - "address": "services.staketab.com:2000", - "provider": "Staketab archive" - }, - { - "address": "https://grpc-qwoyn.theamsolutions.info:443", - "provider": "AM Solutions" - }, - { - "address": "https://qwoyn-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc-qwoyn.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "https://grpc.qwoyn.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://rest-qwoyn.theamsolutions.info:443", - "provider": "AM Solutions" - }, - { - "address": "https://qwoyn-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://qwoyn-rest-archive.staketab.org", - "provider": "Staketab archive" - }, - { - "address": "https://qwoyn-api.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-qwoyn.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://lcd.qwoyn.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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/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" - }, - "images": [ - { - "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": { - "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.bccnodes.com/", - "provider": "BccNodes" - }, - { - "address": "https://rpc-realio-network.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "http://realio.rpc.m.stavr.tech:21097", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc.realio.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://rpc.realio.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://rpc-realio.vinjan.xyz", - "provider": "vinjan" - }, - { - "address": "https://api-realio.sr20de.xyz", - "provider": "Sr20de" - }, - { - "address": "https://rpc.realio.safeblock.space", - "provider": "Safe Block" - } - ], - "rest": [ - { - "address": "https://realio-api.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://realio.lcd.bccnodes.com/", - "provider": "BccNodes" - }, - { - "address": "https://api-realio-network.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://realio.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api.realio.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://api.realio.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://api-realio.vinjan.xyz", - "provider": "vinjan" - }, - { - "address": "https://rpc-realio.sr20de.xyz", - "provider": "Sr20de" - }, - { - "address": "https://api.realio.safeblock.space", - "provider": "Safe Block" - } - ], - "grpc": [ - { - "address": "realio-grpc.genznodes.dev:30090", - "provider": "genznodes" - }, - { - "address": "realio.grpc.bccnodes.com:10990", - "provider": "BccNodes" - }, - { - "address": "http://realio.grpc.m.stavr.tech:9062", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://grpc-realio.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://grpc.realio.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://grpc-realio.sr20de.xyz", - "provider": "Sr20de" - }, - { - "address": "grpc.realio.safeblock.space:9090", - "provider": "Safe Block" - }, - { - "address": "realio.grpc.skynodejs.net", - "provider": "skynodejs" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://realio-rpc-evm.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://jsonrpc.realio.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://evm-realio.sr20de.xyz", - "provider": "Sr20de" - }, - { - "address": "https://evm.realio.safeblock.space", - "provider": "Safe Block" - } - ] - }, - "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": "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": "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}" - } - ], - "images": [ - { - "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": [ - { - "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": [ - { - "denom": "arebus" - } - ] - }, - "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": [ - { - "address": "https://api.rebuschain.com:26657/", - "provider": "Rebuschain" - }, - { - "address": "https://rebus.rpc.bccnodes.com:443", - "provider": "BccNodes" - }, - { - "address": "https://rebus.rpc.manticore.team:443/", - "provider": "MantiCore" - }, - { - "address": "http://rebus.statesync.nodersteam.com:18657", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://rpc.rebus.nodestake.top/", - "provider": "NodeStake" - }, - { - "address": "http://rebus.rpc.m.stavr.tech:40107", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-1.rebus.nodes.guru", - "provider": "Nodes.Guru" - }, - { - "address": "https://api.mainnet.rebus.money:26657", - "provider": "Rebuschain" - }, - { - "address": "https://rebus-rpc.brocha.in", - "provider": "Brochain" - }, - { - "address": "https://rebus-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://rebus-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rebus.rpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://rebus-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://api.rebuschain.com:1317/", - "provider": "Rebuschain" - }, - { - "address": "http://rebus.api.nodersteam.com:18017", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://rebus.api.manticore.team:443/", - "provider": "MantiCore" - }, - { - "address": "https://api.rebus.nodestake.top/", - "provider": "NodeStake" - }, - { - "address": "https://rebus.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api-1.rebus.nodes.guru", - "provider": "Nodes.Guru" - }, - { - "address": "https://api.mainnet.rebus.money:1317", - "provider": "Rebuschain" - }, - { - "address": "https://rebus-rest.brocha.in", - "provider": "Brochain" - }, - { - "address": "https://rebus-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://rebus-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rebus.api.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://rebus-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "rebus.grpc.manticore.team:443", - "provider": "MantiCore" - }, - { - "address": "rebus.grpc.bccnodes.com:14090", - "provider": "BccNodes" - }, - { - "address": "grpc.rebus.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "rebus.grpc.nodersteam.com:9181", - "provider": "[NODERS]TEAM" - }, - { - "address": "http://rebus.grpc.m.stavr.tech:3211", - "provider": "🔥STAVR🔥" - }, - { - "address": "rebus-grpc.brocha.in:443", - "provider": "Brochain" - }, - { - "address": "rebus-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rebus.grpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "rebus-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "explorers": [ - { - "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": "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": "🔥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": "atomscan", - "url": "https://atomscan.com/rebus", - "tx_page": "https://atomscan.com/rebus/transactions/${txHash}", - "account_page": "https://atomscan.com/rebus/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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": "http://public-rpc.regen.vitwit.com:26657", - "provider": "vitwit" - }, - { - "address": "https://regen.stakesystems.io:2053", - "provider": "stakesystems" - }, - { - "address": "http://rpc.regen.forbole.com:80", - "provider": "forbole" - }, - { - "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-rpc.easy2stake.com", - "provider": "Easy 2 Stake" - }, - { - "address": "https://regen-rpc.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://regen-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://regen-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "http://public-rpc.regen.vitwit.com:1317", - "provider": "vitwit" - }, - { - "address": "https://regen.stakesystems.io", - "provider": "stakesystems" - }, - { - "address": "https://api-regen-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://regen-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rest-regen.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://regen-lcd.easy2stake.com", - "provider": "Easy 2 Stake" - }, - { - "address": "https://regen-api.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://regen-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://regen-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc-regen-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "regen-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "regen-grpc.w3coins.io:22790", - "provider": "w3coins" - }, - { - "address": "regen-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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" - }, - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "uatolo" - } - ] - }, - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://rpcapi.rizon.world/", - "provider": "HDAC Technology AG" - }, - { - "address": "https://rpc.rizon.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://rizon-rpc.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://rizon-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://restapi.rizon.world/", - "provider": "HDAC Technology AG" - }, - { - "address": "https://api.rizon.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://rizon-api.ibs.team/", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://rizon-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc-rizon.mms.team:443", - "provider": "MMS" - }, - { - "address": "rizon-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "uscrt" - } - ] - }, - "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" - }, - "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" - } - ], - "rpc": [ - { - "address": "https://rpc.secret.express", - "provider": "Secret Community API - Secret Express" - }, - { - "address": "https://scrt.public-rpc.com", - "provider": "ANKR" - }, - { - "address": "https://secretnetwork-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://1rpc.io/scrt-rpc", - "provider": "1RPC - Automata Network" - }, - { - "address": "https://secretnetwork-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - } - ], - "rest": [ - { - "address": "https://lcd.secret.express", - "provider": "Secret Community API - Secret Express" - }, - { - "address": "https://secretnetwork-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "http://secretnetwork-mainnet-lcd.autostake.com:1317", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://1rpc.io/scrt-lcd", - "provider": "1RPC - Automata Network" - }, - { - "address": "https://secretnetwork-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - } - ], - "grpc": [ - { - "address": "secretnetwork-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "secretnetwork-mainnet-grpc.autostake.com:9090", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://grpc.secret.express", - "provider": "Secret Community API - Secret Express" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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.polkachu.com/", - "provider": "polkachu.com" - }, - { - "address": "https://sei-rpc.brocha.in/", - "provider": "Brochain" - }, - { - "address": "https://rpc-sei.stingray.plus/", - "provider": "StingRay" - }, - { - "address": "https://rpc-sei.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://sei.rpc.kjnodes.com", - "provider": "kjnodes" - } - ], - "rest": [ - { - "address": "https://sei-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://sei-api.polkachu.com/", - "provider": "polkachu.com" - }, - { - "address": "https://sei-rest.brocha.in/", - "provider": "Brochain" - }, - { - "address": "https://api-sei.stingray.plus/", - "provider": "StingRay" - }, - { - "address": "https://lcd-sei.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://sei.api.kjnodes.com", - "provider": "kjnodes" - } - ], - "grpc": [ - { - "address": "https://sei-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://sei-grpc.polkachu.com:11990/", - "provider": "polkachu.com" - }, - { - "address": "sei-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://grpc-sei.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "sei.grpc.kjnodes.com:443", - "provider": "kjnodes" - } - ] - }, - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "udvpn" - } - ] - }, - "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" - }, - "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.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://rpc.sentinel.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://rpc.sentinel.quokkastake.io", - "provider": "🐹 Quokka Stake" - }, - { - "address": "https://rpc.dvpn.roomit.xyz", - "provider": "RoomIT" - }, - { - "address": "https://sentinel-rpc.badgerbite.io/", - "provider": "BadgerBite" - }, - { - "address": "https://sentinel-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://sentinel-rpc.validatornode.com/", - "provider": "ValidatorNode" - }, - { - "address": "https://rpc.trinityvalidator.com", - "provider": "Trinity Validator" - }, - { - "address": "https://rpc.sentinelgrowthdao.com", - "provider": "Sentinel Growth DAO" - } - ], - "rest": [ - { - "address": "https://api-sentinel-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://lcd-sentinel.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api.sentinel.quokkastake.io", - "provider": "🐹 Quokka Stake" - }, - { - "address": "https://api.dvpn.roomit.xyz", - "provider": "RoomIT" - }, - { - "address": "https://sentinel-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://sentinel-api.validatornode.com", - "provider": "ValidatorNode" - }, - { - "address": "https://api.trinityvalidator.com", - "provider": "Trinity Validator" - }, - { - "address": "https://api.sentinelgrowthdao.com", - "provider": "Sentinel Growth DAO" - } - ], - "grpc": [ - { - "address": "grpc-sentinel-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "sentinel.grpcui.chaintools.host:443", - "provider": "ChainTools" - }, - { - "address": "sentinel-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc.dvpn.roomit.xyz:8443", - "provider": "RoomIT" - }, - { - "address": "sentinel-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "ValidatorNode", - "url": "https://explorer.validatornode.com/sentinel", - "tx_page": "https://explorer.validatornode.com/sentinel/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://rpc.sge.nodestake.top/", - "provider": "Nodestake" - }, - { - "address": "https://rpc.sge.roomit.xyz/", - "provider": "RoomIT" - }, - { - "address": "https://sge.rpc.m.stavr.tech:443", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-sge.nodeist.net/", - "provider": "Nodeist" - }, - { - "address": "https://sge-rpc.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://sge-rpc.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://rpc.sge.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://sge-rpc.sr20de.xyz", - "provider": "Sr20de" - }, - { - "address": "https://rpc.sge.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://mainnet-sge-rpc.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://sge-rpc.genznodes.dev", - "provider": "genznodes" - } - ], - "rest": [ - { - "address": "https://sge-api.lavenderfive.com/", - "provider": "Lavenderfive" - }, - { - "address": "https://sge-api.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://api.sge.nodestake.top/", - "provider": "Nostake" - }, - { - "address": "https://api-sge.nodeist.net/", - "provider": "Nodeist" - }, - { - "address": "https://sge.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://sge-api.ramuchi.tech/", - "provider": "ramuchi.tech" - }, - { - "address": "https://sge-rest.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://rest.sge.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://sge-api.sr20de.xyz", - "provider": "Sr20de" - }, - { - "address": "https://api.sge.safeblock.space", - "provider": "Safe Block" - }, - { - "address": "https://mainnet-sge-api.konsortech.xyz", - "provider": "KonsorTech" - }, - { - "address": "https://sge-api.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://api.sge.roomit.xyz/", - "provider": "RoomIT" - } - ], - "grpc": [ - { - "address": "sge-grpc.lavenderfive.com:443", - "provider": "Lavenderfive" - }, - { - "address": "https://grpc.sge.nodestake.top/", - "provider": "Nodestake" - }, - { - "address": "https://grpc-sge.nodeist.net/", - "provider": "Nodeist" - }, - { - "address": "https://sge-grpc.ramuchi.tech:443", - "provider": "ramuchi.tech" - }, - { - "address": "http://sge.grpc.m.stavr.tech:543", - "provider": "🔥STAVR🔥" - }, - { - "address": "sge-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - }, - { - "address": "https://sge-grpc.sr20de.xyz", - "provider": "Sr20de" - }, - { - "address": "mainnet-sge.konsortech.xyz:22090", - "provider": "KonsorTech" - }, - { - "address": "sge-grpc.genznodes.dev:5090", - "provider": "genznodes" - }, - { - "address": "grpc.sge.roomit.xyz:8443", - "provider": "RoomIT" - } - ] - }, - "explorers": [ - { - "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": "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.27" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.explorer.shareri.ng", - "provider": "ShareRing" - } - ], - "rest": [ - { - "address": "https://lcd.explorer.shareri.ng/", - "provider": "ShareRing" - } - ], - "grpc": [ - { - "address": "rpc.explorer.shareri.ng:443", - "provider": "ShareRing" - } - ] - }, - "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}" - } - ], - "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": [ - { - "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": {}, - "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://shentu-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://shentu-rpc.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://rpc-shentu-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://shentu-rpc.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://shentu-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://shentu-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - } - ], - "rest": [ - { - "address": "https://rest.noopsbycertik.com/", - "provider": "Shentu" - }, - { - "address": "https://shentu-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://shentu-api.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://api-shentu-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://shentu-api.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://shentu-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://shentu-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - } - ], - "grpc": [ - { - "address": "shentu-grpc.polkachu.com:14090", - "provider": "Polkachu" - }, - { - "address": "https://shentu-grpc.ramuchi.tech:12090", - "provider": "ramuchi.tech" - }, - { - "address": "grpc-shentu-01.stakeflow.io:2402", - "provider": "Stakeflow" - }, - { - "address": "shentu-grpc.tienthuattoan.ventures:9490", - "provider": "TienThuatToan" - }, - { - "address": "shentu-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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://rpc-sifchain-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://sifchain-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://sifchain-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://api-sifchain-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://sifchain-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://sifchain-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://sifchain-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "grpc-sifchain-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "sifchain-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "sifchain-grpc.polkachu.com:13290", - "provider": "Polkachu" - }, - { - "address": "sifchain-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "explorers": [ - { - "kind": "EZ Staking", - "url": "https://app.ezstaking.io/sifchain", - "tx_page": "https://app.ezstaking.io/sifchain/txs/${txHash}", - "account_page": "https://app.ezstaking.io/sifchain/account/${accountAddress}" - }, - { - "kind": "ping.pub", - "url": "https://ping.pub/sifchain", - "tx_page": "https://ping.pub/sifchain/tx/${txHash}" - }, - { - "kind": "explorers.guru", - "url": "https://sifchain.explorers.guru", - "tx_page": "https://sifchain.explorers.guru/transaction/${txHash}" - }, - { - "kind": "atomscan", - "url": "https://atomscan.com/sifchain", - "tx_page": "https://atomscan.com/sifchain/transactions/${txHash}", - "account_page": "https://atomscan.com/sifchain/accounts/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.45" - }, - "apis": { - "rpc": [ - { - "address": "https://sixnet-rpc.sixprotocol.net:443", - "provider": "" - } - ], - "rest": [ - { - "address": "https://sixnet-api.sixprotocol.net:443", - "provider": "" - } - ] - }, - "explorers": [ - { - "kind": "sixscan", - "url": "https://sixscan.io/sixnet", - "tx_page": "https://sixscan.io/sixnet/tx/${txHash}" - } - ], - "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": {}, - "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://rpc-sommelier.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://sommelier-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://sommelier-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc-sommelier.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://somm-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://sommelier-rpc.w3coins.io", - "provider": "w3coins" - } - ], - "rest": [ - { - "address": "https://api-sommelier.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://sommelier-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://sommelier-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api-sommelier.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://sommelier-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://somm-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://sommelier-api.w3coins.io", - "provider": "w3coins" - } - ], - "grpc": [ - { - "address": "sommelier-grpc.polkachu.com:14190", - "provider": "Polkachu" - }, - { - "address": "sommelier-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "sommelier-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-sommelier.cosmos-spaces.cloud:2310", - "provider": "Cosmos Spaces" - }, - { - "address": "https://grpc.sommelier.nodexcapital.com", - "provider": "⚡NodeX Validator⚡" - }, - { - "address": "sommelier-grpc.w3coins.io:14190", - "provider": "w3coins" - } - ] - }, - "explorers": [ - { - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "usource" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.30" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.source.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://source.rpc.moonbridge.team/", - "provider": "MoonBridge" - }, - { - "address": "https://source.rpc.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-source.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://source-mainnet-rpc.itrocket.net:443", - "provider": "ITRocket" - }, - { - "address": "https://rpc-source.sr20de.xyz:443", - "provider": "Sr20de" - }, - { - "address": "https://source-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://rpc.source.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://rpc.source.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://source.rpc.skynodejs.net/", - "provider": "skynodejs" - } - ], - "rest": [ - { - "address": "https://api.source.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://api-source.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://source.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://source-mainnet-api.itrocket.net:443", - "provider": "ITRocket" - }, - { - "address": "https://source.api.moonbridge.team/", - "provider": "MoonBridge" - }, - { - "address": "https://api-source.sr20de.xyz", - "provider": "Sr20de" - }, - { - "address": "https://source-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://rest.source.tcnetwork.io", - "provider": "TC Network" - }, - { - "address": "https://api.source.indonode.net", - "provider": "Indonode" - } - ], - "grpc": [ - { - "address": "source-mainnet-grpc.itrocket.net:32090", - "provider": "ITRocket" - }, - { - "address": "http://source.grpc.m.stavr.tech:9590", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://grpc-source.nodeist.net:443", - "provider": "Nodeist" - }, - { - "address": "https://grpc.source.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://grpc-source.sr20de.xyz:443", - "provider": "Sr20de" - }, - { - "address": "source-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "https://source.grpc.skynodejs.net", - "provider": "skynodejs" - } - ] - }, - "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": "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": "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": "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}" - } - ], - "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" - } - ], - "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": [ - { - "denom": "ufis", - "fixed_min_gas_price": 0, - "low_gas_price": 0, - "average_gas_price": 0.025, - "high_gas_price": 0.04 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "ufis" - } - ], - "lock_duration": { - "time": "1209600s" - } - }, - "codebase": { - "cosmos_sdk_version": "0.46" - }, - "apis": { - "rpc": [ - { - "address": "https://public-rpc1.stafihub.io:443", - "provider": "StaFiHub" - }, - { - "address": "https://public-rpc2.stafihub.io:443", - "provider": "StaFiHub" - }, - { - "address": "https://rpc.stafihub.nodestake.top:443", - "provider": "NodeStake" - } - ], - "rest": [ - { - "address": "https://public-rest-rpc1.stafihub.io", - "provider": "StaFiHub" - }, - { - "address": "https://public-rest-rpc2.stafihub.io", - "provider": "StaFiHub" - }, - { - "address": "https://api.stafihub.nodestake.top", - "provider": "NodeStake" - } - ], - "grpc": [ - { - "address": "public-grpc-rpc1.stafihub.io:443", - "provider": "StaFiHub" - }, - { - "address": "public-grpc-rpc2.stafihub.io:443", - "provider": "StaFiHub" - }, - { - "address": "grpc.stafihub.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "stafihub.nodejumper.io:9090", - "provider": "NODEJUMPER" - } - ] - }, - "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": "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}" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png" - }, - "keywords": [ - "liquid staking" - ], - "images": [ - { - "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": [ - { - "denom": "ustars" - } - ] - }, - "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" - }, - "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.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://rpc-stargaze.ezstaking.dev", - "provider": "EZStaking.io" - }, - { - "address": "https://stargaze-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-stargaze-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://stargaze.c29r3.xyz:443/rpc/", - "provider": "c29r3" - }, - { - "address": "https://rpc-stargaze.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://stargaze-rpc.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://rpc-stargaze.d-stake.xyz", - "provider": "D-stake" - }, - { - "address": "https://rpc.stargaze.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://rpc-stargaze.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "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.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://stargaze-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://stargaze-rpc.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://stargaze-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://stargaze-rpc.reece.sh:443", - "provider": "Reecepbcups" - }, - { - "address": "https://rpc.stargaze.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://rest.stargaze-apis.com/", - "provider": "Stargaze Foundation" - }, - { - "address": "https://api-stargaze.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://api-stargaze.ezstaking.dev", - "provider": "EZStaking.io" - }, - { - "address": "https://api-stargaze-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://stargaze.c29r3.xyz:443/api/", - "provider": "c29r3" - }, - { - "address": "https://stargaze-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://stargaze-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://api-stargaze.d-stake.xyz", - "provider": "D-stake" - }, - { - "address": "https://api-stargaze.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://api.stargaze.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://stargaze-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://lcd-stargaze.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://stargaze-api.ramuchi.tech", - "provider": "ramuchi.tech" - }, - { - "address": "https://stargaze-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://stargaze-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://stargaze-rest.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://stargaze-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://stargaze-api.reece.sh:443", - "provider": "Reecepbcups" - }, - { - "address": "https://lcd.stargaze.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "grpc-stargaze-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "stargaze-grpc.polkachu.com:13790", - "provider": "Polkachu" - }, - { - "address": "stargaze-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-stargaze.cosmos-spaces.cloud:1150", - "provider": "Cosmos Spaces" - }, - { - "address": "https://stargaze-grpc.ramuchi.tech:9090", - "provider": "ramuchi.tech" - }, - { - "address": "services.staketab.com:9092", - "provider": "Staketab" - }, - { - "address": "stargaze-grpc.w3coins.io:13790", - "provider": "w3coins" - }, - { - "address": "stargaze-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "stargaze-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - }, - { - "address": "https://grpc.stargaze.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "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": "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "uiov" - } - ] - }, - "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" - }, - "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-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://rpc.starname.cosmos.iov.one", - "provider": "starname.me" - } - ], - "rest": [ - { - "address": "https://api.starname.cosmos.iov.one", - "provider": "Starname" - }, - { - "address": "https://api-starname-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://api.starname.cosmos.iov.one", - "provider": "starname.me" - } - ], - "grpc": [ - { - "address": "grpc-starname-ia.cosmosia.notional.ventures:443", - "provider": "starname" - } - ] - }, - "explorers": [ - { - "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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": [ - { - "address": "https://rpc.thestratos.org", - "provider": "thestratos.org" - }, - { - "address": "https://rpc.stratos.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "http://stratos.rpc.nodersteam.com:26657/", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://rpc-stratos.whispernode.com:443", - "provider": "WhisperNode 🤐" - } - ], - "rest": [ - { - "address": "https://rest.thestratos.org", - "provider": "thestratos.org" - }, - { - "address": "https://api.stratos.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://lcd-stratos.whispernode.com:443", - "provider": "WhisperNode 🤐" - } - ], - "grpc": [ - { - "address": "https://grpc.thestratos.org", - "provider": "thestratos.org" - }, - { - "address": "https://grpc.stratos.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "stratos.grpc.nodersteam.com:9090", - "provider": "[NODERS]TEAM" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://web3-rpc.thestratos.org", - "provider": "thestratos.org" - }, - { - "address": "https://jsonrpc.stratos.nodestake.top", - "provider": "NodeStake" - } - ] - }, - "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": "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": "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": [ - { - "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": { - "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.onivalidator.com", - "provider": "Oni Validator ⛩️" - }, - { - "address": "https://stride-rpc.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://rpc.stride.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://rpc-stride.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://stride.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rpc-stride.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://rpc-stride.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://rpc-stride.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://stride-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc-stride-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://stride-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "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://stride-rpc.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://rpc.stride.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "rest": [ - { - "address": "https://stride-api.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://api-stride.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://stride.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://stride-api.lavenderfive.com/", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://api.stride.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://stride.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://api-stride.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://stride-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rest-stride.architectnodes.com", - "provider": "Architect Nodes" - }, - { - "address": "https://lcd-stride.whispernode.com:443", - "provider": "WhisperNode 🤐" - }, - { - "address": "https://api-stride-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://stride-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://stride-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://community.nuxian-node.ch:6797/stride/crpc", - "provider": "PRO Delegators" - }, - { - "address": "https://stride-api.stakeandrelax.net", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://lcd.stride.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ], - "grpc": [ - { - "address": "stride.grpc.bccnodes.com:443", - "provider": "BccNodes" - }, - { - "address": "stride-grpc.polkachu.com:12290", - "provider": "Polkachu" - }, - { - "address": "stride-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "http://stride.grpc.m.stavr.tech:9986", - "provider": "🔥STAVR🔥" - }, - { - "address": "grpc-stride.cosmos-spaces.cloud:1140", - "provider": "Cosmos Spaces" - }, - { - "address": "stride-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "stride.grpc.kjnodes.com:11690", - "provider": "kjnodes" - }, - { - "address": "grpc-stride-01.stakeflow.io:1802", - "provider": "Stakeflow" - }, - { - "address": "stride-grpc.w3coins.io:12290", - "provider": "w3coins" - }, - { - "address": "stride-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "stride-grpc.stakeandrelax.net:12290", - "provider": "Stake&Relax 🦥" - }, - { - "address": "https://grpc.stride.bronbro.io:443", - "provider": "Bro_n_Bro" - } - ] - }, - "explorers": [ - { - "kind": "BccNodes", - "url": "https://explorer.bccnodes.com/stride-M", - "tx_page": "https://explorer.bccnodes.com/stride-M/tx/${txHash}", - "account_page": "https://explorer.bccnodes.com/stride-M/account/${accountAddress}" - }, - { - "kind": "EZ Staking", - "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": "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": "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": "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": "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" - }, - "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" - } - ] - }, - { - "$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": { - "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://tenet-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://tenet-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://app.rpc.tenet.org", - "provider": "tenet" - }, - { - "address": "https://tenet-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://tenet-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "tenet-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "kichain-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://rpc.tenet.org", - "provider": "tenet" - }, - { - "address": "https://tenet-evm.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "explorers": [ - { - "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": "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": [ - { - "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": [ - { - "denom": "utori" - } - ] - }, - "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": [ - { - "address": "https://teritori-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://teritori-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc.teritori.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://teritori.rpc.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc.teritori.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://teritori-rpc.brocha.in", - "provider": "Brochain" - }, - { - "address": "https://teritori-rpc.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://teritori.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://rpc.tori.bh.rocks", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://teritori-rpc.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://m-teritori.rpc.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://teritori.rpc.silknodes.io", - "provider": "Silk Nodes" - }, - { - "address": "https://rpc-teritori.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://teritori-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rpc-teritori.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://teritori-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "rest": [ - { - "address": "https://teritori-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://teritori-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://api.teritori.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://teritori.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api.teritori.silentvalidator.com/", - "provider": "silent" - }, - { - "address": "https://teritori-api.ibs.team", - "provider": "Inter Blockchain Services" - }, - { - "address": "https://teritori.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://api.tori.bh.rocks", - "provider": "BlockHunters 🎯" - }, - { - "address": "https://teritori-api.kleomedes.network", - "provider": "Kleomedes" - }, - { - "address": "https://m-teritori.api.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://teritori.api.silknodes.io", - "provider": "Silk Nodes" - }, - { - "address": "https://api-teritori.pupmos.network", - "provider": "PUPMØS" - }, - { - "address": "https://teritori-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://rest-teritori.ecostake.com", - "provider": "ecostake" - }, - { - "address": "https://teritori-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ], - "grpc": [ - { - "address": "teritori-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "grpc.teritori.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "teritori.grpc.m.stavr.tech:6705", - "provider": "🔥STAVR🔥" - }, - { - "address": "teritori-grpc.brocha.in:443", - "provider": "Brochain" - }, - { - "address": "teritori-grpc.polkachu.com:15990", - "provider": "Polkachu" - }, - { - "address": "teritori.grpc.silknodes.io:443", - "provider": "Silk Nodes" - }, - { - "address": "teritori-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "teritori.grpc.kjnodes.com:11990", - "provider": "kjnodes" - }, - { - "address": "teritori-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - } - ] - }, - "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": "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": "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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀", - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "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" - }, - "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" - } - ], - "rest": [ - { - "address": "https://api-terp.zenchainlabs.io:443", - "provider": "ZenChainLabs" - }, - { - "address": "https://rpc.terp.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://terp-mainnet-api.itrocket.net:443", - "provider": "itrocket.net" - }, - { - "address": " https://terp.api.nodex.one:443", - "provider": "nodex.one" - } - ], - "grpc": [ - { - "address": "https://grpc.terp.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "terp-mainnet-grpc.itrocket.net:13090", - "provider": "itrocket.net" - }, - { - "address": " https://terp.grpc.nodex.one:443", - "provider": "nodex.one" - } - ] - }, - "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://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": "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": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/logo.png" - } - ], - "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": [ - { - "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "utwd", - "low_gas_price": 20, - "average_gas_price": 20, - "high_gas_price": 20 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "uluna" - } - ] - }, - "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": [ - { - "address": "https://rpc.terrarebels.net", - "provider": "Terra Rebels" - }, - { - "address": "https://terra-classic-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "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-rpc-server-01.stakely.io", - "provider": "Stakely" - } - ], - "rest": [ - { - "address": "https://lcd.terrarebels.net", - "provider": "Terra Rebels" - }, - { - "address": "https://terra-classic-lcd.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "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-lcd-server-01.stakely.io", - "provider": "Stakely" - } - ], - "grpc": [ - { - "address": "grpc.terrarebels.net", - "provider": "Terra Rebels" - }, - { - "address": "terra-classic-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "grpc-terra-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "terraclassic-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - } - ] - }, - "explorers": [ - { - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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://terra-rpc.polkachu.com", - "provider": "polkachu" - }, - { - "address": "https://terra-rpc.stakely.io:443/", - "provider": "stakely" - }, - { - "address": "https://terra-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://phoenix-rpc.terra.dev:443", - "provider": "Terraform Labs" - }, - { - "address": "https://terra-rpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://rpc-terra-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://rpc-terra.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://terra-phoenix-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://rpc-terra.wildsage.io", - "provider": "🧙 WildSage Labs" - }, - { - "address": "https://terra.interstellar-lounge.org", - "provider": "Interstellar Lounge 🍸" - }, - { - "address": "https://terra2.tdrsys.com:2053", - "provider": "TdrSys" - }, - { - "address": "https://terra-rpc.cosmosrescue.dev:8443", - "provider": "cosmosrescue" - } - ], - "rest": [ - { - "address": "https://lcd-terra.wildsage.io", - "provider": "🧙 WildSage Labs" - }, - { - "address": "https://terra-mainnet-lcd.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "https://phoenix-lcd.terra.dev:443", - "provider": "Terraform Labs" - }, - { - "address": "https://api-terra.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "https://terra-rest.publicnode.com", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "https://api-terra-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://terra-phoenix-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://terra-rest.interstellar-lounge.org", - "provider": "Interstellar Lounge 🍸" - }, - { - "address": "https://terra2.tdrsys.com", - "provider": "TdrSys" - }, - { - "address": "https://terra-api.cosmosrescue.dev:8443", - "provider": "cosmosrescue" - } - ], - "grpc": [ - { - "address": "terra2-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "terra-grpc.polkachu.com:11790", - "provider": "Polkachu" - }, - { - "address": "terra-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "terra-grpc.publicnode.com:443", - "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "address": "grpc-terra.cosmos-spaces.cloud:2690", - "provider": "Cosmos Spaces" - }, - { - "address": "grpc-terra-01.stakeflow.io:1102", - "provider": "Stakeflow" - }, - { - "address": "https://terra2.tdrsys.com:2083", - "provider": "TdrSys" - } - ] - }, - "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": "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": "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": [ - { - "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": [ - { - "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": [ - { - "denom": "uakt" - } - ] - }, - "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": [ - { - "address": "https://rpc.sandbox-01.aksh.pw:443", - "provider": "akash" - } - ], - "rest": [ - { - "address": "https://api.sandbox-01.aksh.pw:443", - "provider": "akash" - } - ], - "grpc": [ - { - "address": "grpc.sandbox-01.aksh.pw:9090", - "provider": "akash" - } - ] - }, - "explorers": [ - { - "kind": "ping.pub", - "url": "https://explorer.sandbox-01.aksh.pw/akash", - "tx_page": "https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "aconst" - } - ] - }, - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.constantine.archway.tech", - "provider": "Archway" - }, - { - "address": "https://archway-testnet-rpc.polkachu.com", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://api.constantine.archway.tech", - "provider": "Archway" - } - ] - }, - "explorers": [ - { - "kind": "archwayscan", - "url": "https://testnet.archway.explorers.guru", - "tx_page": "https://testnet.archway.explorers.guru/transaction/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "uarkeo" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://arkeonetwork-testnet.nodejumper.io:26657", - "provider": "NODEJUMPER" - }, - { - "address": "https://test-arkeo-rpc.kynraze.com", - "provider": "kynraze" - }, - { - "address": "https://testnet-arkeo-rpc.lavenderfive.com", - "provider": "lavenderfive" - }, - { - "address": "https://arkeo-rpc.siriusnodes.uk", - "provider": "siriusnodes" - }, - { - "address": "http://seed.arkeo.network:26657", - "provider": "arkeo" - } - ], - "rest": [ - { - "address": "https://arkeonetwork-testnet.nodejumper.io:1317", - "provider": "NODEJUMPER" - }, - { - "address": "https://test-arkeo-api.kynraze.com", - "provider": "kynraze" - }, - { - "address": "https://testnet-arkeo-api.lavenderfive.com", - "provider": "lavenderfive" - }, - { - "address": "https://arkeo-api.siriusnodes.uk", - "provider": "siriusnodes" - }, - { - "address": "http://seed.arkeo.network:1317", - "provider": "arkeo" - } - ], - "grpc": [ - { - "address": "https://arkeonetwork-testnet.nodejumper.io:9090/", - "provider": "NODEJUMPER" - } - ] - }, - "explorers": [ - { - "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": [ - { - "denom": "uart" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.47" - }, - "apis": { - "rpc": [ - { - "address": "https://testnet-rpc1.artela.network", - "provider": "Artela Foundation" - }, - { - "address": "https://testnet-rpc2.artela.network", - "provider": "Artela Foundation" - } - ], - "rest": [ - { - "address": "https://testnet-rpc1.artela.network", - "provider": "Artela Foundation" - }, - { - "address": "https://testnet-rpc2.artela.network", - "provider": "Artela Foundation" - } - ], - "grpc": [ - { - "address": "https://testnet-rpc1.artela.network", - "provider": "Artela Foundation" - } - ] - }, - "explorers": [ - { - "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": [ - { - "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": [ - { - "denom": "ueaura" - } - ], - "lock_duration": { - "time": "172800s" - } - }, - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.euphoria.aura.network/", - "provider": "Aura Network Foundation" - } - ], - "rest": [ - { - "address": "https://lcd.euphoria.aura.network/", - "provider": "Aura Network Foundation" - } - ], - "grpc": [ - { - "address": "http://grpc.euphoria.aura.network:9090", - "provider": "Aura Network Foundation" - } - ] - }, - "explorers": [ - { - "kind": "aurascan", - "url": "https://euphoria.aurascan.io", - "tx_page": "https://euphoria.aurascan.io/transaction/${txHash}", - "account_page": "https://euphoria.aurascan.io/account/${accountAddress}" - } - ], - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "uaxl" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-axelar-testnet.imperator.co:443", - "provider": "Imperator.co" - }, - { - "address": "https://axelartest-rpc.quickapi.com/", - "provider": "Quickapi" - } - ], - "rest": [ - { - "address": "https://lcd-axelar-testnet.imperator.co:443", - "provider": "Imperator.co" - }, - { - "address": "https://axelartest-lcd.quickapi.com/", - "provider": "Quickapi" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "ubbn" - } - ] - }, - "codebase": {}, - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" - }, - "apis": { - "rpc": [ - { - "address": "rpc.testnet.babylonchain.io:26657", - "provider": "Babylon foundation" - } - ], - "rest": [ - { - "address": "rpc.testnet.babylonchain.io:1317", - "provider": "Babylon foundation" - } - ], - "grpc": [] - }, - "explorers": [ - { - "kind": "babylonscan", - "url": "https://babylonscan.io" - }, - { - "kind": "explorers.guru", - "url": "https://babylon.explorers.guru", - "tx_page": "https://babylon.explorers.guru/transaction/${txHash}" - } - ], - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" - } - ], - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-testnet.bitcanna.io", - "provider": "bitcanna" - }, - { - "address": "https://bitcanna-testnet.rpc.kjnodes.com/", - "provider": "kjnodes.com" - }, - { - "address": "https://testnet-bitcanna-rpc.konsortech.xyz/", - "provider": "konsortech.xyz" - }, - { - "address": "https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/", - "provider": "aviaone.com" - }, - { - "address": "https://bitcanna-testnet.nodejumper.io:443", - "provider": "NODEJUMPER" - } - ], - "rest": [ - { - "address": "https://lcd-testnet.bitcanna.io", - "provider": "bitcanna" - }, - { - "address": "https://testnet-bitcanna-api.konsortech.xyz/", - "provider": "konsortech.xyz" - }, - { - "address": "https://bitcanna.api.dev.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "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.nodejumper.io:1317", - "provider": "NODEJUMPER" - } - ], - "grpc": [ - { - "address": "http://devnet-1.bitcanna.io:9090/", - "provider": "bitcanna" - }, - { - "address": "http://bitcanna-testnet.grpc.kjnodes.com:42090/", - "provider": "kjnodes.com" - }, - { - "address": "http://bitcanna.grpc.dev.stavr.tech:2901", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://bitcanna-testnet.nodejumper.io:9090", - "provider": "NODEJUMPER" - } - ] - }, - "explorers": [ - { - "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}" - }, - { - "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.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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-devnet-6.bitcanna.io/", - "provider": "bitcanna" - } - ], - "grpc": [ - { - "address": "http://devnet-6.bitcanna.io:9090", - "provider": "bitcanna" - } - ], - "rest": [ - { - "address": "https://lcd-devnet-6.bitcanna.io/", - "provider": "bitcanna" - } - ] - }, - "explorers": [ - { - "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": [ - { - "denom": "aCC", - "fixed_min_gas_price": 0, - "low_gas_price": 7, - "average_gas_price": 10, - "high_gas_price": 15 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "aCC" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, - "codebase": { - "cosmos_sdk_version": "0.46.10", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.30" - }, - "images": [ - { - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.cascadia.foundation:443", - "provider": "cascadia" - }, - { - "address": "https://cscd-rpc.systemd.run:443", - "provider": "systemd" - }, - { - "address": "https://api.cascadia-t.indonode.net:443", - "provider": "Indonode" - }, - { - "address": "https://rpc-test.cascadia.hexnodes.co:443", - "provider": "Hexnodes" - }, - { - "address": "https://cascadia.rpc.liveraven.net:443", - "provider": "LiveRaveN" - } - ], - "grpc": [ - { - "address": "grpc.cascadia.foundation:443", - "provider": "cascadia" - }, - { - "address": "cscd-grpc.systemd.run:443", - "provider": "systemd" - }, - { - "address": "grpc.cascadia-t.indonode.net:43090", - "provider": "Indonode" - }, - { - "address": "grpc-test.cascadia.hexnodes.co:19090", - "provider": "Hexnodes" - }, - { - "address": "cascadia.grpc.liveraven.net:443", - "provider": "LiveRaveN" - } - ], - "rest": [ - { - "address": "https://lcd.cascadia.foundation", - "provider": "cascadia" - }, - { - "address": "https://cscd-api.systemd.run", - "provider": "systemd" - }, - { - "address": "https://api.cascadia-t.indonode.net/", - "provider": "Indonode" - }, - { - "address": "https://lcd-test.cascadia.hexnodes.co", - "provider": "Hexnodes" - }, - { - "address": "https://cascadia.api.liveraven.net:443", - "provider": "LiveRaveN" - } - ] - }, - "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": "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" - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-blockspacerace.pops.one/", - "provider": "P-OPs" - } - ], - "rest": [ - { - "address": "https://celestia-blockspacerace-rest.brocha.in", - "provider": "Brochain" - } - ] - }, - "explorers": [ - { - "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": [ - { - "denom": "utia", - "fixed_min_gas_price": 0, - "low_gas_price": 0.01, - "average_gas_price": 0.02, - "high_gas_price": 0.1 - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://consensus-full.celestia-arabica-10.com/", - "provider": "Celestia Labs" - } - ], - "rest": [ - { - "address": "https://api.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": [ - { - "denom": "utia", - "fixed_min_gas_price": 0, - "low_gas_price": 0.01, - "average_gas_price": 0.02, - "high_gas_price": 0.1 - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-mocha.pops.one", - "provider": "P-OPs" - } - ], - "rest": [ - { - "address": "https://api-mocha.pops.one", - "provider": "P-OPs" - } - ] - }, - "explorers": [ - { - "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": "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": "uc4e", - "fixed_min_gas_price": 0, - "low_gas_price": 0.02, - "average_gas_price": 0.03, - "high_gas_price": 0.06 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "uc4e" - } - ] - }, - "codebase": {}, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" - }, - "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": { - "cosmos_sdk_version": "0.46.10" - }, - "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": [ - { - "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" - }, - "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" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "chimba" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.testnet.chimba.ooo", - "provider": "chimba" - } - ], - "rest": [ - { - "address": "https://testnet.chimba.ooo", - "provider": "chimba" - } - ] - }, - "explorers": [ - { - "kind": "bigdipper", - "url": "https://explorer.testnet.chimba.ooo/", - "tx_page": "https://explorer.testnet.chimba.ooo/transactions/${txHash}" - } - ], - "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": [ - { - "denom": "ppica", - "fixed_min_gas_price": 0, - "low_gas_price": 0, - "average_gas_price": 0, - "high_gas_price": 0 - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.composable-t.indonode.net:443", - "provider": "Indonode" - }, - { - "address": "https://rpc-composable-testnet.sr20de.xyz:443", - "provider": "Sr20de" - } - ], - "rest": [ - { - "address": "https://api.composable-t.indonode.net", - "provider": "Indonode" - }, - { - "address": "https://composable.api.t4.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api-composable-testnet.sr20de.xyz", - "provider": "Sr20de" - } - ], - "grpc": [ - { - "address": "https://grpc.composable-t.indonode.net:47090", - "provider": "Indonode" - }, - { - "address": "https://grpc-composable-testnet.sr20de.xyz", - "provider": "Sr20de" - } - ] - }, - "explorers": [ - { - "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}" - }, - { - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "uccat" - } - ] - }, - "daemon_name": "coolcat", - "node_home": "$HOME/.coolcat", - "slip44": 118, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.coolcat.space", - "provider": "Digital Kitchen" - } - ], - "rest": [ - { - "address": "https://lcd.coolcat.space", - "provider": "Digital Kitchen" - } - ], - "grpc": [] - }, - "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": [ - { - "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": [ - { - "denom": "utestcore" - } - ], - "lock_duration": { - "time": "168h" - } - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "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" - } - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png" - }, - "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" - } - ], - "grpc": [ - { - "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" - } - ], - "rest": [ - { - "address": "https://full-node.testnet-1.coreum.dev:1317", - "provider": "Coreum" - } - ] - }, - "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}" - } - ], - "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": {}, - "apis": { - "rpc": [ - { - "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.state-sync-01.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://rpc-theta.osmotest5.osmosis.zone/", - "provider": "Osmosis" - } - ], - "rest": [ - { - "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.state-sync-01.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://lcd-theta.osmotest5.osmosis.zone/", - "provider": "Osmosis" - } - ], - "grpc": [ - { - "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.state-sync-01.theta-testnet.polypore.xyz", - "provider": "Hypha" - }, - { - "address": "https://grpc.state-sync-02.theta-testnet.polypore.xyz", - "provider": "Hypha" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "uand" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.27" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.malaga-420.cosmwasm.com:443", - "provider": "Confio" - } - ], - "rest": [ - { - "address": "https://api.malaga-420.cosmwasm.com", - "provider": "Confio" - } - ] - }, - "explorers": [ - { - "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": [ - { - "denom": "ucgas", - "fixed_min_gas_price": 0, - "low_gas_price": 0, - "average_gas_price": 0.025, - "high_gas_price": 0.04 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "ucgas" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.50.2", - "cosmwasm_enabled": false - }, - "apis": { - "rpc": [ - { - "address": "https://rpc-coss-node-1.coss.ink", - "provider": "COSS" - }, - { - "address": "https://rpc-coss-node-2.coss.ink/", - "provider": "COSS" - } - ], - "rest": [ - { - "address": "https://rest-coss-node-1.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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.testnet.cudos.org:443/", - "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-03.hosts.testnet.cudos.org:26657", - "provider": "cudo" - } - ], - "rest": [ - { - "address": "https://rest.testnet.cudos.org:443", - "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-03.hosts.testnet.cudos.org:1317/", - "provider": "cudo" - } - ], - "grpc": [ - { - "address": "https://grpc.testnet.cudos.org:433", - "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-03.hosts.testnet.cudos.org:9090", - "provider": "cudo" - } - ] - }, - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "udear" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://testnet-rpc.deardoge.org", - "provider": "dorafactory" - } - ], - "rest": [ - { - "address": "https://testnet-rest.deardoge.org", - "provider": "dorafactory" - } - ], - "grpc": [ - { - "address": "testnet-grpc.deardoge.org:443", - "provider": "dorafactory" - } - ] - }, - "explorers": [ - { - "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": [ - { - "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": [ - { - "denom": "udaric" - } - ] - }, - "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": [ - { - "address": "https://rpc.morpheus.desmos.network", - "provider": "desmos" - } - ], - "rest": [ - { - "address": "https://lcd.morpheus.desmos.network", - "provider": "desmos" - } - ], - "grpc": [ - { - "address": "https://grpc.morpheus.desmos.network:443", - "provider": "desmos" - } - ] - }, - "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}" - } - ], - "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": "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": [ - { - "denom": "peaka" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://vota-testnet-rpc.dorafactory.org/", - "provider": "dorafactory" - } - ], - "rest": [ - { - "address": "https://vota-testnet-rest.dorafactory.org", - "provider": "dorafactory" - } - ], - "grpc": [ - { - "address": "vota-testnet-grpc.dorafactory.org:443", - "provider": "dorafactory" - } - ] - }, - "explorers": [ - { - "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": [ - { - "denom": "peaka" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://vota-vk-rpc.dorafactory.org/", - "provider": "dorafactory" - } - ], - "rest": [ - { - "address": "https://vota-vk-rest.dorafactory.org", - "provider": "dorafactory" - } - ], - "grpc": [ - { - "address": "vota-vk-grpc.dorafactory.org:443", - "provider": "dorafactory" - } - ] - }, - "explorers": [ - { - "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": [ - { - "denom": "adydx", - "fixed_min_gas_price": 12500000000, - "low_gas_price": 12500000000, - "average_gas_price": 12500000000, - "high_gas_price": 20000000000 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "adydx" - } - ] - }, - "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.", - "apis": { - "rpc": [ - { - "address": "https://dydx-rpc-testnet.enigma-validator.com", - "provider": "Enigma" - }, - { - "address": "https://testnet-dydx-rpc.lavenderfive.com", - "provider": "Lavender Five" - }, - { - "address": "https://test-dydx.kingnodes.com", - "provider": "KingNodes" - }, - { - "address": "https://dydx-testnet-rpc.polkachu.com", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://dydx-lcd-testnet.enigma-validator.com", - "provider": "Enigma" - }, - { - "address": "https://testnet-dydx-api.lavenderfive.com", - "provider": "Lavender Five" - }, - { - "address": "https://dydx-testnet-api.polkachu.com", - "provider": "Polkachu" - } - ], - "grpc": [ - { - "address": "https://testnet-dydx-rpc.lavenderfive.com", - "provider": "Lavender Five" - }, - { - "address": "https://dydx-testnet-api.polkachu.com", - "provider": "Polkachu" - } - ] - }, - "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}" - } - ], - "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": [ - { - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "v0.47", - "cosmwasm_enabled": false - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.testnet.elys.network", - "provider": "Elys Network" - }, - { - "address": "https://elys-testnet-rpc.staketab.org:443", - "provider": "Staketab" - } - ], - "rest": [ - { - "address": "https://api.testnet.elys.network", - "provider": "Elys Network" - }, - { - "address": "https://elys.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://elys-testnet-rest.staketab.org", - "provider": "Staketab" - } - ], - "grpc": [ - { - "address": "services.staketab.com:9390", - "provider": "Staketab" - } - ] - }, - "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": "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": {}, - "apis": { - "rpc": [ - { - "address": "https://empower-testnet-rpc.polkachu.com:443", - "provider": "Polkachu" - }, - { - "address": "https://empower.rpc.cumulo.com.es:443", - "provider": "Cumulo" - }, - { - "address": "https://rpc-t.empower.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://rpc-empower.nodeist.net:443", - "provider": "Nodeist" - }, - { - "address": "https://empower-testnet.nodejumper.io:443", - "provider": "NODEJUMPER" - }, - { - "address": "https://empower-testnet-rpc.itrocket.net:443", - "provider": "ITRocket" - }, - { - "address": "https://rpc.circulus-1.empower.aviaone.com:443", - "provider": "AviaOne" - } - ], - "rest": [ - { - "address": "https://empower-testnet-api.polkachu.com:443", - "provider": "Polkachu" - }, - { - "address": "https://empower.api.cumulo.com.es:443", - "provider": "Cumulo" - }, - { - "address": "https://empw.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://api-t.empower.nodestake.top:443", - "provider": "NodeStake" - }, - { - "address": "https://api-empower.nodeist.net:443", - "provider": "Nodeist" - }, - { - "address": "https://empower-testnet.nodejumper.io:1317", - "provider": "NODEJUMPER" - }, - { - "address": "https://empower-testnet-api.itrocket.net:443", - "provider": "ITRocket" - }, - { - "address": "https://api.circulus-1.empower.aviaone.com", - "provider": "AviaOne" - } - ], - "grpc": [ - { - "address": "empower-testnet-grpc.polkachu.com:17490", - "provider": "Polkachu" - }, - { - "address": "empower.grpc.cumulo.com.es:443", - "provider": "Cumulo" - }, - { - "address": "grpc-t.empower.nodestake.top:9090", - "provider": "NodeStake" - }, - { - "address": "empower-testnet.nodejumper.io:9090", - "provider": "NODEJUMPER" - }, - { - "address": "empower-testnet-grpc.itrocket.net:16090", - "provider": "ITRocket" - }, - { - "address": "grpc.circulus-1.empower.aviaone.com:443", - "provider": "AviaOne" - } - ] - }, - "explorers": [ - { - "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": "🔥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://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}" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.47.4" - }, - "apis": { - "rpc": [ - { - "address": "https://testnet-rpc.entrypoint.zone", - "provider": "Simply Staking" - } - ], - "rest": [ - { - "address": "https://entry.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "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" - }, - "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": "🔥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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "atevmos" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.46" - }, - "apis": { - "rpc": [ - { - "address": "https://evmos.test.rpc.coldyvalidator.net", - "provider": "coldy" - }, - { - "address": "https://evmos-testnet-rpc.polkachu.com", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://evmos.test.api.coldyvalidator.net", - "provider": "coldy" - }, - { - "address": "https://evmos-testnet-api.polkachu.com", - "provider": "Polkachu" - } - ], - "grpc": [ - { - "address": "https://evmos.test.grpc.coldyvalidator.net", - "provider": "coldy" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "atestfet" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-dorado.fetch.ai:443", - "provider": "fetch.ai" - } - ], - "rest": [ - { - "address": "https://rest-dorado.fetch.ai", - "provider": "fetch.ai" - } - ], - "grpc": [ - { - "address": "grpc-dorado.fetch.ai:443", - "provider": "fetch.ai" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://gitopia-testnet.nodejumper.io", - "provider": "NODEJUMPER" - } - ], - "rest": [ - { - "address": "https://gitopia-testnet.nodejumper.io:1317", - "provider": "NODEJUMPER" - } - ], - "grpc": [ - { - "address": "https://gitopia-testnet.nodejumper.io:9090", - "provider": "NODEJUMPER" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://humans-testnet.nodejumper.io", - "provider": "NODEJUMPER" - } - ], - "rest": [ - { - "address": "https://humans-testnet.nodejumper.io:1317", - "provider": "NODEJUMPER" - } - ], - "grpc": [ - { - "address": "https://humans-testnet.nodejumper.io:9090", - "provider": "NODEJUMPER" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.jagrat.hypersign.id", - "provider": "hypersign" - }, - { - "address": "http://hid.rpc.t.stavr.tech:11057", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://hypersign-testnet-rpc.stakerhouse.com", - "provider": "StakerHouse" - } - ], - "rest": [ - { - "address": "https://api.jagrat.hypersign.id", - "provider": "hypersign" - }, - { - "address": "https://hid.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://hypersign-testnet-rest.stakerhouse.com", - "provider": "StakerHouse" - } - ], - "grpc": [ - { - "address": "grpc.jagrat.hypersign.id:5099", - "provider": "hypersign" - }, - { - "address": "http://hid.grpc.t.stavr.tech:8022", - "provider": "🔥STAVR🔥" - }, - { - "address": "hypersign-testnet-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - } - ] - }, - "explorers": [ - { - "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": "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": [ - { - "denom": "uixo" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://devnet.ixo.earth/rpc/", - "provider": "ixoworld" - } - ], - "rest": [ - { - "address": "https://devnet.ixo.earth/rest/", - "provider": "ixoworld" - } - ], - "grpc": [] - }, - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "uixo" - } - ] - }, - "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": [ - { - "address": "https://rpc.testnet.ixo.earth/", - "provider": "ixoworld" - } - ], - "rest": [ - { - "address": "https://testnet.ixo.earth/rest/", - "provider": "ixoworld" - } - ], - "grpc": [] - }, - "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://tx-endpoint-test.imversed.com/", - "provider": "imversed" - } - ], - "rest": [ - { - "address": "https://query-endpoint-test.imversed.com/", - "provider": "imversed" - } - ], - "grpc": [ - { - "address": "http://qs.imversed.com:9090", - "provider": "imversed" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://injective-testnet-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://k8s.testnet.tm.injective.network:443", - "provider": "injectiveLabs" - }, - { - "address": "https://testnet.tm.injective.network", - "provider": "injectiveLabs" - } - ], - "rest": [ - { - "address": "https://injective-testnet-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://k8s.testnet.lcd.injective.network", - "provider": "injectiveLabs" - }, - { - "address": "https://testnet.grpc.injective.network", - "provider": "injectiveLabs" - } - ], - "grpc": [ - { - "address": "injective-testnet-grpc.polkachu.com:14390", - "provider": "Polkachu" - }, - { - "address": "k8s.testnet.chain.grpc.injective.network:443", - "provider": "injectiveLabs" - }, - { - "address": "https://testnet.grpc.injective.network", - "provider": "injectiveLabs" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "http://jkl.rpc.t.stavr.tech:19127", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://testnet-rpc.jackalprotocol.com", - "provider": "Jackal Labs" - } - ], - "rest": [ - { - "address": "https://jkl.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://testnet-api.jackalprotocol.com", - "provider": "Jackal Labs" - } - ], - "grpc": [ - { - "address": "http://jkl.grpc.t.stavr.tech:5913", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://testnet-grpc.jackalprotocol.com", - "provider": "Jackal Labs" - } - ] - }, - "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": "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": [ - { - "denom": "ujunox" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.31" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.uni.junonetwork.io", - "provider": "Juno" - }, - { - "address": "https://juno-testnet-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://uni-rpc.reece.sh", - "provider": "Reecepbcups" - } - ], - "rest": [ - { - "address": "https://api.uni.junonetwork.io", - "provider": "Juno" - }, - { - "address": "https://juno-testnet-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://juno.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://uni-api.reece.sh", - "provider": "Reecepbcups" - } - ], - "grpc": [ - { - "address": "juno-testnet-grpc.polkachu.com:12690", - "provider": "Polkachu" - } - ] - }, - "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": "🔥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": "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-challenge.blockchain.ki/", - "provider": "kifoundation" - } - ], - "rest": [ - { - "address": "https://api-challenge.blockchain.ki/", - "provider": "kifoundation" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://kujira-testnet-rpc.polkachu.com", - "provider": "polkachu" - } - ], - "rest": [ - { - "address": "https://kujira-testnet-api.polkachu.com/", - "provider": "polkachu" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.korellia.kyve.network", - "provider": "kyve" - } - ], - "rest": [ - { - "address": "https://api.korellia.kyve.network", - "provider": "kyve" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-eu-1.kaon.kyve.network", - "provider": "kyve" - }, - { - "address": "https://rpc-kyve-test.ecostake.com", - "provider": "ecostake" - } - ], - "rest": [ - { - "address": "https://api-eu-1.kaon.kyve.network", - "provider": "kyve" - }, - { - "address": "https://rest-kyve-test.ecostake.com", - "provider": "ecostake" - } - ] - }, - "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}" - } - ] - }, - { - "$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": { - "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", - "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": [ - { - "address": "https://https://public-rpc-testnet2.lavanet.xyz/", - "provider": "Lava" - }, - { - "address": "http://lava.rpc.t.stavr.tech:198", - "provider": "🔥STAVR🔥" - } - ], - "rest": [ - { - "address": "https://public-rpc-testnet2.lavanet.xyz/rest/", - "provider": "Lava" - }, - { - "address": "https://lava.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - } - ] - }, - "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": "🔥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" - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "ulava" - } - ], - "lock_duration": { - "time": "1209600s" - } - }, - "codebase": { - "cosmos_sdk_version": "0.47.6", - "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", - "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": [ - { - "address": "https://public-rpc.lavanet.xyz:443", - "provider": "Lava" - } - ], - "rest": [ - { - "address": "https://public-rpc.lavanet.xyz/rest/", - "provider": "Lava" - } - ] - }, - "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}" - } - ], - "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": [ - { - "denom": "nanoekil", - "fixed_min_gas_price": 1000, - "low_gas_price": 1000, - "average_gas_price": 10000, - "high_gas_price": 1000000 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "nanoekil" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, - "codebase": { - "cosmos_sdk_version": "0.46", - "cosmwasm_enabled": false - }, - "apis": { - "rpc": [ - { - "address": "https://node.testnet.like.co/rpc/", - "provider": "like.co" - } - ], - "rest": [ - { - "address": "https://node.testnet.like.co/", - "provider": "like.co" - } - ], - "grpc": [ - { - "address": "https://node.testnet-grpc.like.co/", - "provider": "like.co" - } - ] - }, - "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": "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" - }, - "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" - } - ] - }, - { - "$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": [ - { - "denom": "ulumen" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://testnet-rpc.lumenx.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://testrpc-lumenx.cryptonet.pl/", - "provider": "CryptoNet" - } - ], - "rest": [ - { - "address": "https://testnet-api.lumenx.chaintools.tech/", - "provider": "ChainTools" - }, - { - "address": "https://testapi-lumenx.cryptonet.pl/", - "provider": "CryptoNet" - } - ], - "grpc": [] - }, - "explorers": [ - { - "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": [ - { - "denom": "umars", - "fixed_min_gas_price": 0, - "low_gas_price": 0, - "average_gas_price": 0, - "high_gas_price": 0.025 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "umars" - } - ] - }, - "codebase": {}, - "apis": { - "rpc": [ - { - "address": "https://testnet-rpc.marsprotocol.io/", - "provider": "Mars Protocol" - }, - { - "address": "https://rpc-mars.nodeist.net/", - "provider": "Nodeist" - } - ], - "rest": [ - { - "address": "https://testnet-rest.marsprotocol.io/", - "provider": "Mars Protocol" - }, - { - "address": "https://api-mars.nodeist.net/", - "provider": "Nodeist" - } - ] - }, - "explorers": [ - { - "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}" - } - ], - "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": [ - { - "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": [ - { - "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": [ - { - "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": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.28" - }, - "apis": { - "rpc": [ - { - "address": "https://migaloo-testnet-rpc.polkachu.com", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://migaloo-testnet-api.polkachu.com", - "provider": "Polkachu" - } - ], - "grpc": [] - }, - "explorers": [ - { - "kind": "ping.pub", - "url": "https://ping.pfc.zone/narwhal-testnet", - "tx_page": "https://ping.pfc.zone/narwhal-testnet/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.47", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.45" - }, - "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": [ - { - "address": "https://rpc-falcron.pion-1.ntrn.tech", - "provider": "Neutron" - }, - { - "address": "https://neutron-testnet-rpc.polkachu.com/", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://rest-falcron.pion-1.ntrn.tech", - "provider": "Neutron" - }, - { - "address": "https://api.pion.remedy.tm.p2p.org", - "provider": "P2P.ORG" - }, - { - "address": "https://rest.baryon-sentry-01.rs-testnet.polypore.xyz", - "provider": "Hypha" - } - ], - "grpc": [ - { - "address": "grpc-falcron.pion-1.ntrn.tech:80", - "provider": "Neutron" - }, - { - "address": "grpc.baryon.remedy.tm.p2p.org:443", - "provider": "P2P.ORG" - } - ] - }, - "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": "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": [ - { - "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": { - "cosmos_sdk_version": "v0.45", - "cosmwasm_enabled": false - }, - "apis": { - "rpc": [ - { - "address": "https://noble-testnet-rpc.polkachu.com", - "provider": "polkachu" - }, - { - "address": "https://rpc.testnet.noble.strange.love:443", - "provider": "strangelove" - } - ], - "rest": [ - { - "address": "https://noble-testnet-api.polkachu.com", - "provider": "polkachu" - }, - { - "address": "https://api.testnet.noble.strange.love", - "provider": "strangelove" - } - ], - "grpc": [ - { - "address": "noble-testnet-grpc.polkachu.com:21590", - "provider": "polkachu" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "unois" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.30" - }, - "images": [ - { - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://nois-testnet-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://nois-testnet-rpc.itrocket.net:443", - "provider": "itrocket" - }, - { - "address": "https://rpc.nois.mcbnode.online:443", - "provider": "mcbnode" - }, - { - "address": "https://nois-testnet.rpc.kjnodes.com:443", - "provider": "kjnodes" - }, - { - "address": "https://tnois-rpc.systemd.run:443", - "provider": "systemd" - } - ], - "grpc": [ - { - "address": "tnois-grpc.systemd.run:443", - "provider": "systemd" - }, - { - "address": "http://nois.grpc.t.stavr.tech:191", - "provider": "🔥STAVR🔥" - }, - { - "address": "nois-testnet-grpc.itrocket.net:21090", - "provider": "itrocket" - } - ], - "rest": [ - { - "address": "https://api.nois.mcbnode.online", - "provider": "mcbnode" - }, - { - "address": "https://nois3.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://tnois-api.systemd.run:443", - "provider": "systemd" - } - ] - }, - "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": "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" - ] - }, - { - "$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 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "unls" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, - "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" - }, - "apis": { - "rpc": [ - { - "address": "https://rila-cl.nolus.network:26657", - "provider": "NolusProtocol" - } - ], - "rest": [ - { - "address": "https://rila-cl.nolus.network:1317", - "provider": "NolusProtocol" - } - ], - "grpc": [ - { - "address": "https://rila-cl.nolus.network:9090", - "provider": "NolusProtocol" - } - ] - }, - "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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://okptest-rpc.quickapi.com", - "provider": "Chainlayer" - }, - { - "address": "https://okp4-testnet-rpc.polkachu.com", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://okptest-lcd.quickapi.com", - "provider": "Chainlayer" - }, - { - "address": "https://okp4-testnet-api.polkachu.com/", - "provider": "Polkachu" - } - ], - "grpc": [ - { - "address": "okp4-testnet-grpc.polkachu.com:17690", - "provider": "Polkachu" - }, - { - "address": "grpc.testnet.okp4.network:443", - "provider": "OKP4" - } - ] - }, - "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://explore.okp4.network/OKP4%20testnet", - "tx_page": "https://explore.okp4.network/OKP4%20testnet/tx/${txHash}" - } - ], - "images": [ - { - "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": [ - { - "denom": "uosmo" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.30" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.osmotest5.osmosis.zone/", - "provider": "Osmosis" - }, - { - "address": "https://rpc.testnet.osl.zone/", - "provider": "OSL" - } - ], - "rest": [ - { - "address": "https://lcd.osmotest5.osmosis.zone/", - "provider": "Osmosis" - } - ], - "grpc": [ - { - "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" - }, - "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": "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": [ - { - "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": [ - { - "denom": "uosmo" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.29" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.osmo-test.ccvalidators.com/", - "provider": "CryptoCrew" - }, - { - "address": "https://osmosistest-rpc.quickapi.com/", - "provider": "ChainLayer" - }, - { - "address": "https://rpc.testnet.osmosis.zone/", - "provider": "Osmosis" - } - ], - "rest": [ - { - "address": "https://osmosistest-lcd.quickapi.com/", - "provider": "CryptoCrew" - }, - { - "address": "https://lcd.osmo-test.ccvalidators.com/", - "provider": "ChainLayer" - }, - { - "address": "https://testnet-rest.osmosis.zone/", - "provider": "" - } - ], - "grpc": [ - { - "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" - }, - "keywords": [ - "dex", - "testnet" - ], - "images": [ - { - "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": [ - { - "denom": "uperm" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.30" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.3.finance/", - "provider": "Perm Network" - } - ], - "rest": [ - { - "address": "https://rest.3.finance/", - "provider": "Perm Network" - } - ], - "grpc": [ - { - "address": "https://grpc.3.finance/", - "provider": "Perm Network" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-testnet-persistence.architectnodes.com/", - "provider": "Architect Nodes" - }, - { - "address": "https://persistence-testnet-rpc.baryon.dev/", - "provider": "Baryon" - }, - { - "address": "https://persistence-testnet-rpc.cosmonautstakes.com/", - "provider": "Cosmonaut Stakes" - }, - { - "address": "https://rpc.testnet.persistence.one/", - "provider": "Persistence" - }, - { - "address": "https://persistence-testnet-rpc.polkachu.com/", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://rest-testnet-persistence.architectnodes.com/", - "provider": "Architect Nodes" - }, - { - "address": "https://persistence-testnet-api.baryon.dev/", - "provider": "Baryon" - }, - { - "address": "https://persistence-testnet-rest.cosmonautstakes.com/", - "provider": "Cosmonaut Stakes" - }, - { - "address": "https://rest.testnet.persistence.one/", - "provider": "Persistence" - }, - { - "address": "https://persistence-testnet-api.polkachu.com/", - "provider": "Polkachu" - } - ], - "grpc": [ - { - "address": "persistence-testnet-grpc.polkachu.com:15490", - "provider": "Polkachu" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-persistence-testnet-01.stakeflow.io/", - "provider": "StakeFlow" - }, - { - "address": "https://persistence-testnet-rpc.baryon.dev/", - "provider": "Baryon" - }, - { - "address": "https://persistence-testnet-rpc.cosmonautstakes.com/", - "provider": "Cosmonaut Stakes" - }, - { - "address": "https://rpc.testnet2.persistence.one/", - "provider": "Persistence" - }, - { - "address": "https://persistence-testnet-rpc.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://persistencecoretest-rpc.ytwofund.pro/", - "provider": "YTWOFUND" - }, - { - "address": "http://persistence-testnet.paranorm.pro:24657/", - "provider": "Paranorm" - } - ], - "rest": [ - { - "address": "https://api-persistence-testnet-01.stakeflow.io/", - "provider": "StakeFlow" - }, - { - "address": "https://persistence-testnet-api.baryon.dev/", - "provider": "Baryon" - }, - { - "address": "https://persistence-testnet-rest.cosmonautstakes.com/", - "provider": "Cosmonaut Stakes" - }, - { - "address": "https://rest.testnet2.persistence.one/", - "provider": "Persistence" - }, - { - "address": "https://persistence-testnet-api.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://persistenceCoreTest-rest.ytwofund.pro", - "provider": "YTWOFUND" - } - ], - "grpc": [ - { - "address": "persistence-testnet-grpc.polkachu.com:15490", - "provider": "Polkachu" - }, - { - "address": "persistenceCoreTest-grpc.ytwofund.pro:9090", - "provider": "YTWOFUND" - } - ] - }, - "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": "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}" - } - ] - }, - { - "$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": [ - { - "denom": "upryzm" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.47" - }, - "apis": { - "rpc": [ - { - "address": "https://testnet-rpc.pryzm.zone", - "provider": "PRYZM" - } - ], - "rest": [ - { - "address": "https://testnet-api.pryzm.zone", - "provider": "PRYZM" - } - ], - "grpc": [ - { - "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" - }, - "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.46", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.27" - }, - "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": [ - { - "address": "https://quasar-testnet-rpc.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://questnet.quasar-finance.rhinostake.com/", - "provider": "Rhino Stake" - }, - { - "address": "https://quasar-testnet-rpc.swiss-staking.ch", - "provider": "Swiss Staking" - } - ], - "rest": [ - { - "address": "https://quasar-testnet-api.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://questnet.quasar-finance.rhinostake.com/", - "provider": "Rhino Stake" - }, - { - "address": "https://quasar-testnet-api.swiss-staking.ch/", - "provider": "Swiss Staking" - } - ], - "grpc": [ - { - "address": "quasar-testnet-grpc.polkachu.com:18290", - "provider": "Polkachu" - }, - { - "address": "quasar-testnet-grpc.swiss-staking.ch:10090", - "provider": "Swiss Staking" - } - ] - }, - "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" - } - ] - }, - { - "$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": { - "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": "https://quicksilver-testnet-rpc.polkachu.com/", - "provider": "polkachu" - } - ], - "rest": [ - { - "address": "https://quick.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://quicksilver-testnet-api.polkachu.com/", - "provider": "polkachu" - } - ], - "grpc": [ - { - "address": "http://quick.grpc.t.stavr.tech:9112", - "provider": "🔥STAVR🔥" - }, - { - "address": "quicksilver-testnet-grpc.polkachu.com:11190", - "provider": "polkachu" - } - ] - }, - "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}" - }, - { - "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": [ - { - "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": { - "cosmos_sdk_version": "0.47.3" - }, - "apis": { - "rpc": [ - { - "address": "https://testnet-rpc.qwoyn.studio", - "provider": "Qwoyn Studios" - } - ], - "grpc": [ - { - "address": "http://66.42.74.12:9090", - "provider": "Qwoyn Studios" - } - ], - "rest": [ - { - "address": "https://testnet-api.qwoyn.studio", - "provider": "Qwoyn Studios" - } - ] - }, - "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}" - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" - }, - "images": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "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-state-sync-01.rs-testnet.polypore.xyz", - "provider": "Hypha" - }, - { - "address": "https://rpc.provider-state-sync-02.rs-testnet.polypore.xyz", - "provider": "Hypha" - } - ], - "rest": [ - { - "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-state-sync-01.rs-testnet.polypore.xyz", - "provider": "Hypha" - }, - { - "address": "https://rest.provider-state-sync-02.rs-testnet.polypore.xyz", - "provider": "Hypha" - } - ], - "grpc": [ - { - "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-state-sync-01.rs-testnet.polypore.xyz", - "provider": "Hypha" - }, - { - "address": "https://grpc.provider-state-sync-02.rs-testnet.polypore.xyz", - "provider": "Hypha" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "utsaga" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.47", - "cosmwasm_enabled": false - }, - "apis": { - "rpc": [ - { - "address": "https://testnet-ssc.sagarpc.io/", - "provider": "Saga" - } - ], - "rest": [ - { - "address": "https://testnet-ssc-lcd.sagarpc.io/", - "provider": "Saga" - } - ], - "grpc": [ - { - "address": "testnet-ssc-grpc.sagarpc.io:443", - "provider": "Saga" - } - ] - }, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png" - }, - "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}" - } - ], - "keywords": [ - "testnet", - "chainlet" - ], - "images": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.testnet.secretsaturn.net", - "provider": "𝕊ecret 𝕊aturn" - }, - { - "address": "https://rpc.pulsar.scrttestnet.com", - "provider": "SCRT Testnet Committee" - } - ], - "rest": [ - { - "address": "https://lcd.testnet.secretsaturn.net", - "provider": "𝕊ecret 𝕊aturn" - }, - { - "address": "https://api.pulsar.scrttestnet.com", - "provider": "SCRT Testnet Committee" - } - ], - "grpc-web": [ - { - "address": "https://grpc.testnet.secretsaturn.net", - "provider": "𝕊ecret 𝕊aturn" - }, - { - "address": "https://grpc.pulsar.scrttestnet.com", - "provider": "SCRT Testnet Committee" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.testnet.secretsaturn.net", - "provider": "𝕊ecret 𝕊aturn" - }, - { - "address": "https://rpc.pulsar.scrttestnet.com", - "provider": "SCRT Testnet Committee" - } - ], - "rest": [ - { - "address": "http://testnet.securesecrets.org:1317", - "provider": "Trivium | Trivium.Network" - }, - { - "address": "https://lcd.testnet.secretsaturn.net", - "provider": "𝕊ecret 𝕊aturn" - }, - { - "address": "https://api.pulsar.scrttestnet.com", - "provider": "SCRT Testnet Committee" - } - ], - "grpc-web": [ - { - "address": "https://grpc.testnet.secretsaturn.net", - "provider": "𝕊ecret 𝕊aturn" - }, - { - "address": "https://grpc.pulsar.scrttestnet.com", - "provider": "SCRT Testnet Committee" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.sei-devnet-3.seinetwork.io", - "provider": "Sei Foundation" - }, - { - "address": "https://sei-testnet-2-rpc.brocha.in", - "provider": "Brochain" - } - ], - "rest": [ - { - "address": "https://rest.sei-devnet-3.seinetwork.io", - "provider": "Sei Foundation" - }, - { - "address": "https://sei-testnet-2-rest.brocha.in", - "provider": "Brochain" - } - ], - "grpc": [ - { - "address": "https://grpc.sei-devnet-3.seinetwork.io", - "provider": "Sei Foundation" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": {}, - "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-testnet-rpc.brocha.in", - "provider": "Brochain" - } - ], - "rest": [ - { - "address": "https://sei-testnet-rest.brocha.in", - "provider": "Brochain" - } - ] - }, - "explorers": [ - { - "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://sei-testnet-2-rpc.brocha.in", - "provider": "Brochain" - } - ], - "rest": [ - { - "address": "https://sei-testnet-2-rest.brocha.in", - "provider": "Brochain" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc-devnet.selfchain.xyz", - "provider": "Selfchain" - } - ], - "rest": [ - { - "address": "https://api-devnet.selfchain.xyz/", - "provider": "Selfchain" - } - ] - }, - "explorers": [ - { - "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": {}, - "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": [ - { - "address": "https://rpc.testnet.sgenetwork.io", - "provider": "Sge Network" - }, - { - "address": "https://testnet-saage-rpc.lavenderfive.com/ ", - "provider": "Lavender.Five" - }, - { - "address": "https://saage-testnet-rpc.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://rpc-t.sge.nodestake.top/", - "provider": "Nodestake.top" - }, - { - "address": "https://sge.rpc.t.stavr.tech:443", - "provider": "🔥STAVR🔥" - } - ], - "rest": [ - { - "address": "https://api.testnet.sgenetwork.io", - "provider": "Sge Network" - }, - { - "address": "https://api-t.sge.nodestake.top/", - "provider": "Nodestake.top" - }, - { - "address": "https://saage-testnet-api.polkachu.com/", - "provider": "Polkachu" - }, - { - "address": "https://sge.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - } - ] - }, - "explorers": [ - { - "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}" - } - ], - "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" - } - ] - }, - { - "$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": { - "cosmos_sdk_version": "0.45" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc1.fivenet.sixprotocol.net:443", - "provider": "" - } - ], - "rest": [ - { - "address": "https://api1.fivenet.sixprotocol.net:443", - "provider": "" - } - ] - }, - "explorers": [ - { - "kind": "sixscan", - "url": "https://sixscan.io/fivenet", - "tx_page": "https://sixscan.io/fivenet/tx/${txHash}" - } - ], - "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": [ - { - "denom": "usource" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.25" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc-t.source.nodestake.top", - "provider": "Nodestake" - }, - { - "address": "https://rpc-source.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://source-testnet.rpc.kjnodes.com", - "provider": "kjnodes" - } - ], - "rest": [ - { - "address": "https://api-t.source.nodestake.top", - "provider": "Nodestake" - }, - { - "address": "https://api-source.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://source.api.t.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://source-testnet.api.kjnodes.com", - "provider": "kjnodes" - } - ], - "grpc": [ - { - "address": "https://grpc-t.source.nodestake.top", - "provider": "nodestake" - } - ] - }, - "explorers": [ - { - "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": "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": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.28" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.elgafar-1.stargaze-apis.com", - "provider": "Stargaze Foundation" - } - ], - "rest": [ - { - "address": "https://rest.elgafar-1.stargaze-apis.com", - "provider": "Stargaze Foundation" - } - ], - "grpc": [ - { - "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" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.stateset.zone/", - "provider": "stateset" - } - ], - "rest": [ - { - "address": "https://rest-api.stateset.zone", - "provider": "stateset" - } - ] - }, - "explorers": [ - { - "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": [ - { - "denom": "ustrd" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.46" - }, - "apis": { - "rpc": [ - { - "address": "https://stride.testnet-1.stridenet.co", - "provider": "Stride" - } - ], - "rest": [ - { - "address": "https://stride.testnet-1.stridenet.co/api", - "provider": "Stride" - } - ], - "grpc": [] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "https://rpc.yieldmos.com/temporal-test-2", - "provider": "Yieldmos" - }, - { - "address": "https://testnet-temporal-rpc.lavenderfive.com:443", - "provider": "Lavender.Five" - } - ], - "rest": [ - { - "address": "https://lcd.yieldmos.com/temporal-test-2", - "provider": "Yieldmos" - }, - { - "address": "https://testnet-temporal-api.lavenderfive.com:443", - "provider": "Lavender.Five" - } - ], - "grpc": [ - { - "address": "142.132.157.153:24190", - "provider": "Yieldmos" - } - ] - }, - "explorers": [ - { - "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": "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": {}, - "apis": { - "rpc": [ - { - "address": "https://terp-testnet-rpc.itrocket.net:443/", - "provider": "itrocket" - } - ], - "rest": [ - { - "address": "https://terp-testnet-api.itrocket.net:443/", - "provider": "itrocket" - } - ], - "grpc": [ - { - "address": "terp-testnet-grpc.itrocket.net/", - "provider": "itrocket" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": {}, - "apis": { - "rpc": [ - { - "address": "https://pisco-rpc.terra.dev:443", - "provider": "Terraform Labs" - }, - { - "address": "https://terra-testnet-rpc.polkachu.com:443", - "provider": "Polkachu" - } - ], - "rest": [ - { - "address": "https://pisco-lcd.terra.dev:443", - "provider": "Terraform Labs" - }, - { - "address": "https://terra-testnet-api.polkachu.com:443", - "provider": "Polkachu" - } - ], - "grpc": [ - { - "address": "terra-testnet-grpc.polkachu.com:11790", - "provider": "Polkachu" - } - ] - }, - "explorers": [ - { - "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": {}, - "apis": { - "rpc": [ - { - "address": "http://65.49.204.199:26657", - "provider": "UlasNetwork" - } - ], - "rest": [ - { - "address": "http://65.49.204.199:1317", - "provider": "UlasNetwork" - } - ], - "grpc": [ - { - "address": "http://65.49.204.199:9090", - "provider": "UlasNetwork" - } - ] - }, - "explorers": [ - { - "kind": "ulas-scan", - "url": "https://testnet-explorer.ulas.network", - "tx_page": "https://testnet-explorer.ulas.network/ulas/tx/${txHash}" - } - ], - "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": [ - { - "denom": "muno" - } - ] - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.cryptware.io", - "provider": "cryptware" - }, - { - "address": "https://union-testnet-rpc.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://rpc-testnet-union.nodeist.net", - "provider": "Nodeist" - } - ], - "rest": [ - { - "address": "https://api.cryptware.io", - "provider": "cryptware" - }, - { - "address": "https://union-testnet-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://api-testnet-union.nodeist.net", - "provider": "Nodeist" - } - ], - "grpc": [ - { - "address": "https://grpc.cryptware.io", - "provider": "cryptware" - }, - { - "address": "http://union-testnet-grpc.polkachu.com:24690", - "provider": "Polkachu" - }, - { - "address": "https://grpc-testnet-union.nodeist.net", - "provider": "Nodeist" - } - ] - }, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" - }, - "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}" - } - ], - "keywords": [ - "testnet" - ], - "images": [ - { - "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": { - "cosmos_sdk_version": "0.46.5" - }, - "apis": { - "rpc": [ - { - "address": "https://uptick-7000-2-rpc.staketab.org:443", - "provider": "Staketab" - } - ], - "rest": [ - { - "address": "https://uptick-7000-2-rest.staketab.org", - "provider": "Staketab" - } - ], - "grpc": [ - { - "address": "services.staketab.com:9004", - "provider": "Staketab" - } - ] - }, - "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": "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": {}, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" - }, - "apis": { - "rpc": [ - { - "address": "http://api-testnet.vincechain.com/:26657/", - "provider": "vincescan.com" - } - ], - "rest": [ - { - "address": "http://lcd-testnet.vincechain.com/:1317/", - "provider": "vincescan.com" - } - ], - "grpc": [], - "evm-http-jsonrpc": [ - { - "address": "http://rpc-testnet.vincechain.com", - "provider": "vincescan.com" - } - ] - }, - "explorers": [ - { - "kind": "blockscout", - "url": "https://scan-testnet.vincechain.com", - "tx_page": "https://scan-testnet.vincechain.com/tx/${txHash}" - } - ], - "images": [ - { - "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": [ - { - "denom": "uwahax" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45", - "cosmwasm_enabled": true, - "cosmwasm_version": "0.30" - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.wavehash.online/", - "provider": "WaveHash Network" - } - ], - "rest": [ - { - "address": "https://lcd.wavehash.online/", - "provider": "WaveHash Network" - } - ], - "grpc": [ - { - "address": "https://grpc.wavehash.online/", - "provider": "WaveHash Network" - } - ] - }, - "explorers": [ - { - "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": { - "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" - } - ], - "rest": [ - { - "address": "https://api.xion-testnet-1.burnt.com", - "provider": "burnt-labs" - } - ], - "grpc": [ - { - "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" - }, - "keywords": [ - "xion", - "burnt", - "testnet" - ], - "images": [ - { - "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": [ - { - "denom": "azeta", - "low_gas_price": 20000000000, - "average_gas_price": 25000000000, - "high_gas_price": 40000000000 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "azeta" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.46" - }, - "apis": { - "rpc": [ - { - "address": "https://zetachain-athens.blockpi.network/rpc/v1/public", - "provider": "BlockPI" - } - ], - "rest": [ - { - "address": "https://zetachain-athens.blockpi.network/lcd/v1/public", - "provider": "BlockPI" - } - ], - "grpc": [ - { - "address": "https://zetachain-testnet.nodejumper.io:9090", - "provider": "NodeJumper" - } - ] - }, - "explorers": [ - { - "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}" - } - ] - }, - { - "$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": [ - { - "denom": "utgd" - } - ] - }, - "codebase": { - "cosmwasm_enabled": true - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.mainnet-1.tgrade.confio.run", - "provider": "Confio" - }, - { - "address": "https://rpc.tgrade.posthuman.digital", - "provider": "POSTHUMAN ꝏ DVS" - } - ], - "rest": [ - { - "address": "https://api.mainnet-1.tgrade.confio.run", - "provider": "Confio" - }, - { - "address": "https://lcd.tgrade.posthuman.digital", - "provider": "POSTHUMAN ꝏ DVS" - } - ], - "grpc": [] - }, - "explorers": [ - { - "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" - }, - "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" - } - ] - }, - { - "$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": { - "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://rpc-umee-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://umee-mainnet-rpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "http://umee.rpc.m.stavr.tech:10457", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://rpc-umee.cosmos-spaces.cloud", - "provider": "Cosmos Spaces" - }, - { - "address": "http://rpc-umee-0.node75.org:26657", - "provider": "Pro-Nodes75" - }, - { - "address": "https://umee-rpc.quantnode.tech", - "provider": "QuantNode" - }, - { - "address": "https://umee-rpc.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://rpc-umee-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://umee-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://umee-rpc.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://umee.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://umee-rpc.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://rpc-umee.mms.team", - "provider": "MMS" - }, - { - "address": "https://rpc-umee.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://umee-rpc.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://umee-rpc.highstakes.ch:26657/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://umee.rpc.stakevillage.net:443", - "provider": "Stake Village" - } - ], - "rest": [ - { - "address": "https://api-umee-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://umee.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "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-api.polkachu.com", - "provider": "Polkachu" - }, - { - "address": "https://umee-lcd.quantnode.tech", - "provider": "QuantNode" - }, - { - "address": "https://umee-api.tienthuattoan.ventures", - "provider": "TienThuatToan" - }, - { - "address": "https://api-umee-01.stakeflow.io", - "provider": "Stakeflow" - }, - { - "address": "https://umee-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://umee-api.theamsolutions.info", - "provider": "AM Solutions" - }, - { - "address": "https://umee.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://umee-api.w3coins.io", - "provider": "w3coins" - }, - { - "address": "https://api-umee.mms.team", - "provider": "MMS" - }, - { - "address": "https://api-umee.mzonder.com", - "provider": "MZONDER" - }, - { - "address": "https://umee-api.stake-town.com", - "provider": "StakeTown" - }, - { - "address": "https://umee-api.highstakes.ch:1317/", - "provider": "High Stakes 🇨🇭" - }, - { - "address": "https://umee.api.stakevillage.net", - "provider": "Stake Village" - } - ], - "grpc": [ - { - "address": "grpc-umee-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - }, - { - "address": "umee-grpc.polkachu.com:13690", - "provider": "Polkachu" - }, - { - "address": "umee-mainnet-grpc.autostake.com:443", - "provider": "AutoStake 🛡️ Slash Protected" - }, - { - "address": "grpc-umee.cosmos-spaces.cloud:2110", - "provider": "Cosmos Spaces" - }, - { - "address": "umee-grpc.quantnode.tech:9090", - "provider": "QuantNode gRPC" - }, - { - "address": "umee.grpc.m.stavr.tech:9090", - "provider": "🔥STAVR🔥" - }, - { - "address": "umee-grpc.quantnode.tech:9091", - "provider": "QuantNode gRPCweb" - }, - { - "address": "umee-grpc.tienthuattoan.ventures:9090", - "provider": "TienThuatToan" - }, - { - "address": "grpc-umee-01.stakeflow.io:9990", - "provider": "Stakeflow" - }, - { - "address": "services.staketab.com:9020", - "provider": "Staketab" - }, - { - "address": "umee.grpc.kjnodes.com:16290", - "provider": "kjnodes" - }, - { - "address": "umee-grpc.w3coins.io:13690", - "provider": "w3coins" - }, - { - "address": "grpc-umee.mms.team:443", - "provider": "MMS" - }, - { - "address": "grpc-umee.mzonder.com:443", - "provider": "MZONDER" - }, - { - "address": "umee-grpc.stake-town.com:443", - "provider": "StakeTown" - }, - { - "address": "umee.grpc.stakevillage.net:11090", - "provider": "Stake Village" - } - ] - }, - "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": "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": "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": "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 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": [ - { - "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": { - "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://rpc.unification.chainmasters.ninja/", - "provider": "Chainmasters" - } - ], - "rest": [ - { - "address": "https://rest.unification.io", - "provider": "Unification" - }, - { - "address": "https://rest.unification.chainmasters.ninja/", - "provider": "Chainmasters" - } - ], - "grpc": [ - { - "address": "grpc.unification.io:443", - "provider": "Unification" - }, - { - "address": "grpc.unification.chainmasters.info", - "provider": "Chainmasters" - } - ] - }, - "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": "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}" - } - ], - "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": { - "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": "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.genznodes.dev", - "provider": "genznodes" - } - ], - "rest": [ - { - "address": "https://a.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://ununifi-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "https://ununifi-api.genznodes.dev", - "provider": "genznodes" - } - ], - "grpc": [ - { - "address": "a.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": "grpc.ununifi.nodestake.top:9090", - "provider": "NodeStake" - }, - { - "address": "https://grpc-ununifi.nodeist.net", - "provider": "Nodeist" - }, - { - "address": "https://ununifi-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "ununifi-grpc.genznodes.dev:54090", - "provider": "genznodes" - } - ] - }, - "explorers": [ - { - "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": "Nodeist Explorer", - "url": "https://exp.nodeist.net/Ununifi", - "tx_page": "https://exp.nodeist.net/Ununifi/tx/${txHash}" - } - ], - "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" - } - ] - }, - { - "$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": { - "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.bccnodes.com:443", - "provider": "BccNodes" - }, - { - "address": "https://rpc.uptick.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "http://uptick.rpc.nodersteam.com:21657", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://uptick.rpc.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "http://uptick.rpc.m.stavr.tech:3157", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://m-uptick.rpc.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://uptick-mainnet-rpc.itrocket.net:443", - "provider": "itrocket" - }, - { - "address": "https://uptick.rpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://uptick-rpc.staketab.org:443", - "provider": "Staketab" - }, - { - "address": "https://uptick-rpc.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://rpc-uptick.cakralabs.site", - "provider": "Cakra Labs" - }, - { - "address": "https://rpc-uptick.sr20de.xyz", - "provider": "Sr20de" - } - ], - "rest": [ - { - "address": "https://uptick-rest.brocha.in:443", - "provider": "Brochain" - }, - { - "address": "http://uptick.api.nodersteam.com:21017", - "provider": "[NODERS]TEAM" - }, - { - "address": "https://api.uptick.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://uptick.api.kjnodes.com", - "provider": "kjnodes" - }, - { - "address": "https://uptick.api.m.stavr.tech", - "provider": "🔥STAVR🔥" - }, - { - "address": "https://m-uptick.api.utsa.tech", - "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" - }, - { - "address": "https://uptick-mainnet-api.itrocket.net:443", - "provider": "itrocket" - }, - { - "address": "https://uptick.api.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://uptick-rest.staketab.org", - "provider": "Staketab" - }, - { - "address": "https://uptick-rest.stakerhouse.com", - "provider": "StakerHouse" - }, - { - "address": "https://rest-uptick.cakralabs.site", - "provider": "Cakra Labs" - }, - { - "address": "https://api-uptick.sr20de.xyz", - "provider": "Sr20de" - } - ], - "grpc": [ - { - "address": "https://grpc.uptick.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "uptick.rpc.bccnodes.com:9690", - "provider": "BccNodes" - }, - { - "address": "uptick.grpc.nodersteam.com:9211", - "provider": "[NODERS]TEAM" - }, - { - "address": "uptick.grpc.kjnodes.com:11590", - "provider": "kjnodes" - }, - { - "address": "uptick.grpc.m.stavr.tech:1901", - "provider": "🔥STAVR🔥" - }, - { - "address": "uptick-mainnet-grpc.itrocket.net:10090", - "provider": "itrocket" - }, - { - "address": "https://uptick.grpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "services.staketab.com:9190", - "provider": "Staketab" - }, - { - "address": "uptick-grpc.stakerhouse.com:443", - "provider": "StakerHouse" - }, - { - "address": "grpc-uptick.mms.team:443", - "provider": "MMS" - }, - { - "address": "https://grpc-uptick.sr20de.xyz", - "provider": "Sr20de" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://jsonrpc.uptick.nodestake.top", - "provider": "NodeStake" - }, - { - "address": "https://uptick.jsonrpc.liveraven.net", - "provider": "LiveRaveN" - }, - { - "address": "https://evm-uptick.sr20de.xyz", - "provider": "Sr20de" - } - ] - }, - "explorers": [ - { - "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": "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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": {}, - "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://rpc-vidulum-ia.cosmosia.notional.ventures/", - "provider": "Notional" - } - ], - "rest": [ - { - "address": "https://mainnet-lcd.vidulum.app", - "provider": "vidulum" - }, - { - "address": "https://api-vidulum-ia.cosmosia.notional.ventures/", - "provider": "Notional" - }, - { - "address": "https://api-vdl.nodine.id/", - "provider": "Nodine.ID" - } - ], - "grpc": [ - { - "address": "grpc-vidulum-ia.cosmosia.notional.ventures:443", - "provider": "Notional" - } - ] - }, - "explorers": [ - { - "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": "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}" - } - ], - "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" - } - ] - }, - { - "$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": [ - { - "denom": "axpla" - } - ] - }, - "codebase": { - "cosmos_sdk_version": "0.45.16", - "cosmwasm_version": "0.33.0" - }, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg" - }, - "apis": { - "rpc": [ - { - "address": "https://dimension-rpc.xpla.dev", - "provider": "Holdings" - }, - { - "address": "https://xpla-rpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - } - ], - "rest": [ - { - "address": "https://dimension-lcd.xpla.io", - "provider": "ZenaAD" - }, - { - "address": "https://dimension-lcd.xpla.dev", - "provider": "Holdings" - }, - { - "address": "https://xpla-api.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, - { - "address": "http://xpla.api.staking-explorer.com", - "provider": "staking-explorer.com" - } - ], - "grpc": [], - "evm-http-jsonrpc": [ - { - "address": "https://dimension-evm-rpc.xpla.dev", - "provider": "Holdings" - } - ] - }, - "explorers": [ - { - "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": "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": [ - { - "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/devnet/all.ts b/packages/chain-registry/src/devnet/all.ts new file mode 100644 index 000000000..c1a18655b --- /dev/null +++ b/packages/chain-registry/src/devnet/all.ts @@ -0,0 +1,9 @@ +import assets from './assets'; +import chains from './chains'; + +export default { + assets, + chains +}; + +export { assets, chains }; diff --git a/packages/chain-registry/src/devnet/assets.ts b/packages/chain-registry/src/devnet/assets.ts new file mode 100644 index 000000000..1e7d51a06 --- /dev/null +++ b/packages/chain-registry/src/devnet/assets.ts @@ -0,0 +1,11 @@ +import { AssetList } from '@chain-registry/types'; + +import * as _bitcannadevnet2 from './bitcannadevnet2'; +import * as _celestiatestnet2 from './celestiatestnet2'; +import * as _impacthubdevnet from './impacthubdevnet'; +import * as _kyvedevnet from './kyvedevnet'; +import * as _seidevnet3 from './seidevnet3' + +const assets: AssetList[] = [_bitcannadevnet2.assets,_celestiatestnet2.assets,_impacthubdevnet.assets,_kyvedevnet.assets,_seidevnet3.assets]; + +export default assets; diff --git a/packages/chain-registry/src/devnet/bitcannadevnet2/assets.ts b/packages/chain-registry/src/devnet/bitcannadevnet2/assets.ts new file mode 100644 index 000000000..7540fc250 --- /dev/null +++ b/packages/chain-registry/src/devnet/bitcannadevnet2/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "ubcna", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/bitcannadevnet2/chain.ts b/packages/chain-registry/src/devnet/bitcannadevnet2/chain.ts new file mode 100644 index 000000000..4af1c3877 --- /dev/null +++ b/packages/chain-registry/src/devnet/bitcannadevnet2/chain.ts @@ -0,0 +1,52 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-devnet-6.bitcanna.io/", + "provider": "bitcanna" + } + ], + "grpc": [ + { + "address": "http://devnet-6.bitcanna.io:9090", + "provider": "bitcanna" + } + ], + "rest": [ + { + "address": "https://lcd-devnet-6.bitcanna.io/", + "provider": "bitcanna" + } + ] + }, + "explorers": [ + { + "url": "https://explorer-devnet-6.bitcanna.io", + "tx_page": "https://explorer-devnet-6.bitcanna.io/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/bitcannadevnet2/index.ts b/packages/chain-registry/src/devnet/bitcannadevnet2/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/devnet/bitcannadevnet2/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/devnet/celestiatestnet2/assets.ts b/packages/chain-registry/src/devnet/celestiatestnet2/assets.ts new file mode 100644 index 000000000..fe4ef2d86 --- /dev/null +++ b/packages/chain-registry/src/devnet/celestiatestnet2/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "celestiatestnet2", + "assets": [ + { + "description": "", + "denom_units": [ + { + "denom": "utia", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/celestiatestnet2/chain.ts b/packages/chain-registry/src/devnet/celestiatestnet2/chain.ts new file mode 100644 index 000000000..6229bcfc5 --- /dev/null +++ b/packages/chain-registry/src/devnet/celestiatestnet2/chain.ts @@ -0,0 +1,50 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://consensus-full.celestia-arabica-10.com/", + "provider": "Celestia Labs" + } + ], + "rest": [ + { + "address": "https://api.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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/celestiatestnet2/index.ts b/packages/chain-registry/src/devnet/celestiatestnet2/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/devnet/celestiatestnet2/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/devnet/chains.ts b/packages/chain-registry/src/devnet/chains.ts new file mode 100644 index 000000000..c2b72d891 --- /dev/null +++ b/packages/chain-registry/src/devnet/chains.ts @@ -0,0 +1,11 @@ +import { Chain } from '@chain-registry/types'; + +import * as _bitcannadevnet2 from './bitcannadevnet2'; +import * as _celestiatestnet2 from './celestiatestnet2'; +import * as _impacthubdevnet from './impacthubdevnet'; +import * as _kyvedevnet from './kyvedevnet'; +import * as _seidevnet3 from './seidevnet3' + +const chains: Chain[] = [_bitcannadevnet2.chain,_celestiatestnet2.chain,_impacthubdevnet.chain,_kyvedevnet.chain,_seidevnet3.chain]; + +export default chains; diff --git a/packages/chain-registry/src/devnet/impacthubdevnet/assets.ts b/packages/chain-registry/src/devnet/impacthubdevnet/assets.ts new file mode 100644 index 000000000..53be00a54 --- /dev/null +++ b/packages/chain-registry/src/devnet/impacthubdevnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "impacthubdevnet", + "assets": [ + { + "description": "The native token of IXO Chain", + "denom_units": [ + { + "denom": "uixo", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/impacthubdevnet/chain.ts b/packages/chain-registry/src/devnet/impacthubdevnet/chain.ts new file mode 100644 index 000000000..920a8b8d2 --- /dev/null +++ b/packages/chain-registry/src/devnet/impacthubdevnet/chain.ts @@ -0,0 +1,61 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uixo" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://devnet.ixo.earth/rpc/", + "provider": "ixoworld" + } + ], + "rest": [ + { + "address": "https://devnet.ixo.earth/rest/", + "provider": "ixoworld" + } + ], + "grpc": [] + }, + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/impacthubdevnet/index.ts b/packages/chain-registry/src/devnet/impacthubdevnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/devnet/impacthubdevnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/devnet/index.ts b/packages/chain-registry/src/devnet/index.ts new file mode 100644 index 000000000..4caaf659b --- /dev/null +++ b/packages/chain-registry/src/devnet/index.ts @@ -0,0 +1,5 @@ +export * as bitcannadevnet2 from './bitcannadevnet2'; +export * as celestiatestnet2 from './celestiatestnet2'; +export * as impacthubdevnet from './impacthubdevnet'; +export * as kyvedevnet from './kyvedevnet'; +export * as seidevnet3 from './seidevnet3'; diff --git a/packages/chain-registry/src/devnet/kyvedevnet/assets.ts b/packages/chain-registry/src/devnet/kyvedevnet/assets.ts new file mode 100644 index 000000000..afa07cbc3 --- /dev/null +++ b/packages/chain-registry/src/devnet/kyvedevnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "kyvedevnet", + "assets": [ + { + "description": "The native utility token of the Korellia devnet version of KYVE.", + "denom_units": [ + { + "denom": "tkyve", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvedevnet/images/kyve.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/kyvedevnet/chain.ts b/packages/chain-registry/src/devnet/kyvedevnet/chain.ts new file mode 100644 index 000000000..51d86336a --- /dev/null +++ b/packages/chain-registry/src/devnet/kyvedevnet/chain.ts @@ -0,0 +1,47 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.korellia.kyve.network", + "provider": "kyve" + } + ], + "rest": [ + { + "address": "https://api.korellia.kyve.network", + "provider": "kyve" + } + ] + }, + "explorers": [ + { + "kind": "explorers.guru", + "url": "https://kyve.explorers.guru/", + "tx_page": "https://kyve.explorers.guru/transaction/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/kyvedevnet/index.ts b/packages/chain-registry/src/devnet/kyvedevnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/devnet/kyvedevnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/devnet/seidevnet3/assets.ts b/packages/chain-registry/src/devnet/seidevnet3/assets.ts new file mode 100644 index 000000000..ca0168e9f --- /dev/null +++ b/packages/chain-registry/src/devnet/seidevnet3/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "seidevnet3", + "assets": [ + { + "description": "The native staking and governance token of the Atlantic testnet version of Sei.", + "denom_units": [ + { + "denom": "usei", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seidevnet3/images/sei.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/seidevnet3/chain.ts b/packages/chain-registry/src/devnet/seidevnet3/chain.ts new file mode 100644 index 000000000..7dad4a1f2 --- /dev/null +++ b/packages/chain-registry/src/devnet/seidevnet3/chain.ts @@ -0,0 +1,66 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.sei-devnet-3.seinetwork.io", + "provider": "Sei Foundation" + }, + { + "address": "https://sei-testnet-2-rpc.brocha.in", + "provider": "Brochain" + } + ], + "rest": [ + { + "address": "https://rest.sei-devnet-3.seinetwork.io", + "provider": "Sei Foundation" + }, + { + "address": "https://sei-testnet-2-rest.brocha.in", + "provider": "Brochain" + } + ], + "grpc": [ + { + "address": "https://grpc.sei-devnet-3.seinetwork.io", + "provider": "Sei Foundation" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/devnet/seidevnet3/index.ts b/packages/chain-registry/src/devnet/seidevnet3/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/devnet/seidevnet3/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/ibc.ts b/packages/chain-registry/src/ibc.ts deleted file mode 100644 index e5a1243d9..000000000 --- a/packages/chain-registry/src/ibc.ts +++ /dev/null @@ -1,16996 +0,0 @@ -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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2668", - "connection_id": "connection-2163" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-641", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "axelar", - "client_id": "07-tendermint-78", - "connection_id": "connection-65" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-51", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-1002", - "connection_id": "connection-701" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-457", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-97", - "connection_id": "connection-55" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-40", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-201", - "connection_id": "connection-175" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-106", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-61", - "connection_id": "connection-41" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-47", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "oraichain", - "client_id": "07-tendermint-74", - "connection_id": "connection-42" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-33", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2316", - "connection_id": "connection-1814" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-490", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-222", - "connection_id": "connection-156" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-121", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-70", - "connection_id": "connection-48" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-57", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra", - "client_id": "07-tendermint-172", - "connection_id": "connection-99" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-69", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-101", - "connection_id": "connection-89" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-77", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "archway", - "client_id": "07-tendermint-23", - "connection_id": "connection-21" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-60", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-20", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "axelar", - "client_id": "07-tendermint-69", - "connection_id": "connection-51" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-41", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "composable", - "client_id": "07-tendermint-51", - "connection_id": "connection-20" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-55", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-927", - "connection_id": "connection-649" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-405", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "crescent", - "client_id": "07-tendermint-19", - "connection_id": "connection-14" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-116", - "connection_id": "connection-70" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-57", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-85", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-173", - "connection_id": "connection-154" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-91", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-94", - "connection_id": "connection-64" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-61", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-32", - "connection_id": "connection-40" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-62", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2109", - "connection_id": "connection-1649" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-320", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-111", - "connection_id": "connection-80" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-51", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-129", - "connection_id": "connection-118" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-59", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-148", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-1121", - "connection_id": "connection-808" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-567", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2785", - "connection_id": "connection-2285" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-779", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "archway", - "client_id": "07-tendermint-26", - "connection_id": "connection-28" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-109", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-26", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-385", - "connection_id": "connection-339" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-184", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "crescent", - "client_id": "07-tendermint-80", - "connection_id": "connection-71" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-70", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-44", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cryptoorgchain", - "client_id": "07-tendermint-65", - "connection_id": "connection-38" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-125", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "irisnet", - "client_id": "07-tendermint-23", - "connection_id": "connection-16" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-80", - "connection_id": "connection-47" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-35", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-29", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-103", - "connection_id": "connection-72" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-63", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-64", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-0", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-5", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "regen", - "client_id": "07-tendermint-20", - "connection_id": "connection-9" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-47", - "connection_id": "connection-28" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-43", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sentinel", - "client_id": "07-tendermint-42", - "connection_id": "connection-27" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-11", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-24", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "starname", - "client_id": "07-tendermint-29", - "connection_id": "connection-18" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-387", - "connection_id": "connection-364" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-116", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-273", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "archway", - "client_id": "07-tendermint-58", - "connection_id": "connection-68" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-97", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-164", - "connection_id": "connection-127" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-123", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-176", - "connection_id": "connection-133" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-97", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-409", - "connection_id": "connection-413" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-351", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "axelar", - "client_id": "07-tendermint-160", - "connection_id": "connection-145" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-111", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "bitcanna", - "client_id": "07-tendermint-83", - "connection_id": "connection-74" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-35", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-50", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-1152", - "connection_id": "connection-873" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-623", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "decentr", - "client_id": "07-tendermint-21", - "connection_id": "connection-8" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-424", - "connection_id": "connection-406" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-38", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-145", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "jackal", - "client_id": "07-tendermint-61", - "connection_id": "connection-50" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-41", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live" - } - } - ], - "operators": [ - { - "chain_1": { - "address": "archway16l5ls4ajah6hethh374tpgn42r5q4sqeuw8udj" - }, - "chain_2": { - "address": "jkl134a4es94hjqqej732cymf0w3988zh3c4yuqtf8" - }, - "memo": "by AM Solutions | https://www.theamsolutions.info", - "name": "AM Solutions", - "discord_handle": "AlexeyM#5409" - }, - { - "chain_1": { - "address": "archway1nms20r7jzaa4ms9exv90ckl2xfn0rd3rmqh7zm" - }, - "chain_2": { - "address": "jkl1nms20r7jzaa4ms9exv90ckl2xfn0rd3rh49t3n" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-144", - "connection_id": "connection-110" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-99", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-62", - "connection_id": "connection-43" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-61", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-41", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-17", - "connection_id": "connection-26" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-29", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "nois", - "client_id": "07-tendermint-15", - "connection_id": "connection-9" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-19", - "port_id": "wasm.archway10f3aasgsnpv84ymjyld50jayc4ecu267sdpjamauwm8nvxlzex9qj4dkwr" - }, - "chain_2": { - "channel_id": "channel-22", - "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" - }, - "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" - }, - "chain_2": { - "chain_name": "omniflixhub", - "client_id": "07-tendermint-49", - "connection_id": "connection-43" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-32", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2850", - "connection_id": "connection-2362" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1429", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "quicksilver", - "client_id": "07-tendermint-83", - "connection_id": "connection-58" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-34", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-116", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "qwoyn", - "client_id": "07-tendermint-8", - "connection_id": "connection-5" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-88", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-169", - "connection_id": "connection-119" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-84", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-384", - "connection_id": "connection-360" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-50", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-265", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-228", - "connection_id": "connection-190" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-97", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2697", - "connection_id": "connection-2235" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-648", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-167", - "connection_id": "connection-113" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-83", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-104", - "connection_id": "connection-73" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-65", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "okexchain", - "client_id": "07-tendermint-92", - "connection_id": "connection-35" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-30", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1923", - "connection_id": "connection-1498" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-232", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "axelar", - "client_id": "07-tendermint-152", - "connection_id": "connection-137" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-104", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-1158", - "connection_id": "connection-880" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-646", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-133", - "connection_id": "connection-168" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-124", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-66", - "connection_id": "connection-63" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-41", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "nois", - "client_id": "07-tendermint-4", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "wasm.aura1r3zgdsn3dcze07a4r60rxxx7ppvkxfshn9np0pwtkgarrld0786s72jtjt" - }, - "chain_2": { - "channel_id": "channel-35", - "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3054", - "connection_id": "connection-2551" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11304", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-339", - "connection_id": "connection-288" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-270", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-24", - "port_id": "wasm.aura1y3244guwexyvn6yx6kqkj5s0f56lzfdnuja3culygnuwxgrxyuqsaz4xvv" - }, - "chain_2": { - "channel_id": "channel-271", - "port_id": "wasm.stars1r0a8ygvnjfaegy4n5z9325e0ew9uy2s7rn4vt7qf4ltv49fj4tnsk6pvtv" - }, - "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" - }, - "chain_2": { - "chain_name": "celestia", - "client_id": "07-tendermint-9", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-125", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "axelar", - "client_id": "07-tendermint-187", - "connection_id": "connection-165" - }, - "chain_2": { - "chain_name": "composable", - "client_id": "07-tendermint-140", - "connection_id": "connection-58" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-127", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-46", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "coreum", - "client_id": "07-tendermint-7", - "connection_id": "connection-7" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-120", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-622", - "connection_id": "connection-481" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-293", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "crescent", - "client_id": "07-tendermint-6", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "empowerchain", - "client_id": "07-tendermint-2", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-109", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "axelar", - "client_id": "07-tendermint-50", - "connection_id": "connection-31" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-69", - "connection_id": "connection-27" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-22", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "fxcore", - "client_id": "07-tendermint-24", - "connection_id": "connection-23" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-128", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-20", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "haqq", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-113", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "axelar", - "client_id": "07-tendermint-168", - "connection_id": "connection-150" - }, - "chain_2": { - "chain_name": "impacthub", - "client_id": "07-tendermint-54", - "connection_id": "connection-40" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-114", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "injective", - "client_id": "07-tendermint-113", - "connection_id": "connection-93" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-84", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "jackal", - "client_id": "07-tendermint-69", - "connection_id": "connection-57" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-137", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-150", - "connection_id": "connection-97" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-71", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-11", - "connection_id": "connection-6" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kyve", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-75", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "axelar", - "client_id": "07-tendermint-180", - "connection_id": "connection-158" - }, - "chain_2": { - "chain_name": "migaloo", - "client_id": "07-tendermint-101", - "connection_id": "connection-80" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-121", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-53", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-78", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "axelar", - "client_id": "07-tendermint-150", - "connection_id": "connection-135" - }, - "chain_2": { - "chain_name": "odin", - "client_id": "07-tendermint-66", - "connection_id": "connection-151" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-102", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1862", - "connection_id": "connection-1453" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-208", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-44", - "connection_id": "connection-26" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-20", - "port_id": "transfer" - }, - "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_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" - } - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-103", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "axelar", - "client_id": "07-tendermint-109", - "connection_id": "connection-96" - }, - "chain_2": { - "chain_name": "sommelier", - "client_id": "07-tendermint-13", - "connection_id": "connection-10" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-72", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-75", - "connection_id": "connection-60" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-64", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-69", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-7", - "connection_id": "connection-10" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-63", - "connection_id": "connection-44" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-33", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "comdex", - "client_id": "07-tendermint-81", - "connection_id": "connection-48" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-96", - "port_id": "oracle" - }, - "chain_2": { - "channel_id": "channel-43", - "port_id": "bandoracleV1" - }, - "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" - }, - "chain_2": { - "chain_name": "coreum", - "client_id": "07-tendermint-33", - "connection_id": "connection-22" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-159", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-20", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1743", - "connection_id": "connection-1345" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-83", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-148", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2154", - "connection_id": "connection-1672" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-340", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "bitsong", - "client_id": "07-tendermint-1237", - "connection_id": "connection-1132" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-42", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-232", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-110", - "connection_id": "connection-70" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-50", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1499", - "connection_id": "connection-1167" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-51", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-481", - "connection_id": "connection-395" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-229", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-33", - "connection_id": "connection-26" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1551", - "connection_id": "connection-1216" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-73", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2754", - "connection_id": "connection-2273" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-763", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1597", - "connection_id": "connection-1255" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-95", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "carbon", - "client_id": "07-tendermint-40", - "connection_id": "connection-23" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "composable", - "client_id": "07-tendermint-50", - "connection_id": "connection-19" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2481", - "connection_id": "connection-2017" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-550", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-765", - "connection_id": "connection-554" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-342", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-73", - "connection_id": "connection-29" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "irisnet", - "client_id": "07-tendermint-151", - "connection_id": "connection-114" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-28", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-68", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-60", - "connection_id": "connection-40" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-46", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1808", - "connection_id": "connection-1412" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-188", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-224", - "connection_id": "connection-158" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-123", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-40", - "connection_id": "connection-27" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-47", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-66", - "connection_id": "connection-54" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "demex" - } - }, - { - "chain_1": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-41", - "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" - }, - "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" - }, - "chain_2": { - "chain_name": "composable", - "client_id": "07-tendermint-138", - "connection_id": "connection-55" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-38", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "celestia", - "client_id": "07-tendermint-28", - "connection_id": "connection-6" - }, - "chain_2": { - "chain_name": "injective", - "client_id": "07-tendermint-226", - "connection_id": "connection-210" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-152", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "celestia", - "client_id": "07-tendermint-49", - "connection_id": "connection-12" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-158", - "connection_id": "connection-198" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-140", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "celestia", - "client_id": "07-tendermint-29", - "connection_id": "connection-7" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-48", - "connection_id": "connection-36" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-35", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "celestia", - "client_id": "07-tendermint-10", - "connection_id": "connection-2" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3012", - "connection_id": "connection-2503" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6994", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "celestia", - "client_id": "07-tendermint-52", - "connection_id": "connection-15" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-174", - "connection_id": "connection-131" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-91", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "celestia", - "client_id": "07-tendermint-0", - "connection_id": "connection-4" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-137", - "connection_id": "connection-125" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-162", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "celestia", - "client_id": "07-tendermint-53", - "connection_id": "connection-16" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-391", - "connection_id": "connection-381" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-300", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1875", - "connection_id": "connection-1460" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-212", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-64", - "connection_id": "connection-74" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-43", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1615", - "connection_id": "connection-1268" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-108", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-392", - "connection_id": "connection-382" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-34", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-301", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-79", - "connection_id": "connection-46" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-28", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "migaloo", - "client_id": "07-tendermint-21", - "connection_id": "connection-21" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-39", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-76", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-51", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-77", - "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" - }, - "chain_2": { - "channel_id": "channel-52", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "okexchain", - "client_id": "07-tendermint-5", - "connection_id": "connection-6" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-24", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "chihuahua", - "client_id": "07-tendermint-45", - "connection_id": "connection-25" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1666", - "connection_id": "connection-1278" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-113", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - }, - { - "chain_1": { - "channel_id": "channel-73", - "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" - }, - "chain_2": { - "channel_id": "channel-11348", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-27", - "connection_id": "connection-13" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stafihub", - "client_id": "07-tendermint-2", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-25", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-26", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-92", - "connection_id": "connection-55" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-15", - "connection_id": "connection-20" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-31", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "migaloo", - "client_id": "07-tendermint-25", - "connection_id": "connection-24" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-63", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1587", - "connection_id": "connection-1243" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-87", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-94", - "connection_id": "connection-75" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-57", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-71", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-125", - "connection_id": "connection-95" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-65", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-63", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-41", - "connection_id": "connection-28" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-45", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-70", - "connection_id": "connection-59" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-51", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-39", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-1150", - "connection_id": "connection-871" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-617", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "crescent", - "client_id": "07-tendermint-112", - "connection_id": "connection-98" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-64", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-111", - "connection_id": "connection-66" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-82", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "injective", - "client_id": "07-tendermint-207", - "connection_id": "connection-191" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-29", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-145", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-382", - "connection_id": "connection-376" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-280", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-147", - "connection_id": "connection-112" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-27", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-101", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-29", - "connection_id": "connection-22" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2846", - "connection_id": "connection-2358" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1279", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "picasso", - "client_id": "07-tendermint-32", - "connection_id": "connection-26" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "quicksilver", - "client_id": "07-tendermint-78", - "connection_id": "connection-53" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-94", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-166", - "connection_id": "connection-116" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-80", - "port_id": "transfer" - }, - "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_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" - } - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-184", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-126", - "connection_id": "connection-116" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-134", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "picasso", - "client_id": "10-grandpa-28", - "connection_id": "connection-23" - }, - "channels": [ - { - "chain_1": { - "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 - } - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-660", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "doravota", - "client_id": "07-tendermint-12", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "dydx", - "client_id": "07-tendermint-14", - "connection_id": "connection-20" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-24", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-117", - "connection_id": "connection-71" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-87", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-421", - "connection_id": "connection-399" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-142", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-160", - "connection_id": "connection-200" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-142", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-163", - "connection_id": "connection-126" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-122", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-71", - "connection_id": "connection-72" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2929", - "connection_id": "connection-2426" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2188", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-186", - "connection_id": "connection-138" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-25", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-101", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-47", - "connection_id": "connection-79" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-26", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-47", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "crescent", - "client_id": "07-tendermint-3", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-326", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cryptoorgchain", - "client_id": "07-tendermint-735", - "connection_id": "connection-220" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-187", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-27", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "doravota", - "client_id": "07-tendermint-14", - "connection_id": "connection-8" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-750", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "emoney", - "client_id": "07-tendermint-8", - "connection_id": "connection-3" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-202", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "empowerchain", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-621", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-620", - "connection_id": "connection-480" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-3", - "connection_id": "connection-3" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-292", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "fxcore", - "client_id": "07-tendermint-13", - "connection_id": "connection-13" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-585", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-632", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "impacthub", - "client_id": "07-tendermint-9", - "connection_id": "connection-9" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-204", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "injective", - "client_id": "07-tendermint-5", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-220", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "irisnet", - "client_id": "07-tendermint-31", - "connection_id": "connection-22" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-182", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-3", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-207", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-557", - "connection_id": "connection-460" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-1", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-277", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-475", - "connection_id": "connection-392" - }, - "chain_2": { - "chain_name": "kichain", - "client_id": "07-tendermint-6", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-223", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-769", - "connection_id": "connection-555" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-343", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-468", - "connection_id": "connection-386" - }, - "chain_2": { - "chain_name": "likecoin", - "client_id": "07-tendermint-24", - "connection_id": "connection-13" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-217", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "lumnetwork", - "client_id": "07-tendermint-21", - "connection_id": "connection-22" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-566", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-569", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-1116", - "connection_id": "connection-790" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-4", - "connection_id": "connection-12" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-536", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-306", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-141", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-391", - "connection_id": "connection-344" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-36", - "connection_id": "connection-30" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-190", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-24", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "planq", - "client_id": "07-tendermint-5", - "connection_id": "connection-3" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-446", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-926", - "connection_id": "connection-648" - }, - "chain_2": { - "chain_name": "point", - "client_id": "07-tendermint-1", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-404", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-1018", - "connection_id": "connection-709" - }, - "chain_2": { - "chain_name": "quicksilver", - "client_id": "07-tendermint-2", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-467", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-645", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-386", - "connection_id": "connection-340" - }, - "chain_2": { - "chain_name": "regen", - "client_id": "07-tendermint-27", - "connection_id": "connection-24" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-185", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-1", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-235", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-3", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-584", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sentinel", - "client_id": "07-tendermint-58", - "connection_id": "connection-33" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-186", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-192", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stafihub", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-369", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-326", - "connection_id": "connection-300" - }, - "chain_2": { - "chain_name": "starname", - "client_id": "07-tendermint-6", - "connection_id": "connection-6" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-158", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-391", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-962", - "connection_id": "connection-1710" - }, - "chain_2": { - "chain_name": "teritori", - "client_id": "07-tendermint-32", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-431", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-339", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshub", - "client_id": "07-tendermint-611", - "connection_id": "connection-473" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-9", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-288", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "uptick", - "client_id": "07-tendermint-3", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-535", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-40", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-61", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-38", - "connection_id": "connection-15" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-100", - "connection_id": "connection-102" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-62", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "injective", - "client_id": "07-tendermint-132", - "connection_id": "connection-105" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-90", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "irisnet", - "client_id": "07-tendermint-86", - "connection_id": "connection-70" - }, - "channels": [ - { - "chain_1": { - "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" - } - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-63", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-38", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-160", - "connection_id": "connection-107" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-81", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-105", - "connection_id": "connection-75" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-42", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-67", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "mars", - "client_id": "07-tendermint-14", - "connection_id": "connection-9" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-35", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-38", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "crescent", - "client_id": "07-tendermint-44", - "connection_id": "connection-46" - }, - "chain_2": { - "chain_name": "okexchain", - "client_id": "07-tendermint-116", - "connection_id": "connection-78" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-31", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-46", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2083", - "connection_id": "connection-1624" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-297", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-88", - "connection_id": "connection-72" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-30", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-68", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-53", - "connection_id": "connection-31" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "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" - } - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-51", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-44", - "connection_id": "connection-30" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-29", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-51", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra", - "client_id": "07-tendermint-101", - "connection_id": "connection-70" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-68", - "connection_id": "connection-57" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-27", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-170", - "connection_id": "connection-110" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-134", - "connection_id": "connection-169" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-125", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "evmos", - "client_id": "07-tendermint-85", - "connection_id": "connection-43" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-57", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-31", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "irisnet", - "client_id": "07-tendermint-32", - "connection_id": "connection-23" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-4", - "connection_id": "connection-5" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-24", - "connection_id": "connection-17" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "regen", - "client_id": "07-tendermint-28", - "connection_id": "connection-26" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-25", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sentinel", - "client_id": "07-tendermint-43", - "connection_id": "connection-28" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-20", - "connection_id": "connection-10" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-33", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "starname", - "client_id": "07-tendermint-16", - "connection_id": "connection-11" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-22", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-298", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1798", - "connection_id": "connection-1403" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-181", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-395", - "connection_id": "connection-385" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-315", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1726", - "connection_id": "connection-1315" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-135", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-100", - "connection_id": "connection-62" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1714", - "connection_id": "connection-1304" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-128", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "dydx", - "client_id": "07-tendermint-15", - "connection_id": "connection-21" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "injective", - "client_id": "07-tendermint-245", - "connection_id": "connection-239" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-182", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "nolus", - "client_id": "07-tendermint-14", - "connection_id": "connection-12" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4092", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2959", - "connection_id": "connection-2454" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2694", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-154", - "connection_id": "connection-195" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-137", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-158", - "connection_id": "connection-122" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-118", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "dydx", - "client_id": "07-tendermint-11", - "connection_id": "connection-17" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-72", - "connection_id": "connection-51" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-48", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-59", - "connection_id": "connection-57" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-33", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3009", - "connection_id": "connection-2500" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6787", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-159", - "connection_id": "connection-197" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-131", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-133", - "connection_id": "connection-123" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-160", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-299", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2407", - "connection_id": "connection-1895" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-526", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2268", - "connection_id": "connection-1760" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-403", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "irisnet", - "client_id": "07-tendermint-46", - "connection_id": "connection-34" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-24", - "connection_id": "connection-16" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1447", - "connection_id": "connection-1132" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2848", - "connection_id": "connection-2360" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1411", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "gateway", - "client_id": "07-tendermint-119", - "connection_id": "connection-77" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-94", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-108", - "connection_id": "connection-106" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-65", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-83", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-120", - "connection_id": "connection-157" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-83", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-117", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-25", - "connection_id": "connection-19" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-12", - "connection_id": "connection-19" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-64", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1840", - "connection_id": "connection-1440" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-204", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-42", - "connection_id": "connection-24" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-173", - "connection_id": "connection-104" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-46", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-8", - "connection_id": "connection-7" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-25", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "tgrade", - "client_id": "07-tendermint-8", - "connection_id": "connection-11" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-34", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1913", - "connection_id": "connection-1490" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-229", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "juno", - "client_id": "07-tendermint-501", - "connection_id": "connection-505" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-417", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-160", - "connection_id": "connection-123" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-119", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3029", - "connection_id": "connection-2515" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-8690", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-385", - "connection_id": "connection-361" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-271", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2961", - "connection_id": "connection-2456" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2716", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "pundix", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "galaxy", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1928", - "connection_id": "connection-1500" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-236", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-153", - "connection_id": "connection-117" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-113", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2927", - "connection_id": "connection-2424" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2186", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1983", - "connection_id": "connection-1539" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-253", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2787", - "connection_id": "connection-2287" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-781", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "haqq", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-100", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-225", - "connection_id": "connection-189" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-69", - "connection_id": "connection-45" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-107", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-50", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "nyx", - "client_id": "07-tendermint-1", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-13", - "connection_id": "connection-13" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1737", - "connection_id": "connection-1340" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-144", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-51", - "connection_id": "connection-49" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-24", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-38", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "planq", - "client_id": "07-tendermint-1", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-102", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "gravitybridge", - "client_id": "07-tendermint-140", - "connection_id": "connection-139" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-40", - "connection_id": "connection-23" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-79", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "unification", - "client_id": "07-tendermint-4", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-98", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "haqq", - "client_id": "07-tendermint-5", - "connection_id": "connection-7" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-149", - "connection_id": "connection-193" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-135", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-58", - "connection_id": "connection-56" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-32", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2871", - "connection_id": "connection-2388" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1575", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-20", - "connection_id": "connection-29" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-26", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1451", - "connection_id": "connection-1137" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-38", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-39", - "connection_id": "connection-18" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2366", - "connection_id": "connection-1866" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-517", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kava", - "client_id": "07-tendermint-130", - "connection_id": "connection-166" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-143", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-122", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "injective", - "client_id": "07-tendermint-144", - "connection_id": "connection-116" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-77", - "connection_id": "connection-53" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-98", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-54", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "injective", - "client_id": "07-tendermint-154", - "connection_id": "connection-123" - }, - "chain_2": { - "chain_name": "migaloo", - "client_id": "07-tendermint-5", - "connection_id": "connection-8" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-102", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "injective", - "client_id": "07-tendermint-223", - "connection_id": "connection-220" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-78", - "connection_id": "connection-58" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-177", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-60", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "injective", - "client_id": "07-tendermint-210", - "connection_id": "connection-193" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-15", - "connection_id": "connection-24" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-146", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-138", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-140", - "port_id": "wasm.inj1w9g3sk7lk8k0pdtctygupt6f3te7x4thvzz57a" - }, - "chain_2": { - "channel_id": "channel-20", - "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1703", - "connection_id": "connection-1298" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-122", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-57", - "connection_id": "connection-53" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-82", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-41", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-22", - "connection_id": "connection-8" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-88", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-23", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sommelier", - "client_id": "07-tendermint-4", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-93", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "injective", - "client_id": "07-tendermint-131", - "connection_id": "connection-103" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-2", - "connection_id": "connection-3" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-89", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "injective", - "client_id": "07-tendermint-216", - "connection_id": "connection-202" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-369", - "connection_id": "connection-311" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-151", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-255", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "injective", - "client_id": "07-tendermint-197", - "connection_id": "connection-182" - }, - "chain_2": { - "chain_name": "xpla", - "client_id": "07-tendermint-6", - "connection_id": "connection-12" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-137", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-5", - "connection_id": "connection-6" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-31", - "connection_id": "connection-25" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "regen", - "client_id": "07-tendermint-25", - "connection_id": "connection-22" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sentinel", - "client_id": "07-tendermint-54", - "connection_id": "connection-30" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-19", - "connection_id": "connection-9" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stafihub", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-33", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "starname", - "client_id": "07-tendermint-41", - "connection_id": "connection-27" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "uptick", - "client_id": "07-tendermint-8", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-39", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-39", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-94", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2273", - "connection_id": "connection-1762" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-412", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-124", - "connection_id": "connection-94" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-62", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-2", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-87", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "juno", - "client_id": "07-tendermint-300", - "connection_id": "connection-270" - }, - "chain_2": { - "chain_name": "mars", - "client_id": "07-tendermint-11", - "connection_id": "connection-7" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-209", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "migaloo", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-210", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "juno", - "client_id": "07-tendermint-334", - "connection_id": "connection-322" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-3", - "connection_id": "connection-8" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-224", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "nois", - "client_id": "07-tendermint-1", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-225", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-243", - "port_id": "wasm.juno1qr84ktm57q5t02u04ddk5r8s79axdzglad6tfdd9g2xgt4hkh6jsgeq9x2" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" - }, - "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" - }, - "chain_2": { - "chain_name": "okexchain", - "client_id": "07-tendermint-122", - "connection_id": "connection-92" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-212", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-52", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1457", - "connection_id": "connection-1142" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-42", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - }, - { - "chain_1": { - "channel_id": "channel-47", - "port_id": "wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn" - }, - "chain_2": { - "channel_id": "channel-169", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-49", - "connection_id": "connection-48" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-33", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "quicksilver", - "client_id": "07-tendermint-17", - "connection_id": "connection-10" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-215", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-22", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-48", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "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_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" - } - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-13", - "connection_id": "connection-11" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-20", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "juno", - "client_id": "07-tendermint-263", - "connection_id": "connection-205" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-31", - "connection_id": "connection-19" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-139", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-24", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-202", - "port_id": "icahost" - }, - "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" - } - }, - { - "chain_1": { - "channel_id": "channel-143", - "port_id": "icahost" - }, - "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" - } - }, - { - "chain_1": { - "channel_id": "channel-142", - "port_id": "icahost" - }, - "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" - } - }, - { - "chain_1": { - "channel_id": "channel-140", - "port_id": "icahost" - }, - "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" - } - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-27", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-20", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-3", - "connection_id": "connection-6" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-86", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "kava", - "client_id": "07-tendermint-119", - "connection_id": "connection-156" - }, - "chain_2": { - "chain_name": "kujira", - "client_id": "07-tendermint-140", - "connection_id": "connection-106" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-116", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-95", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "migaloo", - "client_id": "07-tendermint-90", - "connection_id": "connection-73" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-120", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-48", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-54", - "connection_id": "connection-37" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-136", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1735", - "connection_id": "connection-1328" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-143", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-156", - "connection_id": "connection-195" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-134", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-129", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-38", - "connection_id": "connection-33" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-132", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-386", - "connection_id": "connection-362" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-138", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-272", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-229", - "connection_id": "connection-191" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-119", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-98", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1564", - "connection_id": "connection-1225" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-77", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - }, - { - "chain_1": { - "channel_id": "channel-18", - "port_id": "wasm.ki1hzz0s0ucrhdp6tue2lxk3c03nj6f60qy463we7lgx0wudd72ctmsd9kgha" - }, - "chain_2": { - "channel_id": "channel-261", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1778", - "connection_id": "connection-1384" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-171", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "mars", - "client_id": "07-tendermint-3", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-55", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "kujira", - "client_id": "07-tendermint-82", - "connection_id": "connection-59" - }, - "chain_2": { - "chain_name": "migaloo", - "client_id": "07-tendermint-16", - "connection_id": "connection-19" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-58", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-2", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-75", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-2", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-62", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "kujira", - "client_id": "07-tendermint-156", - "connection_id": "connection-120" - }, - "chain_2": { - "chain_name": "nomic", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-116", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "kujira", - "client_id": "07-tendermint-108", - "connection_id": "connection-78" - }, - "chain_2": { - "chain_name": "omniflixhub", - "client_id": "07-tendermint-43", - "connection_id": "connection-36" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-70", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-26", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2017", - "connection_id": "connection-1559" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-259", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "realio", - "client_id": "07-tendermint-6", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-115", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-68", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-100", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-48", - "connection_id": "connection-29" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-22", - "port_id": "transfer" - }, - "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_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" - } - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-69", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stafihub", - "client_id": "07-tendermint-4", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-63", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-178", - "connection_id": "connection-111" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-5", - "connection_id": "connection-5" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-32", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "teritori", - "client_id": "07-tendermint-61", - "connection_id": "connection-38" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-89", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-30", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-11", - "connection_id": "connection-13" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-28", - "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2757", - "connection_id": "connection-2274" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-767", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2217", - "connection_id": "connection-1733" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-378", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1507", - "connection_id": "connection-1173" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-53", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2079", - "connection_id": "connection-1620" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-286", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1668", - "connection_id": "connection-1280" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-115", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "neutron", - "client_id": "07-tendermint-21", - "connection_id": "connection-21" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2602", - "connection_id": "connection-2114" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-557", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-104", - "connection_id": "connection-91" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-78", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2372", - "connection_id": "connection-1869" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-519", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sentinel", - "client_id": "07-tendermint-110", - "connection_id": "connection-87" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-60", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1931", - "connection_id": "connection-1502" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-238", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1453", - "connection_id": "connection-1139" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-39", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-19", - "connection_id": "connection-28" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-60", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2669", - "connection_id": "connection-2171" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-642", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-116", - "connection_id": "connection-87" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-57", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-22", - "connection_id": "connection-13" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-57", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-352", - "connection_id": "connection-287" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-69", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-269", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-105", - "connection_id": "connection-93" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-86", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-87", - "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" - }, - "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" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-234", - "connection_id": "connection-195" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-56", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-104", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noble", - "client_id": "07-tendermint-25", - "connection_id": "connection-34" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-30", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "nolus", - "client_id": "07-tendermint-13", - "connection_id": "connection-11" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-44", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3839", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "nomic", - "client_id": "07-tendermint-3", - "connection_id": "connection-3" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-42", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "neutron", - "client_id": "07-tendermint-19", - "connection_id": "connection-18" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2823", - "connection_id": "connection-2338" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-874", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-161", - "connection_id": "connection-199" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-136", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-19", - "connection_id": "connection-139" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-57", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-104", - "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-27", - "connection_id": "connection-16" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-283", - "connection_id": "connection-211" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-18", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-191", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-125", - "connection_id": "connection-113" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-123", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-274", - "connection_id": "connection-192" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-25", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-229", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-167", - "port_id": "wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07" - }, - "chain_2": { - "channel_id": "channel-168", - "port_id": "wasm.terra1fkuhmq52pj08qqffp0elrvmzel8zz857x0pjjuuaar54mgcpe35s9km660" - }, - "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" - }, - "chain_2": { - "chain_name": "omniflixhub", - "client_id": "07-tendermint-51", - "connection_id": "connection-49" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-44", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-38", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2704", - "connection_id": "connection-2241" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-750", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-160", - "connection_id": "connection-198" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-132", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-170", - "connection_id": "connection-127" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-88", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-45", - "connection_id": "connection-77" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-39", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-45", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-287", - "connection_id": "connection-214" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-204", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "teritori", - "client_id": "07-tendermint-97", - "connection_id": "connection-97" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-54", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-62", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-367", - "connection_id": "connection-302" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-30", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-253", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3017", - "connection_id": "connection-2507" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-8277", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - }, - { - "chain_1": { - "channel_id": "channel-11319", - "port_id": "wasm.osmo1tvzr8ur0ynjhqftxpkl4qwel8ly7erhy6cu6ks426xmzf92vk6eqfp9wcl" - }, - "chain_2": { - "channel_id": "channel-41", - "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-106", - "connection_id": "connection-144" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-43", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-58", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-44", - "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" - }, - "chain_2": { - "channel_id": "channel-59", - "port_id": "wasm.sei1vxlzhn6qvf95syha2tgr0ct23sk5359s2vqzylgthuyy7kd7ql5qcxa4r0" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-237", - "connection_id": "connection-171" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-137", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - }, - { - "chain_1": { - "channel_id": "channel-238", - "port_id": "wasm.stars1mw5y55f53mnara7g3pn2pylxl8dpauscyn83c68442hz9nwktzrq8tjzyf" - }, - "chain_2": { - "channel_id": "channel-38", - "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2791", - "connection_id": "connection-2289" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-783", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3010", - "connection_id": "connection-2501" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6897", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3065", - "connection_id": "connection-2555" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-15464", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2007", - "connection_id": "connection-1551" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-258", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "vidulum", - "client_id": "07-tendermint-5", - "connection_id": "connection-13" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1829", - "connection_id": "connection-1431" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-199", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2405", - "connection_id": "connection-1892" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-525", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1882", - "connection_id": "connection-1464" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-216", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "panacea", - "client_id": "07-tendermint-6", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-82", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "passage", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2494", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3", - "connection_id": "connection-4" - }, - "chain_2": { - "chain_name": "persistence", - "client_id": "07-tendermint-6", - "connection_id": "connection-5" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "planq", - "client_id": "07-tendermint-3", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-492", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "provenance", - "client_id": "07-tendermint-31", - "connection_id": "connection-9" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-222", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "pundix", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-12618", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "quasar", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-688", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2400", - "connection_id": "connection-1889" - }, - "chain_2": { - "chain_name": "quicksilver", - "client_id": "07-tendermint-6", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-522", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "qwoyn", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-880", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2849", - "connection_id": "connection-2361" - }, - "chain_2": { - "chain_name": "realio", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1424", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2173", - "connection_id": "connection-1692" - }, - "chain_2": { - "chain_name": "rebus", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-355", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-6", - "connection_id": "connection-7" - }, - "chain_2": { - "chain_name": "regen", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "rizon", - "client_id": "07-tendermint-3", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-221", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-2", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-88", - "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" - } - }, - { - "chain_1": { - "channel_id": "channel-476", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-44", - "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-2", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-782", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2", - "connection_id": "connection-3" - }, - "chain_2": { - "chain_name": "sentinel", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2972", - "connection_id": "connection-2468" - }, - "chain_2": { - "chain_name": "sge", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5485", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2680", - "connection_id": "connection-2182" - }, - "chain_2": { - "chain_name": "shareledger", - "client_id": "07-tendermint-1", - "connection_id": "connection-5" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-647", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1741", - "connection_id": "connection-1342" - }, - "chain_2": { - "chain_name": "shentu", - "client_id": "07-tendermint-9", - "connection_id": "connection-8" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-146", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-8", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-41", - "connection_id": "connection-20" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-47", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sommelier", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-165", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-3035", - "connection_id": "connection-2524" - }, - "chain_2": { - "chain_name": "source", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-8945", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2969", - "connection_id": "connection-2465" - }, - "chain_2": { - "chain_name": "stafihub", - "client_id": "07-tendermint-7", - "connection_id": "connection-6" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-5413", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-75", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-71", - "connection_id": "connection-42" - }, - "chain_2": { - "chain_name": "starname", - "client_id": "07-tendermint-9", - "connection_id": "connection-9" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-1", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-326", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2192", - "connection_id": "connection-1710" - }, - "chain_2": { - "chain_name": "teritori", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-362", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1215", - "connection_id": "connection-1549" - }, - "chain_2": { - "chain_name": "terra", - "client_id": "07-tendermint-12", - "connection_id": "connection-11" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-72", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-2", - "connection_id": "connection-3" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-251", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - }, - { - "chain_1": { - "channel_id": "channel-559", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-85", - "port_id": "wasm.terra1d90p5lacfxnqgjxjupu234lxnxyeu8fdeef4d0e0nqy3p30r7gss4myn9x" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - }, - { - "chain_1": { - "channel_id": "channel-341", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-26", - "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" - }, - "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" - }, - "chain_2": { - "chain_name": "tgrade", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-263", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1805", - "connection_id": "connection-1410" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-6", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-184", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2229", - "connection_id": "connection-1746" - }, - "chain_2": { - "chain_name": "unification", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-382", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-1705", - "connection_id": "connection-1300" - }, - "chain_2": { - "chain_name": "vidulum", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-124", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "osmosis", - "client_id": "07-tendermint-2875", - "connection_id": "connection-2389" - }, - "chain_2": { - "chain_name": "xpla", - "client_id": "07-tendermint-11", - "connection_id": "connection-19" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1634", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "quicksilver", - "client_id": "07-tendermint-15", - "connection_id": "connection-8" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-73", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "regen", - "client_id": "07-tendermint-30", - "connection_id": "connection-28" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-21", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "secretnetwork", - "client_id": "07-tendermint-126", - "connection_id": "connection-98" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-82", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-64", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sentinel", - "client_id": "07-tendermint-61", - "connection_id": "connection-36" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-22", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-18", - "connection_id": "connection-8" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-26", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "starname", - "client_id": "07-tendermint-44", - "connection_id": "connection-30" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-27", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-54", - "connection_id": "connection-33" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-67", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-53", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-179", - "connection_id": "connection-119" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-81", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-51", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-21", - "connection_id": "connection-12" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-59", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "regen", - "client_id": "07-tendermint-113", - "connection_id": "connection-102" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-61", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-52", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-65", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-124", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-49", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-53", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1" - } - ] - }, - { - "$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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-31", - "connection_id": "connection-13" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-28", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "starname", - "client_id": "07-tendermint-45", - "connection_id": "connection-31" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-29", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-14", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sentinel", - "client_id": "07-tendermint-96", - "connection_id": "connection-75" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-50", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-171", - "connection_id": "connection-98" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-65", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargaze", - "client_id": "07-tendermint-177", - "connection_id": "connection-110" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-48", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-37", - "connection_id": "connection-25" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-37", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-40", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "teritori", - "client_id": "07-tendermint-99", - "connection_id": "connection-122" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-111", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-63", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra", - "client_id": "07-tendermint-28", - "connection_id": "connection-29" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-4", - "connection_id": "connection-7" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-16", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-130", - "connection_id": "connection-119" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-149", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sifchain", - "client_id": "07-tendermint-9", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-36", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "starname", - "client_id": "07-tendermint-46", - "connection_id": "connection-32" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-40", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-15", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-131", - "connection_id": "connection-122" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-71", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-150", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-317", - "connection_id": "connection-233" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-204", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stride", - "client_id": "07-tendermint-30", - "connection_id": "connection-18" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-106", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-19", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-405", - "connection_id": "connection-408" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-266", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-324", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-87", - "connection_id": "connection-72" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-52", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-46", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "umee", - "client_id": "07-tendermint-64", - "connection_id": "connection-45" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-29", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-34", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "terra2", - "client_id": "07-tendermint-394", - "connection_id": "connection-384" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-85", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-314", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "archwaytestnet", - "client_id": "07-tendermint-45", - "connection_id": "connection-39" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-34", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1271", - "connection_id": "connection-1171" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-6", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4171", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "axelartestnet", - "client_id": "07-tendermint-603", - "connection_id": "connection-418" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-50", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-305", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1195", - "connection_id": "connection-1101" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-58", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3938", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "dydxtestnet", - "client_id": "07-tendermint-6", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-297", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-339", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4170", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet4", - "client_id": "07-tendermint-3319", - "connection_id": "connection-2807" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-135", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1946", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistencetestnet2", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-261", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "axelartestnet", - "client_id": "07-tendermint-767", - "connection_id": "connection-581" - }, - "chain_2": { - "chain_name": "sagatestnet", - "client_id": "07-tendermint-11", - "connection_id": "connection-10" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-370", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "xiontestnet", - "client_id": "07-tendermint-10", - "connection_id": "connection-5" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-283", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-5", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "cosmoshubtestnet", - "client_id": "07-tendermint-2382", - "connection_id": "connection-2727" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3152", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "neutrontestnet", - "client_id": "07-tendermint-113", - "connection_id": "connection-101" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-160", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "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" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-25", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4370", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-104", - "connection_id": "connection-122" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-111", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-273", - "connection_id": "connection-237" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-11", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-329", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshubtestnet", - "client_id": "07-tendermint-2073", - "connection_id": "connection-2418" - }, - "chain_2": { - "chain_name": "empowertestnet", - "client_id": "07-tendermint-3", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2765", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "cosmoshubtestnet", - "client_id": "07-tendermint-2528", - "connection_id": "connection-2886" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1262", - "connection_id": "connection-1157" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-3306", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4156", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistencetestnet2", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2777", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] - }, - { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "doravotatestnet", - "client_id": "07-tendermint-2", - "connection_id": "connection-3" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-2", - "connection_id": "connection-611" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1260", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-146", - "connection_id": "connection-157" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-155", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargazetestnet", - "client_id": "07-tendermint-450", - "connection_id": "connection-469" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-459", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-930", - "connection_id": "connection-840" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1543", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1010", - "connection_id": "connection-911" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1637", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noistestnet", - "client_id": "07-tendermint-26", - "connection_id": "connection-13" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-74", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-33", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-77", - "port_id": "wasm.inj14nendtsz0c40n7xtzwkjmdc8dkuz835jdydxhn" - }, - "chain_2": { - "channel_id": "channel-36", - "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1273", - "connection_id": "connection-1173" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-129", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4174", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noistestnet", - "client_id": "07-tendermint-16", - "connection_id": "connection-5" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-877", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-69", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-198", - "port_id": "wasm.juno1pjpntyvkxeuxd709jlupuea3xzxlzsfq574kqefv77fr2kcg4mcqvwqedq" - }, - "chain_2": { - "channel_id": "channel-17", - "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1268", - "connection_id": "connection-1166" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-811", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4167", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet4", - "client_id": "07-tendermint-4413", - "connection_id": "connection-3814" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-140", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3316", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-11", - "connection_id": "connection-11" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-10", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1431", - "connection_id": "connection-1336" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4357", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1269", - "connection_id": "connection-1167" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-27", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4168", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet4", - "client_id": "07-tendermint-3419", - "connection_id": "connection-2887" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-2", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-2083", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "noistestnet", - "client_id": "07-tendermint-30", - "connection_id": "connection-17" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-133", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-40", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-135", - "port_id": "wasm.neutron1tw9sg9e4l09l5rjglf4qfvcft470ljk5grdq3luagysyk83nzfusw2sxgq" - }, - "chain_2": { - "channel_id": "channel-42", - "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" - }, - "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" - }, - "chain_2": { - "chain_name": "nolustestnet", - "client_id": "07-tendermint-2", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-208", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1990", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1272", - "connection_id": "connection-1172" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-196", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4172", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1374", - "connection_id": "connection-1275" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-22", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-4280", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet4", - "client_id": "07-tendermint-4504", - "connection_id": "connection-3905" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3651", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "xiontestnet", - "client_id": "07-tendermint-17", - "connection_id": "connection-9" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-17", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-9", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargazetestnet", - "client_id": "07-tendermint-483", - "connection_id": "connection-500" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-48", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-485", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - }, - { - "chain_1": { - "channel_id": "channel-49", - "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" - }, - "chain_2": { - "channel_id": "channel-486", - "port_id": "wasm.stars1h99p7u2tvz79jppjwdddmkplvcpnsh0pmatl7dqkmdhnkgx59y2q6s0x9s" - }, - "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" - }, - "chain_2": { - "chain_name": "osmosistestnet", - "client_id": "07-tendermint-102", - "connection_id": "connection-120" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-110", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "persistencetestnet2", - "client_id": "07-tendermint-3", - "connection_id": "connection-2" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1037", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-7", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "quicksilvertestnet", - "client_id": "07-tendermint-6", - "connection_id": "connection-4" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-13", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-20", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sagatestnet", - "client_id": "07-tendermint-26", - "connection_id": "connection-21" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4946", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-20", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "sgetestnet", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-1568", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-1", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "stargazetestnet", - "client_id": "07-tendermint-621", - "connection_id": "connection-633" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4175", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-638", - "port_id": "transfer" - }, - "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" - }, - "chain_2": { - "chain_name": "xiontestnet", - "client_id": "07-tendermint-22", - "connection_id": "connection-12" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-4410", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-12", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live" - } - } - ] - } -]; -export default ibc; - \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/8ball/assets.ts b/packages/chain-registry/src/mainnet/8ball/assets.ts new file mode 100644 index 000000000..6f32546b7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/8ball/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "8ball", + "assets": [ + { + "description": "The native staking token of 8ball.", + "denom_units": [ + { + "denom": "uebl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/8ball/chain.ts b/packages/chain-registry/src/mainnet/8ball/chain.ts new file mode 100644 index 000000000..05ff0ec45 --- /dev/null +++ b/packages/chain-registry/src/mainnet/8ball/chain.ts @@ -0,0 +1,129 @@ +import { Chain } from '@chain-registry/types'; +const info: 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": { + "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.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://8ball-rpc.genznodes.dev/", + "provider": "genznodes" + } + ], + "rest": [ + { + "address": "https://rest.8ball.info", + "provider": "8ball" + }, + { + "address": "https://api.8ball.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://8ball-api.genznodes.dev/", + "provider": "genznodes" + }, + { + "address": "https://api-8ball.nodine.id/", + "provider": "Nodine.ID" + } + ], + "grpc": [ + { + "address": "grpc.8ball.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "8ball-grpc.genznodes.dev:31090", + "provider": "genznodes" + }, + { + "address": "https://grpc.8ball.nodexcapital.com:443", + "provider": "NodeX Validator" + } + ] + }, + "explorers": [ + { + "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": "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.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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/8ball/ibc.ts b/packages/chain-registry/src/mainnet/8ball/ibc.ts new file mode 100644 index 000000000..f0d0b8b7a --- /dev/null +++ b/packages/chain-registry/src/mainnet/8ball/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-641", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/8ball/ibc_chain1.ts b/packages/chain-registry/src/mainnet/8ball/ibc_chain1.ts new file mode 100644 index 000000000..f0d0b8b7a --- /dev/null +++ b/packages/chain-registry/src/mainnet/8ball/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "8ball", + "client_id": "07-tendermint-2", + "connection_id": "connection-18" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2668", + "connection_id": "connection-2163" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-641", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/8ball/index.ts b/packages/chain-registry/src/mainnet/8ball/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/8ball/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/acrechain/assets.ts b/packages/chain-registry/src/mainnet/acrechain/assets.ts new file mode 100644 index 000000000..af2d25c23 --- /dev/null +++ b/packages/chain-registry/src/mainnet/acrechain/assets.ts @@ -0,0 +1,91 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "acrechain", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Acrechain", + "denom_units": [ + { + "denom": "aacre", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Overcollateralized stable coin for Arable derivatives v1", + "denom_units": [ + { + "denom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Ciento Exchange Token", + "denom_units": [ + { + "denom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/acrechain/chain.ts b/packages/chain-registry/src/mainnet/acrechain/chain.ts new file mode 100644 index 000000000..cf2da9293 --- /dev/null +++ b/packages/chain-registry/src/mainnet/acrechain/chain.ts @@ -0,0 +1,181 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "aacre" + } + ] + }, + "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": [ + { + "address": "https://rpc.acre.nodestake.top", + "provider": "nodestake" + }, + { + "address": "https://rpc-acre.synergynodes.com", + "provider": "Synergy Nodes" + }, + { + "address": "https://acrechain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc.acre.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://mainnet-acre-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://acred-rpc.staketab.org:443", + "provider": "Staketab" + } + ], + "rest": [ + { + "address": "https://lcd-acre.synergynodes.com", + "provider": "Synergy Nodes" + }, + { + "address": "https://acrechain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rest.acre.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://mainnet-acre-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://acred-rest.staketab.org", + "provider": "Staketab" + } + ], + "grpc": [ + { + "address": "grpc.acre.nodestake.top:443", + "provider": "Nodestake" + }, + { + "address": "acrechain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "acre-grpc.genznodes.dev:27090", + "provider": "genznodes" + }, + { + "address": "services.staketab.com:9008", + "provider": "Staketab" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://jsonrpc-acre.d-stake.xyz", + "provider": "D-stake" + }, + { + "address": "https://rpc2-acre.synergynodes.com", + "provider": "Synergy Nodes" + }, + { + "address": "https://jsonrpc.acre.nodestake.top", + "provider": "Nodestake" + }, + { + "address": "https://acre-rpc-evm.genznodes.dev/", + "provider": "genznodes" + }, + { + "address": "https://evm-acre.sr20de.xyz/", + "provider": "Sr20de" + }, + { + "address": "https://evm.acrescan.com/", + "provider": "Anonstake" + }, + { + "address": "https://json-rpc.acre.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://mainnet-acre-evm.konsortech.xyz", + "provider": "KonsorTech" + } + ] + }, + "explorers": [ + { + "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://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://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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/acrechain/ibc.ts b/packages/chain-registry/src/mainnet/acrechain/ibc.ts new file mode 100644 index 000000000..adc4b55aa --- /dev/null +++ b/packages/chain-registry/src/mainnet/acrechain/ibc.ts @@ -0,0 +1,346 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1002", + "connection_id": "connection-701" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-457", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-97", + "connection_id": "connection-55" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-201", + "connection_id": "connection-175" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-106", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-61", + "connection_id": "connection-41" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "oraichain", + "client_id": "07-tendermint-74", + "connection_id": "connection-42" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2316", + "connection_id": "connection-1814" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-490", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-222", + "connection_id": "connection-156" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-121", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-70", + "connection_id": "connection-48" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-172", + "connection_id": "connection-99" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-101", + "connection_id": "connection-89" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-77", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/acrechain/ibc_chain1.ts b/packages/chain-registry/src/mainnet/acrechain/ibc_chain1.ts new file mode 100644 index 000000000..adc4b55aa --- /dev/null +++ b/packages/chain-registry/src/mainnet/acrechain/ibc_chain1.ts @@ -0,0 +1,346 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1002", + "connection_id": "connection-701" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-457", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-97", + "connection_id": "connection-55" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-201", + "connection_id": "connection-175" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-106", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-61", + "connection_id": "connection-41" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "oraichain", + "client_id": "07-tendermint-74", + "connection_id": "connection-42" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2316", + "connection_id": "connection-1814" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-490", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-222", + "connection_id": "connection-156" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-121", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-70", + "connection_id": "connection-48" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-172", + "connection_id": "connection-99" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-101", + "connection_id": "connection-89" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-77", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/acrechain/index.ts b/packages/chain-registry/src/mainnet/acrechain/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/acrechain/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/agoric/assets.ts b/packages/chain-registry/src/mainnet/agoric/assets.ts new file mode 100644 index 000000000..94a767b76 --- /dev/null +++ b/packages/chain-registry/src/mainnet/agoric/assets.ts @@ -0,0 +1,64 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "ubld", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "denom_units": [ + { + "denom": "uist", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/agoric/chain.ts b/packages/chain-registry/src/mainnet/agoric/chain.ts new file mode 100644 index 000000000..67d8139df --- /dev/null +++ b/packages/chain-registry/src/mainnet/agoric/chain.ts @@ -0,0 +1,228 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": "uist", + "low_gas_price": 0.0034, + "average_gas_price": 0.007, + "high_gas_price": 0.02 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ubld" + } + ] + }, + "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" + }, + "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://agoric-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc.agoric.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://agoric.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://agoric-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc-agoric-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://agoric-rpc.0base.dev", + "provider": "0base.vc" + }, + { + "address": "https://agoric-rpc.stakeangle.com", + "provider": "StakeAngle" + }, + { + "address": "https://agoric-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc.agoric.stakewith.us", + "provider": "StakeWithUs" + }, + { + "address": "https://rpc-agoric-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://agoric-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://rpc.agoric.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://main.api.agoric.net:443" + }, + { + "address": "https://api.agoric.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://agoric-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://agoric.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://agoric-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://api-agoric-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://agoric-rest.0base.dev", + "provider": "0base.vc" + }, + { + "address": "https://agoric-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://api.agoric.stakewith.us", + "provider": "StakeWithUs" + }, + { + "address": "https://api-agoric-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://agoric-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://lcd.agoric.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "grpc.agoric.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "agoric-grpc.polkachu.com:14490", + "provider": "Polkachu" + }, + { + "address": "agoric-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "agoric.grpc.kjnodes.com:12790", + "provider": "kjnodes" + }, + { + "address": "grpc-agoric-01.stakeflow.io:2202", + "provider": "Stakeflow" + }, + { + "address": "agoric.mellifera.network:9090", + "provider": "MELLIFERA" + }, + { + "address": "agoric-grpc.w3coins.io:14490", + "provider": "w3coins" + }, + { + "address": "https://grpc.agoric.stakewith.us", + "provider": "StakeWithUs" + }, + { + "address": "grpc-agoric-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "agoric-grpc.stakeandrelax.net:14490", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://grpc.agoric.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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": "Stakeflow", + "url": "https://stakeflow.io/agoric", + "account_page": "https://stakeflow.io/agoric/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/agoric/ibc.ts b/packages/chain-registry/src/mainnet/agoric/ibc.ts new file mode 100644 index 000000000..d81f664df --- /dev/null +++ b/packages/chain-registry/src/mainnet/agoric/ibc.ts @@ -0,0 +1,375 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "axelar", + "client_id": "07-tendermint-69", + "connection_id": "connection-51" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-51", + "connection_id": "connection-20" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-55", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-927", + "connection_id": "connection-649" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-405", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-19", + "connection_id": "connection-14" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-116", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-85", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-173", + "connection_id": "connection-154" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-91", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-94", + "connection_id": "connection-64" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-32", + "connection_id": "connection-40" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2109", + "connection_id": "connection-1649" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-320", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-111", + "connection_id": "connection-80" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-129", + "connection_id": "connection-118" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-59", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-148", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts b/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts new file mode 100644 index 000000000..d81f664df --- /dev/null +++ b/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts @@ -0,0 +1,375 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "axelar", + "client_id": "07-tendermint-69", + "connection_id": "connection-51" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-51", + "connection_id": "connection-20" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-55", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-927", + "connection_id": "connection-649" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-405", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-19", + "connection_id": "connection-14" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-116", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-85", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-173", + "connection_id": "connection-154" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-91", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-94", + "connection_id": "connection-64" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-32", + "connection_id": "connection-40" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2109", + "connection_id": "connection-1649" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-320", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-111", + "connection_id": "connection-80" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-129", + "connection_id": "connection-118" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-59", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-148", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/agoric/index.ts b/packages/chain-registry/src/mainnet/agoric/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/agoric/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/aioz/assets.ts b/packages/chain-registry/src/mainnet/aioz/assets.ts new file mode 100644 index 000000000..a5cea6e3c --- /dev/null +++ b/packages/chain-registry/src/mainnet/aioz/assets.ts @@ -0,0 +1,40 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "aioz", + "assets": [ + { + "description": "The native staking and governance token of the AIOZ Network.", + "denom_units": [ + { + "denom": "attoaioz", + "exponent": 0 + }, + { + "denom": "nanoaioz", + "exponent": 9 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/aioz/chain.ts b/packages/chain-registry/src/mainnet/aioz/chain.ts new file mode 100644 index 000000000..b3de26d63 --- /dev/null +++ b/packages/chain-registry/src/mainnet/aioz/chain.ts @@ -0,0 +1,87 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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.", + "apis": { + "evm-http-jsonrpc": [ + { + "address": "https://eth-dataseed.aioz.network", + "provider": "AIOZ Network" + } + ], + "rpc": [ + { + "address": "https://rpc-dataseed.aioz.network:443", + "provider": "AIOZ Network" + } + ], + "rest": [ + { + "address": "https://lcd-dataseed.aioz.network", + "provider": "AIOZ Network" + } + ], + "grpc": [ + { + "address": "grpc-dataseed.aioz.network:443", + "provider": "AIOZ Network" + } + ] + }, + "explorers": [ + { + "kind": "aioz", + "url": "https://explorer.aioz.network", + "tx_page": "https://explorer.aioz.network/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/aioz/ibc.ts b/packages/chain-registry/src/mainnet/aioz/ibc.ts new file mode 100644 index 000000000..3a5aa8105 --- /dev/null +++ b/packages/chain-registry/src/mainnet/aioz/ibc.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-567", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2785", + "connection_id": "connection-2285" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-779", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/aioz/ibc_chain1.ts b/packages/chain-registry/src/mainnet/aioz/ibc_chain1.ts new file mode 100644 index 000000000..3a5aa8105 --- /dev/null +++ b/packages/chain-registry/src/mainnet/aioz/ibc_chain1.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aioz", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1121", + "connection_id": "connection-808" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-567", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2785", + "connection_id": "connection-2285" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-779", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/aioz/index.ts b/packages/chain-registry/src/mainnet/aioz/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/aioz/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/akash/assets.ts b/packages/chain-registry/src/mainnet/akash/assets.ts new file mode 100644 index 000000000..71154267e --- /dev/null +++ b/packages/chain-registry/src/mainnet/akash/assets.ts @@ -0,0 +1,80 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uakt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Tether USDt on Akash", + "denom_units": [ + { + "denom": "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/akash/chain.ts b/packages/chain-registry/src/mainnet/akash/chain.ts new file mode 100644 index 000000000..6b4ca5ded --- /dev/null +++ b/packages/chain-registry/src/mainnet/akash/chain.ts @@ -0,0 +1,250 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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.ecostake.com:443", + "provider": "ecostake" + }, + { + "address": "https://akash-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" + }, + { + "address": "https://akash-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-akash.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://rpc-akash-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "http://akash.c29r3.xyz:80/rpc", + "provider": "c29r3" + }, + { + "address": "https://akash-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://akash-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://rpc-akash-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://akash-mainnet-rpc.cosmonautstakes.com:443", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://akash-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://akash-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://akash-rpc.validatornode.com", + "provider": "ValidatorNode" + }, + { + "address": "https://rpc-akash.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ], + "rest": [ + { + "address": "https://api.akash.forbole.com:443", + "provider": "forbole" + }, + { + "address": "https://rest-akash.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://akash-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" + }, + { + "address": "https://akash-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api-akash.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://api-akash-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://akash.c29r3.xyz:443/api", + "provider": "c29r3" + }, + { + "address": "https://akash-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://akash-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://api-akash-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://akash-mainnet-rest.cosmonautstakes.com:443", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://akash-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://akash-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://akash-api.validatornode.com", + "provider": "ValidatorNode" + }, + { + "address": "https://lcd-akash.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ], + "grpc": [ + { + "address": "grpc-akash-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "akash-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "akash-grpc.polkachu.com:12890", + "provider": "Polkachu" + }, + { + "address": "akash-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-akash.cosmos-spaces.cloud:1110", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc-akash-01.stakeflow.io:1502", + "provider": "Stakeflow" + }, + { + "address": "akash-grpc.w3coins.io:12890", + "provider": "w3coins" + }, + { + "address": "akash-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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": "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": "ValidatorNode", + "url": "https://explorer.validatornode.com/akash-network", + "tx_page": "https://explorer.validatornode.com/akash-network/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/akash/ibc.ts b/packages/chain-registry/src/mainnet/akash/ibc.ts new file mode 100644 index 000000000..ba444ad06 --- /dev/null +++ b/packages/chain-registry/src/mainnet/akash/ibc.ts @@ -0,0 +1,476 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-109", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-385", + "connection_id": "connection-339" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-80", + "connection_id": "connection-71" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-70", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cryptoorgchain", + "client_id": "07-tendermint-65", + "connection_id": "connection-38" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-23", + "connection_id": "connection-16" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-80", + "connection_id": "connection-47" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-103", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-0", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-5", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-20", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-47", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-42", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-11", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-29", + "connection_id": "connection-18" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-387", + "connection_id": "connection-364" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-273", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/akash/ibc_chain1.ts b/packages/chain-registry/src/mainnet/akash/ibc_chain1.ts new file mode 100644 index 000000000..ba444ad06 --- /dev/null +++ b/packages/chain-registry/src/mainnet/akash/ibc_chain1.ts @@ -0,0 +1,476 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-109", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-385", + "connection_id": "connection-339" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-80", + "connection_id": "connection-71" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-70", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cryptoorgchain", + "client_id": "07-tendermint-65", + "connection_id": "connection-38" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-23", + "connection_id": "connection-16" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-80", + "connection_id": "connection-47" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-103", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-0", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-5", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-20", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-47", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-42", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-11", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-29", + "connection_id": "connection-18" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-387", + "connection_id": "connection-364" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-273", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/akash/index.ts b/packages/chain-registry/src/mainnet/akash/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/akash/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/all.ts b/packages/chain-registry/src/mainnet/all.ts new file mode 100644 index 000000000..066767ab8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/all.ts @@ -0,0 +1,11 @@ +import assets from './assets'; +import chains from './chains'; +import ibc from './ibc'; + +export default { + assets, + chains, + ibc +}; + +export { assets, chains, ibc }; diff --git a/packages/chain-registry/src/mainnet/andromeda/assets.ts b/packages/chain-registry/src/mainnet/andromeda/assets.ts new file mode 100644 index 000000000..43abaf6b1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/andromeda/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "andromeda", + "assets": [ + { + "description": "The native staking and governance token of Andromeda", + "denom_units": [ + { + "denom": "uandr", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/andromeda/chain.ts b/packages/chain-registry/src/mainnet/andromeda/chain.ts new file mode 100644 index 000000000..dfd5f1085 --- /dev/null +++ b/packages/chain-registry/src/mainnet/andromeda/chain.ts @@ -0,0 +1,187 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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" + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uandr" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.andromeda-1.andromeda.aviaone.com", + "provider": "AVIAONE" + }, + { + "address": "https://rpc-andromeda.nodeist.net", + "provider": "nodeist" + }, + { + "address": "https://andromeda.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://andromeda.rpc.nodex.one", + "provider": "nodex" + }, + { + "address": "https://andro.rpc.m.stavr.tech/", + "provider": "🔥STAVR🔥" + }, + { + "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.stakerhouse.com:443", + "provider": "StakerHouse" + }, + { + "address": "https://andromeda-rpc.highstakes.ch:26657", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://andromeda-rpc.genznodes.dev", + "provider": "genznodes" + } + ], + "rest": [ + { + "address": "https://api.andromeda-1.andromeda.aviaone.com/", + "provider": "AVIAONE" + }, + { + "address": "https://api-andromeda.nodeist.net", + "provider": "nodeist" + }, + { + "address": "https://andromeda.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://andromeda.api.nodex.one", + "provider": "nodex" + }, + { + "address": "https://andro.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://andromeda-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://andromeda-api.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "https://andromeda-rest.stakerhouse.com:443", + "provider": "StakerHouse" + }, + { + "address": "https://andromeda-api.highstakes.ch:1317", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://andromeda-api.genznodes.dev", + "provider": "genznodes" + } + ], + "grpc": [ + { + "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.nodeist.net:443", + "provider": "nodeist" + }, + { + "address": "andromeda.grpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "https://andromeda.grpc.nodex.one:443", + "provider": "nodex" + }, + { + "address": "http://andromedad.grpc.t.stavr.tech:132", + "provider": "🔥STAVR🔥" + }, + { + "address": "andromeda-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "andromeda-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + }, + { + "address": "andromeda-grpc.genznodes.dev:27090", + "provider": "genznodes" + } + ] + }, + "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": "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}" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/andromeda/ibc.ts b/packages/chain-registry/src/mainnet/andromeda/ibc.ts new file mode 100644 index 000000000..f547659e2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/andromeda/ibc.ts @@ -0,0 +1,128 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-164", + "connection_id": "connection-127" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-176", + "connection_id": "connection-133" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-409", + "connection_id": "connection-413" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-351", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/andromeda/ibc_chain1.ts b/packages/chain-registry/src/mainnet/andromeda/ibc_chain1.ts new file mode 100644 index 000000000..f547659e2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/andromeda/ibc_chain1.ts @@ -0,0 +1,128 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-164", + "connection_id": "connection-127" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-176", + "connection_id": "connection-133" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-409", + "connection_id": "connection-413" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-351", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/andromeda/index.ts b/packages/chain-registry/src/mainnet/andromeda/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/andromeda/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/archway/assets.ts b/packages/chain-registry/src/mainnet/archway/assets.ts new file mode 100644 index 000000000..57e83619b --- /dev/null +++ b/packages/chain-registry/src/mainnet/archway/assets.ts @@ -0,0 +1,67 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "archway", + "assets": [ + { + "description": "The native token of Archway network", + "denom_units": [ + { + "denom": "aarch", + "exponent": 0 + }, + { + "denom": "uarch", + "exponent": 12 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "ERIS liquid staked ARCH", + "type_asset": "cw20", + "address": "archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5", + "denom_units": [ + { + "denom": "cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/amparch.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/archway/chain.ts b/packages/chain-registry/src/mainnet/archway/chain.ts new file mode 100644 index 000000000..1664ed8df --- /dev/null +++ b/packages/chain-registry/src/mainnet/archway/chain.ts @@ -0,0 +1,420 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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-archway.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://archway-mainnet-archive.allthatnode.com:26657", + "provider": "All That Node" + }, + { + "address": "https://m-archway.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://rpc-1.archway.nodes.guru", + "provider": "Nodes.Guru" + }, + { + "address": "https://archway.rpc.silknodes.io/", + "provider": "Silk Nodes" + }, + { + "address": "https://archway.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc-archway.cryptech.com.ua", + "provider": "cryptech" + }, + { + "address": "https://rpc.archway.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc-archway.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://rpc-archway.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://archway-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://m-archway.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://archway-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-archway.mms.team", + "provider": "MMS" + }, + { + "address": "https://rpc-archway.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://rpc.archway.lgns.net", + "provider": "Luganodes" + }, + { + "address": "https://archway-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://archway-rpc.0base.dev", + "provider": "0base.vc" + }, + { + "address": "https://archway-mainnet.rpc.l0vd.com", + "provider": "L0vd.com" + }, + { + "address": "https://archway-rpc.openbitlab.com", + "provider": "openbitlab" + }, + { + "address": "https://rpc-archway.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://rpc-archway.mainnet.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "https://rpc.archway.stakeup.tech", + "provider": "StakeUp" + }, + { + "address": "https://archway.api.trivium.network:26657", + "provider": "TriviumX | Architech" + }, + { + "address": "https://archway-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://archway-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://rpc.archway.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://api.mainnet.archway.io", + "provider": "Archway Foundation" + }, + { + "address": "https://archway-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://m-archway.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://api-1.archway.nodes.guru", + "provider": "Nodes.Guru" + }, + { + "address": "https://archway.api.silknodes.io/", + "provider": "Silk Nodes" + }, + { + "address": "https://archway.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://api-archway.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://api-archway.cryptech.com.ua", + "provider": "cryptech" + }, + { + "address": "https://api.archway.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rest-archway.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://lcd-archway.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://archway-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-archway.mms.team", + "provider": "MMS" + }, + { + "address": "https://api-archway.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://rest.archway.lgns.net", + "provider": "Luganodes" + }, + { + "address": "https://archway-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://archway-rest.0base.dev", + "provider": "0base.vc" + }, + { + "address": "https://archway-mainnet.api.l0vd.com", + "provider": "L0vd.com" + }, + { + "address": "https://archway-api.openbitlab.com", + "provider": "openbitlab" + }, + { + "address": "https://api-archway.mainnet.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "https://api.archway.stakeup.tech", + "provider": "StakeUp" + }, + { + "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-api.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://archway-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://lcd.archway.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "grpc.mainnet.archway.io:443", + "provider": "Archway Foundation" + }, + { + "address": "grpc-1.archway.nodes.guru:10690", + "provider": "Nodes.Guru" + }, + { + "address": "archway.grpc.kjnodes.com:15690", + "provider": "kjnodes" + }, + { + "address": "https://grpc-archway.cryptech.com.ua", + "provider": "cryptech" + }, + { + "address": "https://grpc.archway.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "grpc-archway.theamsolutions.info:443", + "provider": "AM Solutions" + }, + { + "address": "archway-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "archway.grpc.nodersteam.com:9090", + "provider": "[NODERS]TEAM" + }, + { + "address": "grpc-archway.mms.team:443", + "provider": "MMS" + }, + { + "address": "grpc-archway.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "grpc.archway.lgns.net:443", + "provider": "Luganodes" + }, + { + "address": "archway-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "archway-grpc.huginn.tech:4090", + "provider": "Huginn" + }, + { + "address": "archway-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com" + }, + { + "address": "archway-grpc.openbitlab.com:443", + "provider": "openbitlab" + }, + { + "address": "grpc-archway.mainnet.validatrium.club:27490", + "provider": "Validatrium" + }, + { + "address": "grpc.archway.stakeup.tech:443", + "provider": "StakeUp" + }, + { + "address": "grpc-archway.cosmos-spaces.cloud:4820", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc-archway-mainnet.testnet-pride.com:9096", + "provider": "TestnetPride" + }, + { + "address": "archway.api.trivium.network:9090", + "provider": "TriviumX | Architech" + }, + { + "address": "archway-grpc.tienthuattoan.ventures:9290", + "provider": "TienThuatToan" + }, + { + "address": "archway-grpc.stakeandrelax.net:11590", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://grpc.archway.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀", + "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": "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": "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": "Big Dipper", + "url": "https://bigdipper.live/archway", + "tx_page": "https://bigdipper.live/archway/transactions/${txHash}", + "account_page": "https://bigdipper.live/archway/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/archway/ibc.ts b/packages/chain-registry/src/mainnet/archway/ibc.ts new file mode 100644 index 000000000..ed680f05b --- /dev/null +++ b/packages/chain-registry/src/mainnet/archway/ibc.ts @@ -0,0 +1,648 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-109", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "axelar", + "client_id": "07-tendermint-160", + "connection_id": "connection-145" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "bitcanna", + "client_id": "07-tendermint-83", + "connection_id": "connection-74" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1152", + "connection_id": "connection-873" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-623", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "decentr", + "client_id": "07-tendermint-21", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-424", + "connection_id": "connection-406" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-145", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "jackal", + "client_id": "07-tendermint-61", + "connection_id": "connection-50" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ], + "operators": [ + { + "chain_1": { + "address": "archway16l5ls4ajah6hethh374tpgn42r5q4sqeuw8udj" + }, + "chain_2": { + "address": "jkl134a4es94hjqqej732cymf0w3988zh3c4yuqtf8" + }, + "memo": "by AM Solutions | https://www.theamsolutions.info", + "name": "AM Solutions", + "discord_handle": "AlexeyM#5409" + }, + { + "chain_1": { + "address": "archway1nms20r7jzaa4ms9exv90ckl2xfn0rd3rmqh7zm" + }, + "chain_2": { + "address": "jkl1nms20r7jzaa4ms9exv90ckl2xfn0rd3rh49t3n" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-144", + "connection_id": "connection-110" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-99", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-62", + "connection_id": "connection-43" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-17", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-15", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "wasm.archway10f3aasgsnpv84ymjyld50jayc4ecu267sdpjamauwm8nvxlzex9qj4dkwr" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-49", + "connection_id": "connection-43" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2850", + "connection_id": "connection-2362" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1429", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-83", + "connection_id": "connection-58" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "qwoyn", + "client_id": "07-tendermint-8", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-169", + "connection_id": "connection-119" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-84", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-384", + "connection_id": "connection-360" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-265", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-228", + "connection_id": "connection-190" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/archway/ibc_chain1.ts b/packages/chain-registry/src/mainnet/archway/ibc_chain1.ts new file mode 100644 index 000000000..5da39d077 --- /dev/null +++ b/packages/chain-registry/src/mainnet/archway/ibc_chain1.ts @@ -0,0 +1,559 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "bitcanna", + "client_id": "07-tendermint-83", + "connection_id": "connection-74" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1152", + "connection_id": "connection-873" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-623", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "decentr", + "client_id": "07-tendermint-21", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-424", + "connection_id": "connection-406" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-145", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "jackal", + "client_id": "07-tendermint-61", + "connection_id": "connection-50" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ], + "operators": [ + { + "chain_1": { + "address": "archway16l5ls4ajah6hethh374tpgn42r5q4sqeuw8udj" + }, + "chain_2": { + "address": "jkl134a4es94hjqqej732cymf0w3988zh3c4yuqtf8" + }, + "memo": "by AM Solutions | https://www.theamsolutions.info", + "name": "AM Solutions", + "discord_handle": "AlexeyM#5409" + }, + { + "chain_1": { + "address": "archway1nms20r7jzaa4ms9exv90ckl2xfn0rd3rmqh7zm" + }, + "chain_2": { + "address": "jkl1nms20r7jzaa4ms9exv90ckl2xfn0rd3rh49t3n" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-144", + "connection_id": "connection-110" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-99", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-62", + "connection_id": "connection-43" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-17", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-15", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "wasm.archway10f3aasgsnpv84ymjyld50jayc4ecu267sdpjamauwm8nvxlzex9qj4dkwr" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-49", + "connection_id": "connection-43" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2850", + "connection_id": "connection-2362" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1429", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-83", + "connection_id": "connection-58" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "qwoyn", + "client_id": "07-tendermint-8", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-169", + "connection_id": "connection-119" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-84", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-384", + "connection_id": "connection-360" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-265", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-228", + "connection_id": "connection-190" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/archway/index.ts b/packages/chain-registry/src/mainnet/archway/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/archway/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/arkh/assets.ts b/packages/chain-registry/src/mainnet/arkh/assets.ts new file mode 100644 index 000000000..0de66da1e --- /dev/null +++ b/packages/chain-registry/src/mainnet/arkh/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "arkh", + "assets": [ + { + "description": "The native token of Arkhadian", + "denom_units": [ + { + "denom": "arkh", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/arkh/chain.ts b/packages/chain-registry/src/mainnet/arkh/chain.ts new file mode 100644 index 000000000..d41adc726 --- /dev/null +++ b/packages/chain-registry/src/mainnet/arkh/chain.ts @@ -0,0 +1,96 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": [ + { + "address": "https://asc-dataseed.arkhadian.com/", + "provider": "arkhnetwork" + }, + { + "address": "https://rpc.arkh.nodestake.top", + "provider": "NodeStake" + } + ], + "rest": [ + { + "address": "https://asc-blockchain-api.arkhadian.com/", + "provider": "arkhnetwork" + }, + { + "address": "https://api.arkh.nodestake.top", + "provider": "NodeStake" + } + ], + "grpc": [ + { + "address": "grpc.arkh.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://grpc.arkh.nodexcapital.com:443", + "provider": "NodeX Validator" + } + ] + }, + "explorers": [ + { + "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": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/arkhadian", + "tx_page": "https://explorer.nodexcapital.com/arkhadian/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/arkh/ibc.ts b/packages/chain-registry/src/mainnet/arkh/ibc.ts new file mode 100644 index 000000000..1beb92837 --- /dev/null +++ b/packages/chain-registry/src/mainnet/arkh/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-648", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/arkh/ibc_chain1.ts b/packages/chain-registry/src/mainnet/arkh/ibc_chain1.ts new file mode 100644 index 000000000..1beb92837 --- /dev/null +++ b/packages/chain-registry/src/mainnet/arkh/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "arkh", + "client_id": "07-tendermint-34", + "connection_id": "connection-27" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2697", + "connection_id": "connection-2235" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-648", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/arkh/index.ts b/packages/chain-registry/src/mainnet/arkh/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/arkh/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/assetmantle/assets.ts b/packages/chain-registry/src/mainnet/assetmantle/assets.ts new file mode 100644 index 000000000..15782e4f0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/assetmantle/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "assetmantle", + "assets": [ + { + "description": "The native token of Asset Mantle", + "denom_units": [ + { + "denom": "umntl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/assetmantle/chain.ts b/packages/chain-registry/src/mainnet/assetmantle/chain.ts new file mode 100644 index 000000000..dcfc03623 --- /dev/null +++ b/packages/chain-registry/src/mainnet/assetmantle/chain.ts @@ -0,0 +1,189 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "umntl" + } + ] + }, + "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" + }, + "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.blockpower.capital", + "provider": "Blockpower" + }, + { + "address": "https://rpc-assetmantle.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://assetmantle-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc.assetmantle.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc-assetmantle-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc-assetmantle.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://rpc.mantle.paranorm.pro:443", + "provider": "paranorm" + }, + { + "address": "https://assetmantle-rpc.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://assetmantle-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://rest.assetmantle.one", + "provider": "AssetMantle" + }, + { + "address": "https://rest-assetmantle.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://api.assetmantle.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://api-assetmantle-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://assetmantle-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://lcd-assetmantle.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api.mantle.paranorm.pro:443", + "provider": "paranorm" + }, + { + "address": "https://assetmantle-rest.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://assetmantle-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc.assetmantle.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "grpc-assetmantle-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "assetmantle-grpc.polkachu.com:14690", + "provider": "Polkachu" + }, + { + "address": "assetmantle-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + }, + { + "address": "assetmantle-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/assetmantle/ibc.ts b/packages/chain-registry/src/mainnet/assetmantle/ibc.ts new file mode 100644 index 000000000..113c07cd5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/assetmantle/ibc.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-104", + "connection_id": "connection-73" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-92", + "connection_id": "connection-35" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1923", + "connection_id": "connection-1498" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-232", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/assetmantle/ibc_chain1.ts b/packages/chain-registry/src/mainnet/assetmantle/ibc_chain1.ts new file mode 100644 index 000000000..113c07cd5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/assetmantle/ibc_chain1.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-104", + "connection_id": "connection-73" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-92", + "connection_id": "connection-35" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1923", + "connection_id": "connection-1498" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-232", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/assetmantle/index.ts b/packages/chain-registry/src/mainnet/assetmantle/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/assetmantle/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/assets.ts b/packages/chain-registry/src/mainnet/assets.ts new file mode 100644 index 000000000..277ca1a97 --- /dev/null +++ b/packages/chain-registry/src/mainnet/assets.ts @@ -0,0 +1,149 @@ +import { AssetList } from '@chain-registry/types'; + +import * as _8ball from './8ball'; +import * as _acrechain from './acrechain'; +import * as _agoric from './agoric'; +import * as _aioz from './aioz'; +import * as _akash from './akash'; +import * as _andromeda from './andromeda'; +import * as _archway from './archway'; +import * as _arkh from './arkh'; +import * as _assetmantle from './assetmantle'; +import * as _aura from './aura'; +import * as _axelar from './axelar'; +import * as _bandchain from './bandchain'; +import * as _beezee from './beezee'; +import * as _bitcanna from './bitcanna'; +import * as _bitsong from './bitsong'; +import * as _bluzelle from './bluzelle'; +import * as _bostrom from './bostrom'; +import * as _canto from './canto'; +import * as _carbon from './carbon'; +import * as _celestia from './celestia'; +import * as _cerberus from './cerberus'; +import * as _chain4energy from './chain4energy'; +import * as _cheqd from './cheqd'; +import * as _chihuahua from './chihuahua'; +import * as _chimba from './chimba'; +import * as _chronicnetwork from './chronicnetwork'; +import * as _comdex from './comdex'; +import * as _commercionetwork from './commercionetwork'; +import * as _composable from './composable'; +import * as _conscious from './conscious'; +import * as _coreum from './coreum'; +import * as _cosmoshub from './cosmoshub'; +import * as _coss from './coss'; +import * as _crescent from './crescent'; +import * as _cronos from './cronos'; +import * as _cryptoorgchain from './cryptoorgchain'; +import * as _cudos from './cudos'; +import * as _decentr from './decentr'; +import * as _desmos from './desmos'; +import * as _dig from './dig'; +import * as _doravota from './doravota'; +import * as _dydx from './dydx'; +import * as _dyson from './dyson'; +import * as _echelon from './echelon'; +import * as _emoney from './emoney'; +import * as _empowerchain from './empowerchain'; +import * as _ethos from './ethos'; +import * as _evmos from './evmos'; +import * as _fetchhub from './fetchhub'; +import * as _firmachain from './firmachain'; +import * as _furya from './furya'; +import * as _fxcore from './fxcore'; +import * as _galaxy from './galaxy'; +import * as _gateway from './gateway'; +import * as _genesisl1 from './genesisl1'; +import * as _gitopia from './gitopia'; +import * as _gravitybridge from './gravitybridge'; +import * as _haqq from './haqq'; +import * as _highbury from './highbury'; +import * as _humans from './humans'; +import * as _idep from './idep'; +import * as _impacthub from './impacthub'; +import * as _imversed from './imversed'; +import * as _injective from './injective'; +import * as _irisnet from './irisnet'; +import * as _jackal from './jackal'; +import * as _juno from './juno'; +import * as _kava from './kava'; +import * as _kichain from './kichain'; +import * as _konstellation from './konstellation'; +import * as _kujira from './kujira'; +import * as _kyve from './kyve'; +import * as _lambda from './lambda'; +import * as _likecoin from './likecoin'; +import * as _logos from './logos'; +import * as _loyal from './loyal'; +import * as _lumenx from './lumenx'; +import * as _lumnetwork from './lumnetwork'; +import * as _mars from './mars'; +import * as _mayachain from './mayachain'; +import * as _medasdigital from './medasdigital'; +import * as _meme from './meme'; +import * as _microtick from './microtick'; +import * as _migaloo from './migaloo'; +import * as _mises from './mises'; +import * as _mun from './mun'; +import * as _mythos from './mythos'; +import * as _neutron from './neutron'; +import * as _nibiru from './nibiru'; +import * as _noble from './noble'; +import * as _nois from './nois'; +import * as _nolus from './nolus'; +import * as _nomic from './nomic'; +import * as _nyx from './nyx'; +import * as _octa from './octa'; +import * as _odin from './odin'; +import * as _okexchain from './okexchain'; +import * as _omniflixhub from './omniflixhub'; +import * as _onomy from './onomy'; +import * as _oraichain from './oraichain'; +import * as _osmosis from './osmosis'; +import * as _panacea from './panacea'; +import * as _passage from './passage'; +import * as _passage1 from './passage1'; +import * as _persistence from './persistence'; +import * as _planq from './planq'; +import * as _point from './point'; +import * as _provenance from './provenance'; +import * as _pundix from './pundix'; +import * as _quasar from './quasar'; +import * as _quicksilver from './quicksilver'; +import * as _qwoyn from './qwoyn'; +import * as _realio from './realio'; +import * as _rebus from './rebus'; +import * as _regen from './regen'; +import * as _rizon from './rizon'; +import * as _secretnetwork from './secretnetwork'; +import * as _sei from './sei'; +import * as _sentinel from './sentinel'; +import * as _sge from './sge'; +import * as _shareledger from './shareledger'; +import * as _shentu from './shentu'; +import * as _sifchain from './sifchain'; +import * as _six from './six'; +import * as _sommelier from './sommelier'; +import * as _source from './source'; +import * as _stafihub from './stafihub'; +import * as _stargaze from './stargaze'; +import * as _starname from './starname'; +import * as _stratos from './stratos'; +import * as _stride from './stride'; +import * as _tenet from './tenet'; +import * as _teritori from './teritori'; +import * as _terpnetwork from './terpnetwork'; +import * as _terra from './terra'; +import * as _terra2 from './terra2'; +import * as _tgrade from './tgrade'; +import * as _umee from './umee'; +import * as _unification from './unification'; +import * as _ununifi from './ununifi'; +import * as _uptick from './uptick'; +import * as _vidulum from './vidulum'; +import * as _xpla from './xpla' + +const assets: AssetList[] = [_8ball.assets,_acrechain.assets,_agoric.assets,_aioz.assets,_akash.assets,_andromeda.assets,_archway.assets,_arkh.assets,_assetmantle.assets,_aura.assets,_axelar.assets,_bandchain.assets,_beezee.assets,_bitcanna.assets,_bitsong.assets,_bluzelle.assets,_bostrom.assets,_canto.assets,_carbon.assets,_celestia.assets,_cerberus.assets,_chain4energy.assets,_cheqd.assets,_chihuahua.assets,_chimba.assets,_chronicnetwork.assets,_comdex.assets,_commercionetwork.assets,_composable.assets,_conscious.assets,_coreum.assets,_cosmoshub.assets,_coss.assets,_crescent.assets,_cronos.assets,_cryptoorgchain.assets,_cudos.assets,_decentr.assets,_desmos.assets,_dig.assets,_doravota.assets,_dydx.assets,_dyson.assets,_echelon.assets,_emoney.assets,_empowerchain.assets,_ethos.assets,_evmos.assets,_fetchhub.assets,_firmachain.assets,_furya.assets,_fxcore.assets,_galaxy.assets,_gateway.assets,_genesisl1.assets,_gitopia.assets,_gravitybridge.assets,_haqq.assets,_highbury.assets,_humans.assets,_idep.assets,_impacthub.assets,_imversed.assets,_injective.assets,_irisnet.assets,_jackal.assets,_juno.assets,_kava.assets,_kichain.assets,_konstellation.assets,_kujira.assets,_kyve.assets,_lambda.assets,_likecoin.assets,_logos.assets,_loyal.assets,_lumenx.assets,_lumnetwork.assets,_mars.assets,_mayachain.assets,_medasdigital.assets,_meme.assets,_microtick.assets,_migaloo.assets,_mises.assets,_mun.assets,_mythos.assets,_neutron.assets,_nibiru.assets,_noble.assets,_nois.assets,_nolus.assets,_nomic.assets,_nyx.assets,_octa.assets,_odin.assets,_okexchain.assets,_omniflixhub.assets,_onomy.assets,_oraichain.assets,_osmosis.assets,_panacea.assets,_passage.assets,_passage1.assets,_persistence.assets,_planq.assets,_point.assets,_provenance.assets,_pundix.assets,_quasar.assets,_quicksilver.assets,_qwoyn.assets,_realio.assets,_rebus.assets,_regen.assets,_rizon.assets,_secretnetwork.assets,_sei.assets,_sentinel.assets,_sge.assets,_shareledger.assets,_shentu.assets,_sifchain.assets,_six.assets,_sommelier.assets,_source.assets,_stafihub.assets,_stargaze.assets,_starname.assets,_stratos.assets,_stride.assets,_tenet.assets,_teritori.assets,_terpnetwork.assets,_terra.assets,_terra2.assets,_tgrade.assets,_umee.assets,_unification.assets,_ununifi.assets,_uptick.assets,_vidulum.assets,_xpla.assets]; + +export default assets; diff --git a/packages/chain-registry/src/mainnet/aura/assets.ts b/packages/chain-registry/src/mainnet/aura/assets.ts new file mode 100644 index 000000000..d1f41f8d8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/aura/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "aura", + "assets": [ + { + "description": "The native token of Aura Network", + "denom_units": [ + { + "denom": "uaura", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/aura/chain.ts b/packages/chain-registry/src/mainnet/aura/chain.ts new file mode 100644 index 000000000..ed7749e1c --- /dev/null +++ b/packages/chain-registry/src/mainnet/aura/chain.ts @@ -0,0 +1,282 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uaura" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "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" + }, + "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" + } + ], + "rest": [ + { + "address": "https://lcd.aura.network/", + "provider": "Aura Network Foundation" + }, + { + "address": "https://m-aura.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://aura.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api.aura.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://aura-api.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://aura.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://mainnet-aura-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://aura-api.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://aura-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://aura-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://api.aura.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://api.aura.silentvalidator.com", + "provider": "silent" + }, + { + "address": "https://aura-api.sergo.dev", + "provider": "SerGo" + }, + { + "address": "https://api-aura.mms.team", + "provider": "MMS" + }, + { + "address": "https://aura-api.stake-town.com", + "provider": "StakeTown" + } + ], + "grpc": [ + { + "address": "https://grpc.aura.network", + "provider": "Aura Network Foundation" + }, + { + "address": "auranetwork-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://grpc.aura.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "aura.mainnet.grpc.nodersteam.com:9100/", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://aura-grpc.ramuchi.tech:15000", + "provider": "ramuchi.tech" + }, + { + "address": "http://aura.grpc.m.stavr.tech:9901", + "provider": "🔥STAVR🔥" + }, + { + "address": "aura.grpc.kjnodes.com:11790", + "provider": "kjnodes" + }, + { + "address": "aura-grpc.tienthuattoan.ventures:9090", + "provider": "TienThuatToan" + }, + { + "address": "aura-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "services.staketab.com:9021", + "provider": "Staketab" + }, + { + "address": "grpc.aura.silentvalidator.com:443", + "provider": "silent" + }, + { + "address": "grpc-aura.mms.team:443", + "provider": "MMS" + }, + { + "address": "aura-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "grpc.aura.safeblock.space:9090", + "provider": "Safe Block" + } + ] + }, + "explorers": [ + { + "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": "🔥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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/aura/ibc.ts b/packages/chain-registry/src/mainnet/aura/ibc.ts new file mode 100644 index 000000000..da39b0a6d --- /dev/null +++ b/packages/chain-registry/src/mainnet/aura/ibc.ts @@ -0,0 +1,253 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1158", + "connection_id": "connection-880" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-646", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-133", + "connection_id": "connection-168" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-66", + "connection_id": "connection-63" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "wasm.aura1r3zgdsn3dcze07a4r60rxxx7ppvkxfshn9np0pwtkgarrld0786s72jtjt" + }, + "chain_2": { + "channel_id": "channel-35", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3054", + "connection_id": "connection-2551" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11304", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-339", + "connection_id": "connection-288" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-270", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "wasm.aura1y3244guwexyvn6yx6kqkj5s0f56lzfdnuja3culygnuwxgrxyuqsaz4xvv" + }, + "chain_2": { + "channel_id": "channel-271", + "port_id": "wasm.stars1r0a8ygvnjfaegy4n5z9325e0ew9uy2s7rn4vt7qf4ltv49fj4tnsk6pvtv" + }, + "ordering": "unordered", + "version": "ics721-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/aura/ibc_chain1.ts b/packages/chain-registry/src/mainnet/aura/ibc_chain1.ts new file mode 100644 index 000000000..da39b0a6d --- /dev/null +++ b/packages/chain-registry/src/mainnet/aura/ibc_chain1.ts @@ -0,0 +1,253 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1158", + "connection_id": "connection-880" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-646", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-133", + "connection_id": "connection-168" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-66", + "connection_id": "connection-63" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "wasm.aura1r3zgdsn3dcze07a4r60rxxx7ppvkxfshn9np0pwtkgarrld0786s72jtjt" + }, + "chain_2": { + "channel_id": "channel-35", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3054", + "connection_id": "connection-2551" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11304", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-339", + "connection_id": "connection-288" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-270", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "wasm.aura1y3244guwexyvn6yx6kqkj5s0f56lzfdnuja3culygnuwxgrxyuqsaz4xvv" + }, + "chain_2": { + "channel_id": "channel-271", + "port_id": "wasm.stars1r0a8ygvnjfaegy4n5z9325e0ew9uy2s7rn4vt7qf4ltv49fj4tnsk6pvtv" + }, + "ordering": "unordered", + "version": "ics721-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/aura/index.ts b/packages/chain-registry/src/mainnet/aura/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/aura/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/axelar/assets.ts b/packages/chain-registry/src/mainnet/axelar/assets.ts new file mode 100644 index 000000000..6cd2b8e47 --- /dev/null +++ b/packages/chain-registry/src/mainnet/axelar/assets.ts @@ -0,0 +1,1256 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "axelar", + "assets": [ + { + "description": "The native token of Axelar", + "denom_units": [ + { + "denom": "uaxl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Circle's stablecoin on Axelar", + "denom_units": [ + { + "denom": "uusdc", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "base": "uusdc", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "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" + }, + "coingecko_id": "axlusdc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + ] + }, + { + "description": "Frax's fractional-algorithmic stablecoin on Axelar", + "denom_units": [ + { + "denom": "frax-wei", + "exponent": 0 + }, + { + "denom": "frax", + "exponent": 18 + } + ], + "base": "frax-wei", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } + ] + }, + { + "description": "Dai stablecoin on Axelar", + "denom_units": [ + { + "denom": "dai-wei", + "exponent": 0 + }, + { + "denom": "dai", + "exponent": 18 + } + ], + "base": "dai-wei", + "name": "Dai Stablecoin", + "display": "dai", + "symbol": "DAI", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg" + } + ] + }, + { + "description": "Tether's USD stablecoin on Axelar", + "denom_units": [ + { + "denom": "uusdt", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "uusdt", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg" + } + ] + }, + { + "description": "Wrapped Ether on Axelar", + "denom_units": [ + { + "denom": "weth-wei", + "exponent": 0 + }, + { + "denom": "weth", + "exponent": 18 + } + ], + "base": "weth-wei", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } + ] + }, + { + "description": "Wrapped Bitcoin on Axelar", + "denom_units": [ + { + "denom": "wbtc-satoshi", + "exponent": 0 + }, + { + "denom": "wbtc", + "exponent": 8 + } + ], + "base": "wbtc-satoshi", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + } + ] + }, + { + "description": "Aave on Axelar", + "denom_units": [ + { + "denom": "aave-wei", + "exponent": 0 + }, + { + "denom": "aave", + "exponent": 18 + } + ], + "base": "aave-wei", + "name": "Aave", + "display": "aave", + "symbol": "AAVE", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + } + ] + }, + { + "description": "ApeCoin on Axelar", + "denom_units": [ + { + "denom": "ape-wei", + "exponent": 0 + }, + { + "denom": "ape", + "exponent": 18 + } + ], + "base": "ape-wei", + "name": "ApeCoin", + "display": "ape", + "symbol": "APE", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x4d224452801aced8b2f0aebe155379bb5d594381" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + } + ] + }, + { + "description": "Axie Infinity Shard on Axelar", + "denom_units": [ + { + "denom": "axs-wei", + "exponent": 0 + }, + { + "denom": "axs", + "exponent": 18 + } + ], + "base": "axs-wei", + "name": "Axie Infinity Shard", + "display": "axs", + "symbol": "AXS", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + } + ] + }, + { + "description": "Chainlink on Axelar", + "denom_units": [ + { + "denom": "link-wei", + "exponent": 0 + }, + { + "denom": "link", + "exponent": 18 + } + ], + "base": "link-wei", + "name": "Chainlink", + "display": "link", + "symbol": "LINK", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" + } + ] + }, + { + "description": "Maker on Axelar", + "denom_units": [ + { + "denom": "mkr-wei", + "exponent": 0 + }, + { + "denom": "mkr", + "exponent": 18 + } + ], + "base": "mkr-wei", + "name": "Maker", + "display": "mkr", + "symbol": "MKR", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + } + ] + }, + { + "description": "Rai Reflex Index on Axelar", + "denom_units": [ + { + "denom": "rai-wei", + "exponent": 0 + }, + { + "denom": "rai", + "exponent": 18 + } + ], + "base": "rai-wei", + "name": "Rai Reflex Index", + "display": "rai", + "symbol": "RAI", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + } + ] + }, + { + "description": "Shiba Inu on Axelar", + "denom_units": [ + { + "denom": "shib-wei", + "exponent": 0 + }, + { + "denom": "shib", + "exponent": 18 + } + ], + "base": "shib-wei", + "name": "Shiba Inu", + "display": "shib", + "symbol": "SHIB", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + } + ] + }, + { + "description": "Lido Staked Ether on Axelar", + "denom_units": [ + { + "denom": "steth-wei", + "exponent": 0 + }, + { + "denom": "steth", + "exponent": 18 + } + ], + "base": "steth-wei", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + } + ] + }, + { + "description": "Uniswap on Axelar", + "denom_units": [ + { + "denom": "uni-wei", + "exponent": 0 + }, + { + "denom": "uni", + "exponent": 18 + } + ], + "base": "uni-wei", + "name": "Uniswap", + "display": "uni", + "symbol": "UNI", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + } + ] + }, + { + "description": "Chain on Axelar", + "denom_units": [ + { + "denom": "xcn-wei", + "exponent": 0 + }, + { + "denom": "xcn", + "exponent": 18 + } + ], + "base": "xcn-wei", + "name": "Chain", + "display": "xcn", + "symbol": "XCN", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + } + ] + }, + { + "description": "Wrapped Polkadot on Axelar", + "denom_units": [ + { + "denom": "dot-planck", + "exponent": 0 + }, + { + "denom": "dot", + "exponent": 10 + } + ], + "base": "dot-planck", + "name": "Wrapped Polkadot", + "display": "dot", + "symbol": "DOT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "moonbeam", + "base_denom": "0xffffffff1fcacbd218edc0eba20fc2308c778080" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + } + ] + }, + { + "description": "Wrapped Moonbeam on Axelar", + "denom_units": [ + { + "denom": "wglmr-wei", + "exponent": 0 + }, + { + "denom": "wglmr", + "exponent": 18 + } + ], + "base": "wglmr-wei", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "moonbeam", + "base_denom": "0xacc15dc74880c9944775448304b263d191c6077f" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + } + ] + }, + { + "description": "Wrapped Matic on Axelar", + "denom_units": [ + { + "denom": "wmatic-wei", + "exponent": 0 + }, + { + "denom": "wmatic", + "exponent": 18 + } + ], + "base": "wmatic-wei", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "polygon", + "base_denom": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + } + ] + }, + { + "description": "Wrapped BNB on Axelar", + "denom_units": [ + { + "denom": "wbnb-wei", + "exponent": 0 + }, + { + "denom": "wbnb", + "exponent": 18 + } + ], + "base": "wbnb-wei", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" + } + ] + }, + { + "description": "Binance USD on Axelar.", + "denom_units": [ + { + "denom": "busd-wei", + "exponent": 0 + }, + { + "denom": "busd", + "exponent": 18 + } + ], + "base": "busd-wei", + "name": "Binance USD", + "display": "busd", + "symbol": "BUSD", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x4fabb145d64652a948d72533023f6e7a623c7c53" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + } + ] + }, + { + "description": "Wrapped AVAX on Axelar.", + "denom_units": [ + { + "denom": "wavax-wei", + "exponent": 0 + }, + { + "denom": "avax", + "exponent": 18 + } + ], + "base": "wavax-wei", + "name": "Wrapped AVAX", + "display": "avax", + "symbol": "WAVAX", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "avalanche", + "base_denom": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + } + ] + }, + { + "description": "Wrapped FTM on Axelar.", + "denom_units": [ + { + "denom": "wftm-wei", + "exponent": 0 + }, + { + "denom": "ftm", + "exponent": 18 + } + ], + "base": "wftm-wei", + "name": "Wrapped FTM", + "display": "ftm", + "symbol": "WFTM", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "fantom", + "base_denom": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" + } + ] + }, + { + "description": "Circle's stablecoin from Polygon on Axelar", + "denom_units": [ + { + "denom": "polygon-uusdc", + "exponent": 0 + }, + { + "denom": "polygon-usdc", + "exponent": 6 + } + ], + "base": "polygon-uusdc", + "name": "USD Coin from Polygon", + "display": "polygon-usdc", + "symbol": "USDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "polygon", + "base_denom": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + ] + }, + { + "description": "Circle's stablecoin from Avalanche on Axelar", + "denom_units": [ + { + "denom": "avalanche-uusdc", + "exponent": 0 + }, + { + "denom": "avalanche-usdc", + "exponent": 6 + } + ], + "base": "avalanche-uusdc", + "name": "USD Coin from Avalanche", + "display": "avalanche-usdc", + "symbol": "USDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "avalanche", + "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + ] + }, + { + "description": "Wrapped FIL on Axelar", + "denom_units": [ + { + "denom": "wfil-wei", + "exponent": 0 + }, + { + "denom": "fil", + "exponent": 18 + } + ], + "base": "wfil-wei", + "name": "Wrapped FIL from Filecoin", + "display": "fil", + "symbol": "axlFIL", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "filecoin", + "base_denom": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg" + } + ] + }, + { + "description": "Arbitrum on Axelar", + "denom_units": [ + { + "denom": "arb-wei", + "exponent": 0 + }, + { + "denom": "arb", + "exponent": 18 + } + ], + "base": "arb-wei", + "name": "Arbitrum", + "display": "arb", + "symbol": "ARB", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "arbitrum", + "base_denom": "0x912CE59144191C1204E64559FE8253a0e49E6548" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "pepe-wei", + "exponent": 0, + "aliases": [ + "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + ] + }, + { + "denom": "pepe", + "exponent": 18 + } + ], + "base": "pepe-wei", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" + } + }, + { + "denom_units": [ + { + "denom": "cbeth-wei", + "exponent": 0, + "aliases": [ + "0xbe9895146f7af43049ca1c1ae358b0541ea49704" + ] + }, + { + "denom": "cbeth", + "exponent": 18 + } + ], + "base": "cbeth-wei", + "name": "Coinbase Wrapped Staked ETH", + "display": "cbeth", + "symbol": "cbETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" + } + }, + { + "denom_units": [ + { + "denom": "reth-wei", + "exponent": 0, + "aliases": [ + "0xae78736cd615f374d3085123a210448e74fc6393" + ] + }, + { + "denom": "reth", + "exponent": 18 + } + ], + "base": "reth-wei", + "name": "Rocket Pool Ether", + "display": "reth", + "symbol": "rETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" + } + }, + { + "denom_units": [ + { + "denom": "sfrxeth-wei", + "exponent": 0, + "aliases": [ + "0xac3e018457b222d93114458476f3e3416abbe38f" + ] + }, + { + "denom": "sfrxeth", + "exponent": 18 + } + ], + "base": "sfrxeth-wei", + "name": "Staked Frax Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" + } + }, + { + "denom_units": [ + { + "denom": "wsteth-wei", + "exponent": 0, + "aliases": [ + "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + ] + }, + { + "denom": "wsteth", + "exponent": 18 + } + ], + "base": "wsteth-wei", + "name": "Wrapped Lido Staked Ether", + "display": "wsteth", + "symbol": "wstETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + } + }, + { + "denom_units": [ + { + "denom": "yieldeth-wei", + "exponent": 0, + "aliases": [ + "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" + ] + }, + { + "denom": "YieldETH", + "exponent": 18 + } + ], + "base": "yieldeth-wei", + "name": "Real Yield Eth", + "display": "YieldETH", + "symbol": "YieldETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/axelar/chain.ts b/packages/chain-registry/src/mainnet/axelar/chain.ts new file mode 100644 index 000000000..5d2b2f285 --- /dev/null +++ b/packages/chain-registry/src/mainnet/axelar/chain.ts @@ -0,0 +1,283 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uaxl" + } + ] + }, + "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" + }, + "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.quantnode.tech:9091", + "provider": "Quantnode" + } + ], + "rpc": [ + { + "address": "https://rpc-axelar.imperator.co:443", + "provider": "Imperator.co" + }, + { + "address": "https://axelar-rpc.quickapi.com:443", + "provider": "chainlayer" + }, + { + "address": "https://rpc-axelar.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://axelar-rpc.pops.one:443", + "provider": "p-ops" + }, + { + "address": "https://axelar-rpc.qubelabs.io:443", + "provider": "Qubelabs" + }, + { + "address": "https://rpc-1.axelar.nodes.guru:443", + "provider": "nodes.guru" + }, + { + "address": "https://rpc-axelar-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://axelar-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://axelar.rpc.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://rpc.axelar.bh.rocks", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://axelar-rpc.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "https://rpc-axelar.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://axelar-rpc.quantnode.tech/", + "provider": "QuantNode" + }, + { + "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.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://rpc-axelar-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://axelar-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://axelar-rpc.w3coins.io", + "provider": "w3coins" + } + ], + "rest": [ + { + "address": "https://lcd-axelar.imperator.co:443", + "provider": "Imperator.co" + }, + { + "address": "https://axelar-lcd.quickapi.com:443", + "provider": "chainlayer" + }, + { + "address": "https://api-axelar.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://axelar-lcd.qubelabs.io:443", + "provider": "Qubelabs" + }, + { + "address": "https://api-1.axelar.nodes.guru:443", + "provider": "nodes.guru" + }, + { + "address": "https://api-axelar-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://axelar-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://axelar.rest.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://api.axelar.bh.rocks", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://axelar-api.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "https://lcd-axelar.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://axelar-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://axelar-lcd.quantnode.tech/", + "provider": "QuantNode" + }, + { + "address": "https://axelar-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://api-axelar-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://axelar-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://axelar-api.w3coins.io", + "provider": "w3coins" + } + ], + "grpc": [ + { + "address": "axelar-grpc.qubelabs.io:9092", + "provider": "Qubelabs" + }, + { + "address": "axelar-grpc.quantnode.tech:9090", + "provider": "Quantnode" + }, + { + "address": "services.staketab.com:9080", + "provider": "Staketab" + }, + { + "address": "grpc-axelar.cosmos-spaces.cloud:1590", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc-axelar-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "axelar-grpc.polkachu.com:15190", + "provider": "Polkachu" + }, + { + "address": "axelar.grpc.stakin-nodes.com:443", + "provider": "Stakin" + }, + { + "address": "axelar-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-axelar-01.stakeflow.io:1602", + "provider": "Stakeflow" + }, + { + "address": "axelar-grpc.w3coins.io:15190", + "provider": "w3coins" + }, + { + "address": "grpc-axelar.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ] + }, + "explorers": [ + { + "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": "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": "Stakeflow", + "url": "https://stakeflow.io/axelar", + "account_page": "https://stakeflow.io/axelar/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/axelar/ibc.ts b/packages/chain-registry/src/mainnet/axelar/ibc.ts new file mode 100644 index 000000000..63c7ff337 --- /dev/null +++ b/packages/chain-registry/src/mainnet/axelar/ibc.ts @@ -0,0 +1,926 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "axelar", + "client_id": "07-tendermint-160", + "connection_id": "connection-145" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-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" + }, + "chain_2": { + "chain_name": "celestia", + "client_id": "07-tendermint-9", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-187", + "connection_id": "connection-165" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-140", + "connection_id": "connection-58" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-127", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "coreum", + "client_id": "07-tendermint-7", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-120", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-622", + "connection_id": "connection-481" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-293", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-109", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-50", + "connection_id": "connection-31" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-69", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "fxcore", + "client_id": "07-tendermint-24", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-128", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "haqq", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-168", + "connection_id": "connection-150" + }, + "chain_2": { + "chain_name": "impacthub", + "client_id": "07-tendermint-54", + "connection_id": "connection-40" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-114", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-113", + "connection_id": "connection-93" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-84", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "jackal", + "client_id": "07-tendermint-69", + "connection_id": "connection-57" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-150", + "connection_id": "connection-97" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-11", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kyve", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-180", + "connection_id": "connection-158" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-101", + "connection_id": "connection-80" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-121", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-78", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-150", + "connection_id": "connection-135" + }, + "chain_2": { + "chain_name": "odin", + "client_id": "07-tendermint-66", + "connection_id": "connection-151" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1862", + "connection_id": "connection-1453" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-208", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-44", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-103", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-109", + "connection_id": "connection-96" + }, + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-13", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-72", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-75", + "connection_id": "connection-60" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-7", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-63", + "connection_id": "connection-44" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts b/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts new file mode 100644 index 000000000..368124543 --- /dev/null +++ b/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts @@ -0,0 +1,803 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-187", + "connection_id": "connection-165" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-140", + "connection_id": "connection-58" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-127", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "coreum", + "client_id": "07-tendermint-7", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-120", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-622", + "connection_id": "connection-481" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-293", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-109", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-50", + "connection_id": "connection-31" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-69", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "fxcore", + "client_id": "07-tendermint-24", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-128", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "haqq", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-168", + "connection_id": "connection-150" + }, + "chain_2": { + "chain_name": "impacthub", + "client_id": "07-tendermint-54", + "connection_id": "connection-40" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-114", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-113", + "connection_id": "connection-93" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-84", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "jackal", + "client_id": "07-tendermint-69", + "connection_id": "connection-57" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-150", + "connection_id": "connection-97" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-11", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kyve", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-180", + "connection_id": "connection-158" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-101", + "connection_id": "connection-80" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-121", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-78", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-150", + "connection_id": "connection-135" + }, + "chain_2": { + "chain_name": "odin", + "client_id": "07-tendermint-66", + "connection_id": "connection-151" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1862", + "connection_id": "connection-1453" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-208", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-44", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-103", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-109", + "connection_id": "connection-96" + }, + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-13", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-72", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-75", + "connection_id": "connection-60" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-7", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-63", + "connection_id": "connection-44" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/axelar/index.ts b/packages/chain-registry/src/mainnet/axelar/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/axelar/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/bandchain/assets.ts b/packages/chain-registry/src/mainnet/bandchain/assets.ts new file mode 100644 index 000000000..0cd4bdd57 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bandchain/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "bandchain", + "assets": [ + { + "description": "The native token of BandChain", + "denom_units": [ + { + "denom": "uband", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bandchain/chain.ts b/packages/chain-registry/src/mainnet/bandchain/chain.ts new file mode 100644 index 000000000..4a39ae423 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bandchain/chain.ts @@ -0,0 +1,218 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uband" + } + ] + }, + "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" + }, + "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": "https://rpc-bandchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://band-rpc.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://bandchain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://band.rpc.m.stavr.tech:443", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-band-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://rpc-band.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://band-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://bandprotocol-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://band-rpc.stake-town.com", + "provider": "StakeTown" + } + ], + "rest": [ + { + "address": "https://laozi1.bandchain.org/api", + "provider": "bandprotocol" + }, + { + "address": "https://api-bandchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://band-api.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://api-band.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://band.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://bandchain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://api-band-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://band-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://bandprotocol-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://band-api.stake-town.com", + "provider": "StakeTown" + } + ], + "grpc": [ + { + "address": "grpc-bandchain-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "bandchain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-band.cosmos-spaces.cloud:2240", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc-band-01.stakeflow.io:2502", + "provider": "Stakeflow" + }, + { + "address": "band-grpc.w3coins.io:22990", + "provider": "w3coins" + }, + { + "address": "http://band.grpc.m.stavr.tech:7803", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://grpc-band.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "band.grpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "band-grpc.stake-town.com:443", + "provider": "StakeTown" + } + ] + }, + "explorers": [ + { + "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": "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": "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": "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": "kjnodes Explorer", + "url": "https://explorer.kjnodes.com/band", + "tx_page": "https://explorer.kjnodes.com/band/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bandchain/ibc.ts b/packages/chain-registry/src/mainnet/bandchain/ibc.ts new file mode 100644 index 000000000..399a63f1f --- /dev/null +++ b/packages/chain-registry/src/mainnet/bandchain/ibc.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-96", + "port_id": "oracle" + }, + "chain_2": { + "channel_id": "channel-43", + "port_id": "bandoracleV1" + }, + "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" + }, + "chain_2": { + "chain_name": "coreum", + "client_id": "07-tendermint-33", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-159", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1743", + "connection_id": "connection-1345" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-148", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bandchain/ibc_chain1.ts b/packages/chain-registry/src/mainnet/bandchain/ibc_chain1.ts new file mode 100644 index 000000000..399a63f1f --- /dev/null +++ b/packages/chain-registry/src/mainnet/bandchain/ibc_chain1.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-96", + "port_id": "oracle" + }, + "chain_2": { + "channel_id": "channel-43", + "port_id": "bandoracleV1" + }, + "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" + }, + "chain_2": { + "chain_name": "coreum", + "client_id": "07-tendermint-33", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-159", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1743", + "connection_id": "connection-1345" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-148", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bandchain/index.ts b/packages/chain-registry/src/mainnet/bandchain/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bandchain/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/beezee/assets.ts b/packages/chain-registry/src/mainnet/beezee/assets.ts new file mode 100644 index 000000000..c3221f390 --- /dev/null +++ b/packages/chain-registry/src/mainnet/beezee/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "beezee", + "assets": [ + { + "description": "BeeZee native blockchain", + "denom_units": [ + { + "denom": "ubze", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/beezee/chain.ts b/packages/chain-registry/src/mainnet/beezee/chain.ts new file mode 100644 index 000000000..e36d3574b --- /dev/null +++ b/packages/chain-registry/src/mainnet/beezee/chain.ts @@ -0,0 +1,110 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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-1.getbze.com", + "provider": "AlphaTeam" + }, + { + "address": "https://rpc-2.getbze.com", + "provider": "AlphaTeam" + } + ], + "rest": [ + { + "address": "https://rest.getbze.com", + "provider": "AlphaTeam" + }, + { + "address": "https://rest-1.getbze.com", + "provider": "AlphaTeam" + }, + { + "address": "https://rest-2.getbze.com", + "provider": "AlphaTeam" + } + ], + "grpc": [ + { + "address": "grpc.getbze.com:9099", + "provider": "AlphaTeam" + }, + { + "address": "grpc-1.getbze.com:9099", + "provider": "AlphaTeam" + }, + { + "address": "grpc-2.getbze.com:9099", + "provider": "AlphaTeam" + } + ] + }, + "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://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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/beezee/ibc.ts b/packages/chain-registry/src/mainnet/beezee/ibc.ts new file mode 100644 index 000000000..106bc86a1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/beezee/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-340", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/beezee/ibc_chain1.ts b/packages/chain-registry/src/mainnet/beezee/ibc_chain1.ts new file mode 100644 index 000000000..106bc86a1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/beezee/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "beezee", + "client_id": "07-tendermint-2", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2154", + "connection_id": "connection-1672" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-340", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/beezee/index.ts b/packages/chain-registry/src/mainnet/beezee/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/beezee/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/bitcanna/assets.ts b/packages/chain-registry/src/mainnet/bitcanna/assets.ts new file mode 100644 index 000000000..57038be13 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitcanna/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "ubcna", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bitcanna/chain.ts b/packages/chain-registry/src/mainnet/bitcanna/chain.ts new file mode 100644 index 000000000..64e1ce150 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitcanna/chain.ts @@ -0,0 +1,383 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": "http://bcna.paranorm.pro/", + "provider": "ParanormalBrothers" + }, + { + "address": "https://bcna-rpc.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://bitcanna-rpc.panthea.eu", + "provider": "Panthea EU" + }, + { + "address": "https://rpc.bitcanna.sgtstake.com/", + "provider": "SGTstake" + }, + { + "address": "https://bitcanna.rpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" + }, + { + "address": "http://bitcanna.rpc.m.stavr.tech:21327", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-bcna.kjinc.io/", + "provider": "KJINC.io" + }, + { + "address": "https://mainnet-bitcanna-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://bitcanna.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://bitcanna-rpc.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://rpc.bitcanna-1.bitcanna.aviaone.com", + "provider": "AVIAONE 🟢" + }, + { + "address": "https://rpc.bitcanna-mainnet.hexnodes.co", + "provider": "Hexnodes" + }, + { + "address": "http://rpc.bitcanna.citizencosmos.space/", + "provider": "Citizen Web3" + }, + { + "address": "https://bitcanna-mainnet.rpc.l0vd.com/", + "provider": "L0vd.com" + }, + { + "address": "https://rpc-bitcanna-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://bitcanna-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc.bitcanna.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://bitcanna.nodejumper.io:443", + "provider": "NODEJUMPER" + }, + { + "address": "https://rpc.bitcanna.indonode.net/", + "provider": "Indonode" + }, + { + "address": "https://rpc-bitcanna.mms.team:443", + "provider": "MMS" + }, + { + "address": "http://65.108.142.81:26683", + "provider": "Stakely" + }, + { + "address": "http://93.115.25.15:26657", + "provider": "Stakely" + }, + { + "address": "https://bitcanna-rpc.validatornode.com", + "provider": "ValidatorNode" + }, + { + "address": "https://bcna.rpc.arcturian.tech/", + "provider": "Arcturian Tech" + }, + { + "address": "https://bitcanna-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc.bitcanna.io:443", + "provider": "bitcanna" + }, + { + "address": "bitcanna-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "bitcanna.grpc.m.stavr.tech:9081", + "provider": "🔥STAVR🔥" + }, + { + "address": "grpc.bitcanna-mainnet.hexnodes.co:27090", + "provider": "HexNodes" + }, + { + "address": "grpc.bitcanna-1.bitcanna.aviaone.com:9092", + "provider": "AVIAONE 🟢" + }, + { + "address": "bitcanna-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com" + }, + { + "address": "grpc-bitcanna-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "bitcanna.grpc.kjnodes.com:14290", + "provider": "kjnodes" + }, + { + "address": "bitcanna-grpc.polkachu.com:13090", + "provider": "Polkachu" + }, + { + "address": "grpc-bitcanna.mms.team:443", + "provider": "MMS" + }, + { + "address": "bitcanna.grpc.m.anode.team:443", + "provider": "AlxVoy ⚡ ANODE.TEAM" + }, + { + "address": "bitcanna-grpc.panthea.eu:16710", + "provider": "Panthea EU" + }, + { + "address": "https://grpc.bitcanna.indonode.net:11090", + "provider": "Indonode" + }, + { + "address": "bitcanna-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "grpc.bitcanna.safeblock.space:9090", + "provider": "Safe Block" + } + ], + "rest": [ + { + "address": "https://lcd.bitcanna.io", + "provider": "bitcanna" + }, + { + "address": "https://bitcanna-api.panthea.eu", + "provider": "Panthea EU" + }, + { + "address": "https://api.bitcanna.sgtstake.com/", + "provider": "SGTstake" + }, + { + "address": "https://bitcanna.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://bcna-api.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://bitcanna.api.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" + }, + { + "address": "https://api-bcna.kjinc.io/", + "provider": "KJINC.io" + }, + { + "address": "https://mainnet-bitcanna-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://bitcanna.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://bitcanna-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://bitcanna-api.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://api.bitcanna-1.bitcanna.aviaone.com/", + "provider": "AVIAONE 🟢" + }, + { + "address": "https://lcd.bitcanna-mainnet.hexnodes.co", + "provider": "Hexnodes" + }, + { + "address": "https://bitcanna-mainnet.api.l0vd.com", + "provider": "L0vd.com" + }, + { + "address": "https://api-bitcanna-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://bitcanna-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api.bitcanna.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://bitcanna.nodejumper.io:1317", + "provider": "NODEJUMPER" + }, + { + "address": "https://api-bitcanna.mms.team:443", + "provider": "MMS" + }, + { + "address": "http://65.108.142.81:1325", + "provider": "Stakely" + }, + { + "address": "http://93.115.25.15:1317", + "provider": "Stakely" + }, + { + "address": "https://bitcanna-api.validatornode.com", + "provider": "ValidatorNode" + }, + { + "address": "https://bcna.api.arcturian.tech/", + "provider": "Arcturian Tech" + }, + { + "address": "https://api.bitcanna.indonode.net/", + "provider": "Indonode" + }, + { + "address": "https://bitcanna-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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": "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bitcanna/ibc.ts b/packages/chain-registry/src/mainnet/bitcanna/ibc.ts new file mode 100644 index 000000000..9dc415268 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitcanna/ibc.ts @@ -0,0 +1,160 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-232", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-110", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1499", + "connection_id": "connection-1167" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bitcanna/ibc_chain1.ts b/packages/chain-registry/src/mainnet/bitcanna/ibc_chain1.ts new file mode 100644 index 000000000..31d983130 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitcanna/ibc_chain1.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-232", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-110", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1499", + "connection_id": "connection-1167" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bitcanna/index.ts b/packages/chain-registry/src/mainnet/bitcanna/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitcanna/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/bitsong/assets.ts b/packages/chain-registry/src/mainnet/bitsong/assets.ts new file mode 100644 index 000000000..c3b0d4c1c --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitsong/assets.ts @@ -0,0 +1,412 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "bitsong", + "assets": [ + { + "description": "BitSong Native Token", + "denom_units": [ + { + "denom": "ubtsg", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Adam Clay a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + } + ] + }, + { + "description": "Nicola Fasano a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" + } + ] + }, + { + "description": "Delta 9 a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" + } + ] + }, + { + "description": "FONTI a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" + } + ] + }, + { + "description": "BlackJack a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" + } + ] + }, + { + "description": "Rawanne a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" + } + ] + }, + { + "description": "Enmoda a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" + } + ] + }, + { + "description": "404Deep Records a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + } + ] + }, + { + "description": "N43 a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" + } + ] + }, + { + "description": "Puro Lobo a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" + } + ] + }, + { + "description": "Vibranium a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" + } + ] + }, + { + "description": "Karina a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" + } + ] + }, + { + "description": "Luca Testa a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png" + } + ] + }, + { + "description": "Carolina Marquez a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png" + } + ] + }, + { + "description": "L DON a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bitsong/chain.ts b/packages/chain-registry/src/mainnet/bitsong/chain.ts new file mode 100644 index 000000000..dd7518ece --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitsong/chain.ts @@ -0,0 +1,190 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ubtsg", + "fixed_min_gas_price": 0, + "low_gas_price": 3, + "average_gas_price": 10, + "high_gas_price": 20 + } + ] + }, + "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.", + "apis": { + "rpc": [ + { + "address": "https://rpc-bitsong-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc.explorebitsong.com", + "provider": "stake.systems" + }, + { + "address": "https://bitsong-rpc.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "https://rpc.bitsong.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://rpc.bitsong.quokkastake.io", + "provider": "🐹 Quokka Stake" + }, + { + "address": "https://bitsong-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-bitsong.starsquid.io", + "provider": "Starsquid" + }, + { + "address": "https://rpc-bitsong.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "http://bitsong.statesync.nodersteam.com:11657", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc.bitsong.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://bitsong.tdrsys.com:2053", + "provider": "TdrSys" + } + ], + "rest": [ + { + "address": "https://api-bitsong-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://lcd.explorebitsong.com/", + "provider": "stake.systems" + }, + { + "address": "https://bitsong-api.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "https://api.bitsong.quokkastake.io", + "provider": "🐹 Quokka Stake" + }, + { + "address": "http://bitsong.api.nodersteam.com:11017", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://bitsong-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-bitsong.starsquid.io", + "provider": "Starsquid" + }, + { + "address": "https://rest-bitsong.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://api.bitsong.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://bitsong.tdrsys.com", + "provider": "TdrSys" + } + ], + "grpc": [ + { + "address": "grpc-bitsong-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "bitsong-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "bitsong.grpc.nodersteam.com:9111/", + "provider": "[NODERS]TEAM" + }, + { + "address": "grpc.bitsong.safeblock.space:9090", + "provider": "Safe Block" + } + ] + }, + "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": "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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bitsong/ibc.ts b/packages/chain-registry/src/mainnet/bitsong/ibc.ts new file mode 100644 index 000000000..ebbcf6c01 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitsong/ibc.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-33", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1551", + "connection_id": "connection-1216" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-73", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bitsong/ibc_chain1.ts b/packages/chain-registry/src/mainnet/bitsong/ibc_chain1.ts new file mode 100644 index 000000000..a8eec197e --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitsong/ibc_chain1.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-33", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1551", + "connection_id": "connection-1216" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-73", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bitsong/index.ts b/packages/chain-registry/src/mainnet/bitsong/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bitsong/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/bluzelle/assets.ts b/packages/chain-registry/src/mainnet/bluzelle/assets.ts new file mode 100644 index 000000000..e450941bd --- /dev/null +++ b/packages/chain-registry/src/mainnet/bluzelle/assets.ts @@ -0,0 +1,101 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "bluzelle", + "assets": [ + { + "description": "The native token of Bluzelle", + "denom_units": [ + { + "denom": "ubnt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The ELT token of Bluzelle's Gamma 4 Gaming Ecosystem", + "denom_units": [ + { + "denom": "uelt", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "keywords": [ + "elt" + ], + "images": [ + { + "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": [ + { + "denom": "ug4", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "keywords": [ + "g4" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/g4.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bluzelle/chain.ts b/packages/chain-registry/src/mainnet/bluzelle/chain.ts new file mode 100644 index 000000000..76e39e90c --- /dev/null +++ b/packages/chain-registry/src/mainnet/bluzelle/chain.ts @@ -0,0 +1,142 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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://b.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" + } + ], + "rest": [ + { + "address": "https://a.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://bluzelle-api.genznodes.dev/", + "provider": "genznodes" + } + ], + "grpc": [ + { + "address": "a.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": "bluzelle-grpc.genznodes.dev:34090", + "provider": "genznodes" + }, + { + "address": "https://grpc-curium.nodine.id:443", + "provider": "Nodine.ID" + } + ] + }, + "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": "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": "Nodine.ID", + "url": "https://explorer.co.id/bluzelle", + "tx_page": "https://explorer.co.id/bluzelle/transaction/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bluzelle/ibc.ts b/packages/chain-registry/src/mainnet/bluzelle/ibc.ts new file mode 100644 index 000000000..0e4d019c1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bluzelle/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-763", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bluzelle/ibc_chain1.ts b/packages/chain-registry/src/mainnet/bluzelle/ibc_chain1.ts new file mode 100644 index 000000000..0e4d019c1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bluzelle/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bluzelle", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2754", + "connection_id": "connection-2273" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-763", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bluzelle/index.ts b/packages/chain-registry/src/mainnet/bluzelle/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bluzelle/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/bostrom/assets.ts b/packages/chain-registry/src/mainnet/bostrom/assets.ts new file mode 100644 index 000000000..71ecbea2a --- /dev/null +++ b/packages/chain-registry/src/mainnet/bostrom/assets.ts @@ -0,0 +1,153 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "bostrom", + "assets": [ + { + "description": "The staking token of Bostrom", + "denom_units": [ + { + "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" + }, + "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" + } + ] + }, + { + "description": "The liquid staking token of Bostrom", + "denom_units": [ + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg" + } + ] + }, + { + "description": "The resource token of Bostrom", + "denom_units": [ + { + "denom": "milliampere", + "exponent": 0, + "aliases": [ + "milliampere" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg" + } + ] + }, + { + "description": "The resource token of Bostrom", + "denom_units": [ + { + "denom": "millivolt", + "exponent": 0, + "aliases": [ + "millivolt" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg" + } + ] + }, + { + "description": "The staking token of Cyber", + "denom_units": [ + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bostrom/chain.ts b/packages/chain-registry/src/mainnet/bostrom/chain.ts new file mode 100644 index 000000000..823c3b1dd --- /dev/null +++ b/packages/chain-registry/src/mainnet/bostrom/chain.ts @@ -0,0 +1,110 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.cyber.posthuman.digital", + "provider": "posthuman" + }, + { + "address": "https://rpc-cyber-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc.cyber.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://lcd.bostrom.cybernode.ai", + "provider": "cybercongress" + }, + { + "address": "https://lcd.cyber.posthuman.digital", + "provider": "posthuman" + }, + { + "address": "https://api-cyber-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://lcd.cyber.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "grpc-cyber-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "https://grpc.cyber.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "explorers": [ + { + "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": "atomscan", + "url": "https://atomscan.com/bostrom", + "tx_page": "https://atomscan.com/bostrom/transactions/${txHash}", + "account_page": "https://atomscan.com/bostrom/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bostrom/ibc.ts b/packages/chain-registry/src/mainnet/bostrom/ibc.ts new file mode 100644 index 000000000..3c2acafd3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bostrom/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-95", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bostrom/ibc_chain1.ts b/packages/chain-registry/src/mainnet/bostrom/ibc_chain1.ts new file mode 100644 index 000000000..3c2acafd3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bostrom/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bostrom", + "client_id": "07-tendermint-5", + "connection_id": "connection-2" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1597", + "connection_id": "connection-1255" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-95", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/bostrom/index.ts b/packages/chain-registry/src/mainnet/bostrom/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/bostrom/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/canto/assets.ts b/packages/chain-registry/src/mainnet/canto/assets.ts new file mode 100644 index 000000000..b65af317c --- /dev/null +++ b/packages/chain-registry/src/mainnet/canto/assets.ts @@ -0,0 +1,80 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "acanto", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Tether USDt on Canto", + "denom_units": [ + { + "denom": "ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-13", + "path": "transfer/channel-13/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/canto/chain.ts b/packages/chain-registry/src/mainnet/canto/chain.ts new file mode 100644 index 000000000..b0702ec83 --- /dev/null +++ b/packages/chain-registry/src/mainnet/canto/chain.ts @@ -0,0 +1,174 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "acanto" + } + ] + }, + "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": [ + { + "address": "https://rpc.canto.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://canto-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc.canto.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://canto.gravitychain.io:26657", + "provider": "Althea" + }, + { + "address": "https://rpc-canto.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://canto-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "rest": [ + { + "address": "https://api.canto.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://canto-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api.canto.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://api-canto.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://canto-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "grpc": [ + { + "address": "canto-grpc.polkachu.com:15590", + "provider": "Polkachu" + }, + { + "address": "grpc.canto.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://grpc.canto.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "grpc-canto.cosmos-spaces.cloud:2280", + "provider": "Cosmos Spaces" + }, + { + "address": "https://canto.gravitychain.io:9090", + "provider": "Althea" + }, + { + "address": "canto-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://canto.neobase.one/", + "provider": "NeoBase" + }, + { + "address": "https://canto.evm.chandrastation.com", + "provider": "Chandra Station" + }, + { + "address": "https://canto.slingshot.finance", + "provider": "Slingshot" + }, + { + "address": "https://jsonrpc.canto.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://evm-rpc.canto.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://canto.gravitychain.io:8545", + "provider": "althea" + } + ] + }, + "explorers": [ + { + "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": "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": "TC Network", + "url": "https://explorer.tcnetwork.io/canto", + "tx_page": "https://explorer.tcnetwork.io/canto/transaction/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/canto/ibc.ts b/packages/chain-registry/src/mainnet/canto/ibc.ts new file mode 100644 index 000000000..8080d1b15 --- /dev/null +++ b/packages/chain-registry/src/mainnet/canto/ibc.ts @@ -0,0 +1,99 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-50", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2481", + "connection_id": "connection-2017" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-550", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/canto/ibc_chain1.ts b/packages/chain-registry/src/mainnet/canto/ibc_chain1.ts new file mode 100644 index 000000000..8080d1b15 --- /dev/null +++ b/packages/chain-registry/src/mainnet/canto/ibc_chain1.ts @@ -0,0 +1,99 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-50", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2481", + "connection_id": "connection-2017" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-550", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/canto/index.ts b/packages/chain-registry/src/mainnet/canto/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/canto/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/carbon/assets.ts b/packages/chain-registry/src/mainnet/carbon/assets.ts new file mode 100644 index 000000000..3e11cbd23 --- /dev/null +++ b/packages/chain-registry/src/mainnet/carbon/assets.ts @@ -0,0 +1,975 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "carbon", + "assets": [ + { + "description": "The native governance token of Carbon", + "denom_units": [ + { + "denom": "swth", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native stablecoin of Carbon", + "denom_units": [ + { + "denom": "usc", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "BNB token on Carbon", + "denom_units": [ + { + "denom": "bnb.1.6.773edb", + "exponent": 0 + }, + { + "denom": "bnb", + "exponent": 18, + "aliases": [ + "BNB" + ] + } + ], + "base": "bnb.1.6.773edb", + "name": "Binance Coin", + "display": "bnb", + "symbol": "BNB", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "wei", + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" + }, + "chain": { + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" + } + ] + }, + { + "description": "bNEO token on Carbon", + "denom_units": [ + { + "denom": "bneo.1.14.e2e5f6", + "exponent": 0 + }, + { + "denom": "bneo", + "exponent": 8, + "aliases": [ + "bNEO" + ] + } + ], + "base": "bneo.1.14.e2e5f6", + "name": "BurgerNEO", + "display": "bneo", + "symbol": "bNEO", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "neo", + "base_denom": "0x48c40d4666f93408be1bef038b6722404d9a4c2a", + "contract": "0x8eb3bdf5ed4ac1516d316c6b1b207a3cf5eb7567" + }, + "chain": { + "contract": "0x8eb3bdf5ed4ac1516d316c6b1b207a3cf5eb7567" + }, + "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" + }, + "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" + } + ] + }, + { + "description": "BUSD (BEP-20) token on Carbon", + "denom_units": [ + { + "denom": "busd.1.6.754a80", + "exponent": 0 + }, + { + "denom": "busd", + "exponent": 18, + "aliases": [ + "BUSD" + ] + } + ], + "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" + }, + "chain": { + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" + }, + "provider": "PolyNetwork" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + } + ] + }, + { + "description": "Carbon Wrapped GLP on Carbon", + "denom_units": [ + { + "denom": "cglp.1.19.1698d3", + "exponent": 0 + }, + { + "denom": "cglp", + "exponent": 18, + "aliases": [ + "CGLP" + ] + } + ], + "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" + }, + "chain": { + "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" + }, + "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" + }, + "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" + } + ] + }, + { + "description": "Grouped USD on Carbon", + "denom_units": [ + { + "denom": "cgt/1", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "ETH (Arbitrum) token on Carbon", + "denom_units": [ + { + "denom": "eth.1.19.c3b805", + "exponent": 0 + }, + { + "denom": "eth", + "exponent": 18, + "aliases": [ + "ETH" + ] + } + ], + "base": "eth.1.19.c3b805", + "name": "Ethereum (Arbitrum)", + "display": "eth", + "symbol": "ETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "arbitrum", + "base_denom": "wei", + "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" + }, + "chain": { + "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" + }, + "provider": "PolyNetwork" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + } + ] + }, + { + "description": "ETH (ERC20) token on Carbon", + "denom_units": [ + { + "denom": "eth.1.2.942d87", + "exponent": 0 + }, + { + "denom": "eth", + "exponent": 18, + "aliases": [ + "ETH" + ] + } + ], + "base": "eth.1.2.942d87", + "name": "Ethereum (ERC20)", + "display": "eth", + "symbol": "ETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei", + "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" + }, + "chain": { + "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" + }, + "provider": "PolyNetwork" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + } + ] + }, + { + "description": "STARS token on Carbon", + "denom_units": [ + { + "denom": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", + "exponent": 0 + }, + { + "denom": "stars", + "exponent": 6, + "aliases": [ + "STARS" + ] + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + } + ] + }, + { + "description": "LUNA token on Carbon", + "denom_units": [ + { + "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "exponent": 0 + }, + { + "denom": "luna", + "exponent": 6, + "aliases": [ + "LUNA" + ] + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" + } + ] + }, + { + "description": "STRD token on Carbon", + "denom_units": [ + { + "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "exponent": 0 + }, + { + "denom": "strd", + "exponent": 6, + "aliases": [ + "STRD" + ] + } + ], + "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" + }, + "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" + }, + "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" + } + ] + }, + { + "description": "EVMOS token on Carbon", + "denom_units": [ + { + "denom": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", + "exponent": 0 + }, + { + "denom": "evmos", + "exponent": 18, + "aliases": [ + "EVMOS" + ] + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" + } + ] + }, + { + "description": "IRIS token on Carbon", + "denom_units": [ + { + "denom": "ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118", + "exponent": 0 + }, + { + "denom": "iris", + "exponent": 6, + "aliases": [ + "IRIS" + ] + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" + } + ] + }, + { + "description": "KUJI token on Carbon", + "denom_units": [ + { + "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", + "exponent": 0 + }, + { + "denom": "kuji", + "exponent": 6, + "aliases": [ + "KUJI" + ] + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png" + } + ] + }, + { + "description": "stOSMO token on Carbon", + "denom_units": [ + { + "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", + "exponent": 0 + }, + { + "denom": "stosmo", + "exponent": 6, + "aliases": [ + "stOSMO" + ] + } + ], + "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" + }, + "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" + }, + "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" + } + ] + }, + { + "description": "CANTO token on Carbon", + "denom_units": [ + { + "denom": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", + "exponent": 0 + }, + { + "denom": "canto", + "exponent": 18, + "aliases": [ + "CANTO" + ] + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png" + } + ] + }, + { + "description": "Cosmos governance token on Carbon", + "denom_units": [ + { + "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", + "exponent": 0 + }, + { + "denom": "atom", + "exponent": 6, + "aliases": [ + "ATOM" + ] + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ] + }, + { + "description": "stATOM token on Carbon", + "denom_units": [ + { + "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "exponent": 0 + }, + { + "denom": "statom", + "exponent": 6, + "aliases": [ + "stATOM" + ] + } + ], + "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" + }, + "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" + }, + "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" + } + ] + }, + { + "description": "OSMO token on Carbon", + "denom_units": [ + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "exponent": 0 + }, + { + "denom": "osmo", + "exponent": 6, + "aliases": [ + "OSMO" + ] + } + ], + "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" + }, + "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" + }, + "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" + } + ] + }, + { + "description": "USDC (ERC20) token on Carbon", + "denom_units": [ + { + "denom": "usdc.1.2.343151", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 6, + "aliases": [ + "USDC" + ] + } + ], + "base": "usdc.1.2.343151", + "name": "Circle USD", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" + }, + "chain": { + "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" + }, + "provider": "PolyNetwork" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "USD Coin (BEP-20) token on Carbon", + "denom_units": [ + { + "denom": "usdc.1.6.53ff75", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 18, + "aliases": [ + "USDC" + ] + } + ], + "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" + }, + "chain": { + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" + }, + "provider": "PolyNetwork" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "ZIL token on Carbon", + "denom_units": [ + { + "denom": "zil.1.18.1a4a06", + "exponent": 0 + }, + { + "denom": "zil", + "exponent": 12, + "aliases": [ + "ZIL" + ] + } + ], + "base": "zil.1.18.1a4a06", + "name": "Zilliqa", + "display": "zil", + "symbol": "ZIL", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "zilliqa", + "base_denom": "wei", + "contract": "0xd73c6b871b4d0e130d64581993b745fc938a5be7" + }, + "chain": { + "contract": "0xd73c6b871b4d0e130d64581993b745fc938a5be7" + }, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/carbon/chain.ts b/packages/chain-registry/src/mainnet/carbon/chain.ts new file mode 100644 index 000000000..0611b9d3a --- /dev/null +++ b/packages/chain-registry/src/mainnet/carbon/chain.ts @@ -0,0 +1,359 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": "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": "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": "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.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/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/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/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/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/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": "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": "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": {}, + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://tm-api.carbon.network", + "provider": "switcheo-labs" + }, + { + "address": "https://carbon-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://carbon-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc.carbon.blockhunters.org", + "provider": "BlockHunters" + } + ], + "rest": [ + { + "address": "https://api.carbon.network", + "provider": "switcheo-labs" + }, + { + "address": "https://carbon-api.lavenderfive.com", + "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" + } + ] + }, + "explorers": [ + { + "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": "atomscan", + "url": "https://atomscan.com/carbon", + "tx_page": "https://atomscan.com/carbon/transactions/${txHash}", + "account_page": "https://atomscan.com/carbon/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/carbon/ibc.ts b/packages/chain-registry/src/mainnet/carbon/ibc.ts new file mode 100644 index 000000000..76bd47d2d --- /dev/null +++ b/packages/chain-registry/src/mainnet/carbon/ibc.ts @@ -0,0 +1,308 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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-6", + "connection_id": "connection-5" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-765", + "connection_id": "connection-554" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-342", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-73", + "connection_id": "connection-29" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-151", + "connection_id": "connection-114" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-60", + "connection_id": "connection-40" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1808", + "connection_id": "connection-1412" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-188", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-224", + "connection_id": "connection-158" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-40", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-66", + "connection_id": "connection-54" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + }, + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/carbon/ibc_chain1.ts b/packages/chain-registry/src/mainnet/carbon/ibc_chain1.ts new file mode 100644 index 000000000..524cf7c38 --- /dev/null +++ b/packages/chain-registry/src/mainnet/carbon/ibc_chain1.ts @@ -0,0 +1,276 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-342", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-73", + "connection_id": "connection-29" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-151", + "connection_id": "connection-114" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-60", + "connection_id": "connection-40" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1808", + "connection_id": "connection-1412" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-188", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-224", + "connection_id": "connection-158" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-40", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-66", + "connection_id": "connection-54" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + }, + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/carbon/index.ts b/packages/chain-registry/src/mainnet/carbon/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/carbon/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/celestia/assets.ts b/packages/chain-registry/src/mainnet/celestia/assets.ts new file mode 100644 index 000000000..760fc0fa1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/celestia/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "celestia", + "assets": [ + { + "description": "", + "denom_units": [ + { + "denom": "utia", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/celestia/chain.ts b/packages/chain-registry/src/mainnet/celestia/chain.ts new file mode 100644 index 000000000..7aa89591a --- /dev/null +++ b/packages/chain-registry/src/mainnet/celestia/chain.ts @@ -0,0 +1,253 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "utia" + } + ] + }, + "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" + }, + "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://celestia-rpc.mesa.newmetric.xyz", + "provider": "Newmetric" + }, + { + "address": "https://rpc.lunaroasis.net", + "provider": "Lunar Oasis" + }, + { + "address": "https://rpc.celestia.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://celestia-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-celestia-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://rpc-celestia.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "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.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://celestia.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://celestia-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-celestia.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://celestia-rpc.enigma-validator.com", + "provider": "Enigma" + }, + { + "address": "https://rpc-celestia.theamsolutions.info", + "provider": "AM Solutions" + } + ], + "rest": [ + { + "address": "https://public-celestia-lcd.numia.xyz", + "provider": "Numia" + }, + { + "address": "https://celestia-rest.mesa.newmetric.xyz", + "provider": "Newmetric" + }, + { + "address": "http://celestia.rpc.nodersteam.com:1617", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://api.lunaroasis.net", + "provider": "Lunar Oasis" + }, + { + "address": "https://api.celestia.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://celestia-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-celestia-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://api-celestia.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://celestia-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://celestia.rest.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://celestia.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://api-celestia.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://celestia-lcd.enigma-validator.com", + "provider": "Enigma" + }, + { + "address": "https://rest-celestia.theamsolutions.info", + "provider": "AM Solutions" + } + ], + "grpc": [ + { + "address": "https://grpc.celestia.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "celestia-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://celestia-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "celestia.grpc.nodersteam.com:9690", + "provider": "[NODERS]TEAM" + }, + { + "address": "grpc-celestia-01.stakeflow.io:15002", + "provider": "Stakeflow" + }, + { + "address": "grpc-celestia.cosmos-spaces.cloud:5190", + "provider": "Cosmos Spaces" + }, + { + "address": "celestia-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "celestia.grpc.stakin-nodes.com:443", + "provider": "Stakin" + }, + { + "address": "celestia.grpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "grpc-celestia.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "grpc-celestia.theamsolutions.info:443", + "provider": "AM Solutions" + } + ] + }, + "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": "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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/celestia/ibc.ts b/packages/chain-registry/src/mainnet/celestia/ibc.ts new file mode 100644 index 000000000..686aac9d9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/celestia/ibc.ts @@ -0,0 +1,283 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-35", + "connection_id": "connection-10" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-138", + "connection_id": "connection-55" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-28", + "connection_id": "connection-6" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-226", + "connection_id": "connection-210" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-152", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-49", + "connection_id": "connection-12" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-158", + "connection_id": "connection-198" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-140", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-29", + "connection_id": "connection-7" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-48", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-10", + "connection_id": "connection-2" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3012", + "connection_id": "connection-2503" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6994", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-52", + "connection_id": "connection-15" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-174", + "connection_id": "connection-131" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-91", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-0", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-137", + "connection_id": "connection-125" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-162", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-53", + "connection_id": "connection-16" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-391", + "connection_id": "connection-381" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-300", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts b/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts new file mode 100644 index 000000000..f9c01351d --- /dev/null +++ b/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts @@ -0,0 +1,252 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-28", + "connection_id": "connection-6" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-226", + "connection_id": "connection-210" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-152", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-49", + "connection_id": "connection-12" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-158", + "connection_id": "connection-198" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-140", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-29", + "connection_id": "connection-7" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-48", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-10", + "connection_id": "connection-2" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3012", + "connection_id": "connection-2503" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6994", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-52", + "connection_id": "connection-15" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-174", + "connection_id": "connection-131" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-91", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-0", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-137", + "connection_id": "connection-125" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-162", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-53", + "connection_id": "connection-16" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-391", + "connection_id": "connection-381" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-300", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/celestia/index.ts b/packages/chain-registry/src/mainnet/celestia/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/celestia/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/cerberus/assets.ts b/packages/chain-registry/src/mainnet/cerberus/assets.ts new file mode 100644 index 000000000..89b7c66ba --- /dev/null +++ b/packages/chain-registry/src/mainnet/cerberus/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "cerberus", + "assets": [ + { + "description": "The native token of Cerberus Chain", + "denom_units": [ + { + "denom": "ucrbrus", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cerberus/chain.ts b/packages/chain-registry/src/mainnet/cerberus/chain.ts new file mode 100644 index 000000000..012c26fbb --- /dev/null +++ b/packages/chain-registry/src/mainnet/cerberus/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "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" + }, + "apis": { + "rpc": [], + "rest": [], + "grpc": [ + { + "address": "grpc-cerberus-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "cerberus-grpc.polkachu.com:13890", + "provider": "Polkachu" + } + ] + }, + "explorers": [ + { + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cerberus/ibc.ts b/packages/chain-registry/src/mainnet/cerberus/ibc.ts new file mode 100644 index 000000000..ac3836ce5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cerberus/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-212", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cerberus/ibc_chain1.ts b/packages/chain-registry/src/mainnet/cerberus/ibc_chain1.ts new file mode 100644 index 000000000..ac3836ce5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cerberus/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cerberus", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1875", + "connection_id": "connection-1460" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-212", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cerberus/index.ts b/packages/chain-registry/src/mainnet/cerberus/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cerberus/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/chain4energy/assets.ts b/packages/chain-registry/src/mainnet/chain4energy/assets.ts new file mode 100644 index 000000000..dc8f99135 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chain4energy/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "chain4energy", + "assets": [ + { + "description": "The native token of Chain4Energy", + "denom_units": [ + { + "denom": "uc4e", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chain4energy/chain.ts b/packages/chain-registry/src/mainnet/chain4energy/chain.ts new file mode 100644 index 000000000..0e585da6a --- /dev/null +++ b/packages/chain-registry/src/mainnet/chain4energy/chain.ts @@ -0,0 +1,422 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://chain4energy-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "http://c4e.rpc.m.stavr.tech:17097", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-c4e.d-stake.xyz", + "provider": "D-Stake" + }, + { + "address": "https://c4e.rpc.bccnodes.com", + "provider": "BccNodes" + }, + { + "address": "https://rpc-m.c4e.hexnodes.co", + "provider": "Hexnodes" + }, + { + "address": "https://rpc-c4e.takeshi.team", + "provider": "TAKESHI" + }, + { + "address": "https://rpc-c4e.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://rpc.cros-nest.com/chain4energy", + "provider": "Crosnest" + }, + { + "address": "https://rpc.c4e.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://c4e-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://rpc.c4e.silentvalidator.com", + "provider": "silent" + }, + { + "address": "http://rpc.c4e.stakeup.tech", + "provider": "StakeUp" + }, + { + "address": "https://chain4energy-rpc.stakeangle.com", + "provider": "StakeAngle" + }, + { + "address": "https://c4e-rpc.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://rpc-c4e.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://c4e.rpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" + }, + { + "address": "https://c4e-rpc.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "http://185.245.182.192:46657", + "provider": "Meerlabs" + }, + { + "address": "http://89.117.58.109:26657", + "provider": "medes" + }, + { + "address": "http://c4e.rpc.node75.org:26957", + "provider": "Pro-nodes75" + }, + { + "address": "https://rpc-c4e.stakerun.com:443", + "provider": "StakeRun" + }, + { + "address": "http://164.68.125.243:26657", + "provider": "Smt Network" + }, + { + "address": "https://c4e-rpc.antrixy.org/", + "provider": "Antrix Validators" + }, + { + "address": "https://c4e.doubletop.tech/", + "provider": "DOUBLETOP" + }, + { + "address": "https://c4e-rpc.kalia.network:443", + "provider": "Kalia Network" + }, + { + "address": "https://c4e.rpc.skynodejs.net", + "provider": "skynodejs" + }, + { + "address": "http://38.242.220.64:16657", + "provider": "mahof" + }, + { + "address": "http://209.182.239.169:46657", + "provider": "SECARD" + }, + { + "address": "https://rpc.c4e.validatus.com:443", + "provider": "Validatus" + } + ], + "rest": [ + { + "address": "https://lcd.c4e.io/", + "provider": "C4E" + }, + { + "address": "https://api.c4e.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://chain4energy-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://c4e.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api-m.c4e.hexnodes.co", + "provider": "Hexnodes" + }, + { + "address": "https://api-c4e.takeshi.team", + "provider": "TAKESHI" + }, + { + "address": "https://api-c4e.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://rest.cros-nest.com/chain4energy", + "provider": "Crosnest" + }, + { + "address": "https://api.c4e.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://c4e-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://api.c4e.silentvalidator.com", + "provider": "silent" + }, + { + "address": "http://api.c4e.stakeup.tech", + "provider": "StakeUp" + }, + { + "address": "http://chain4energy-rpc.stakeangle.com:1317", + "provider": "StakeAngle" + }, + { + "address": "https://c4e-api.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://api-c4e.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://c4e.api.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" + }, + { + "address": "https://c4e-api.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "http://c4e.api.node75.org:1397", + "provider": "Pro-nodes75" + }, + { + "address": "https://lcd-c4e.stakerun.com:443", + "provider": "StakeRun" + }, + { + "address": "http://164.68.125.243:1319", + "provider": "Smt Network" + }, + { + "address": "https://c4e-rest.antrixy.org/", + "provider": "Antrix Validators" + }, + { + "address": "https://c4e-api.kalia.network:443", + "provider": "Kalia Network" + }, + { + "address": "https://c4e.api.skynodejs.net", + "provider": "skynodejs" + }, + { + "address": "http://38.242.220.64:11317", + "provider": "mahof" + }, + { + "address": "http://209.182.239.169:1417", + "provider": "SECARD" + }, + { + "address": "https://api.c4e.validatus.com:443", + "provider": "Validatus" + } + ], + "grpc": [ + { + "address": "grpc.c4e.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "chain4energy-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "c4e.grpc.bccnodes.com:443", + "provider": "BccNodes" + }, + { + "address": "grpc-c4e.takeshi.team:443", + "provider": "TAKESHI" + }, + { + "address": "grpc-c4e.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "http://c4e.grpc.m.stavr.tech:7029", + "provider": "🔥STAVR🔥" + }, + { + "address": "c4e-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "grpc.c4e.silentvalidator.com:443", + "provider": "silent" + }, + { + "address": "http://chain4energy-rpc.stakeangle.com:1317", + "provider": "StakeAngle" + }, + { + "address": "c4e-grpc.genznodes.dev:52090", + "provider": "genznodes" + }, + { + "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.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "http://185.245.182.192:1318", + "provider": "Meerlabs" + }, + { + "address": "grpc-c4e.stakerun.com:1190", + "provider": "StakeRun" + }, + { + "address": "https://c4e-grpc.antrixy.org/", + "provider": "Antirx Validators" + }, + { + "address": "https://c4e.doubletop.tech:443", + "provider": "DOUBLETOP" + }, + { + "address": "c4e-grpc.kalia.network:3090", + "provider": "Kalia Network" + }, + { + "address": "https://c4e.grpc.skynodejs.net", + "provider": "skynodejs" + }, + { + "address": "http://38.242.220.64:19090", + "provider": "mahof" + }, + { + "address": "http://209.182.239.169:9190", + "provider": "SECARD" + }, + { + "address": "https://grpc.c4e.validatus.com:443", + "provider": "Validatus" + } + ] + }, + "explorers": [ + { + "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.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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 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": "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": "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": "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}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chain4energy/index.ts b/packages/chain-registry/src/mainnet/chain4energy/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/chain4energy/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/chains.ts b/packages/chain-registry/src/mainnet/chains.ts new file mode 100644 index 000000000..cedbcb03f --- /dev/null +++ b/packages/chain-registry/src/mainnet/chains.ts @@ -0,0 +1,150 @@ +import { Chain } from '@chain-registry/types'; + +import * as _8ball from './8ball'; +import * as _acrechain from './acrechain'; +import * as _agoric from './agoric'; +import * as _aioz from './aioz'; +import * as _akash from './akash'; +import * as _andromeda from './andromeda'; +import * as _archway from './archway'; +import * as _arkh from './arkh'; +import * as _assetmantle from './assetmantle'; +import * as _aura from './aura'; +import * as _axelar from './axelar'; +import * as _bandchain from './bandchain'; +import * as _beezee from './beezee'; +import * as _bitcanna from './bitcanna'; +import * as _bitsong from './bitsong'; +import * as _bluzelle from './bluzelle'; +import * as _bostrom from './bostrom'; +import * as _canto from './canto'; +import * as _carbon from './carbon'; +import * as _celestia from './celestia'; +import * as _cerberus from './cerberus'; +import * as _chain4energy from './chain4energy'; +import * as _cheqd from './cheqd'; +import * as _chihuahua from './chihuahua'; +import * as _chimba from './chimba'; +import * as _chronicnetwork from './chronicnetwork'; +import * as _comdex from './comdex'; +import * as _commercionetwork from './commercionetwork'; +import * as _composable from './composable'; +import * as _conscious from './conscious'; +import * as _coreum from './coreum'; +import * as _cosmoshub from './cosmoshub'; +import * as _coss from './coss'; +import * as _crescent from './crescent'; +import * as _cronos from './cronos'; +import * as _cryptoorgchain from './cryptoorgchain'; +import * as _cudos from './cudos'; +import * as _decentr from './decentr'; +import * as _desmos from './desmos'; +import * as _dig from './dig'; +import * as _doravota from './doravota'; +import * as _dydx from './dydx'; +import * as _dyson from './dyson'; +import * as _echelon from './echelon'; +import * as _emoney from './emoney'; +import * as _empowerchain from './empowerchain'; +import * as _ethos from './ethos'; +import * as _evmos from './evmos'; +import * as _fetchhub from './fetchhub'; +import * as _firmachain from './firmachain'; +import * as _furya from './furya'; +import * as _fxcore from './fxcore'; +import * as _galaxy from './galaxy'; +import * as _gateway from './gateway'; +import * as _genesisl1 from './genesisl1'; +import * as _gitopia from './gitopia'; +import * as _gravitybridge from './gravitybridge'; +import * as _haqq from './haqq'; +import * as _highbury from './highbury'; +import * as _humans from './humans'; +import * as _idep from './idep'; +import * as _impacthub from './impacthub'; +import * as _imversed from './imversed'; +import * as _injective from './injective'; +import * as _irisnet from './irisnet'; +import * as _jackal from './jackal'; +import * as _juno from './juno'; +import * as _kava from './kava'; +import * as _kichain from './kichain'; +import * as _konstellation from './konstellation'; +import * as _kujira from './kujira'; +import * as _kyve from './kyve'; +import * as _lambda from './lambda'; +import * as _likecoin from './likecoin'; +import * as _logos from './logos'; +import * as _loyal from './loyal'; +import * as _lumenx from './lumenx'; +import * as _lumnetwork from './lumnetwork'; +import * as _mars from './mars'; +import * as _mayachain from './mayachain'; +import * as _medasdigital from './medasdigital'; +import * as _meme from './meme'; +import * as _microtick from './microtick'; +import * as _migaloo from './migaloo'; +import * as _mises from './mises'; +import * as _mun from './mun'; +import * as _mythos from './mythos'; +import * as _neutron from './neutron'; +import * as _nibiru from './nibiru'; +import * as _noble from './noble'; +import * as _nois from './nois'; +import * as _nolus from './nolus'; +import * as _nomic from './nomic'; +import * as _nyx from './nyx'; +import * as _octa from './octa'; +import * as _odin from './odin'; +import * as _okexchain from './okexchain'; +import * as _omniflixhub from './omniflixhub'; +import * as _onomy from './onomy'; +import * as _oraichain from './oraichain'; +import * as _osmosis from './osmosis'; +import * as _panacea from './panacea'; +import * as _passage from './passage'; +import * as _passage1 from './passage1'; +import * as _persistence from './persistence'; +import * as _planq from './planq'; +import * as _point from './point'; +import * as _provenance from './provenance'; +import * as _pundix from './pundix'; +import * as _quasar from './quasar'; +import * as _quicksilver from './quicksilver'; +import * as _qwoyn from './qwoyn'; +import * as _realio from './realio'; +import * as _rebus from './rebus'; +import * as _regen from './regen'; +import * as _rizon from './rizon'; +import * as _secretnetwork from './secretnetwork'; +import * as _sei from './sei'; +import * as _sentinel from './sentinel'; +import * as _sge from './sge'; +import * as _shareledger from './shareledger'; +import * as _shentu from './shentu'; +import * as _sifchain from './sifchain'; +import * as _six from './six'; +import * as _sommelier from './sommelier'; +import * as _source from './source'; +import * as _stafihub from './stafihub'; +import * as _stargaze from './stargaze'; +import * as _starname from './starname'; +import * as _stratos from './stratos'; +import * as _stride from './stride'; +import * as _tenet from './tenet'; +import * as _teritori from './teritori'; +import * as _terpnetwork from './terpnetwork'; +import * as _terra from './terra'; +import * as _terra2 from './terra2'; +import * as _tgrade from './tgrade'; +import * as _thorchain from './thorchain'; +import * as _umee from './umee'; +import * as _unification from './unification'; +import * as _ununifi from './ununifi'; +import * as _uptick from './uptick'; +import * as _vidulum from './vidulum'; +import * as _xpla from './xpla' + +const chains: Chain[] = [_8ball.chain,_acrechain.chain,_agoric.chain,_aioz.chain,_akash.chain,_andromeda.chain,_archway.chain,_arkh.chain,_assetmantle.chain,_aura.chain,_axelar.chain,_bandchain.chain,_beezee.chain,_bitcanna.chain,_bitsong.chain,_bluzelle.chain,_bostrom.chain,_canto.chain,_carbon.chain,_celestia.chain,_cerberus.chain,_chain4energy.chain,_cheqd.chain,_chihuahua.chain,_chimba.chain,_chronicnetwork.chain,_comdex.chain,_commercionetwork.chain,_composable.chain,_conscious.chain,_coreum.chain,_cosmoshub.chain,_coss.chain,_crescent.chain,_cronos.chain,_cryptoorgchain.chain,_cudos.chain,_decentr.chain,_desmos.chain,_dig.chain,_doravota.chain,_dydx.chain,_dyson.chain,_echelon.chain,_emoney.chain,_empowerchain.chain,_ethos.chain,_evmos.chain,_fetchhub.chain,_firmachain.chain,_furya.chain,_fxcore.chain,_galaxy.chain,_gateway.chain,_genesisl1.chain,_gitopia.chain,_gravitybridge.chain,_haqq.chain,_highbury.chain,_humans.chain,_idep.chain,_impacthub.chain,_imversed.chain,_injective.chain,_irisnet.chain,_jackal.chain,_juno.chain,_kava.chain,_kichain.chain,_konstellation.chain,_kujira.chain,_kyve.chain,_lambda.chain,_likecoin.chain,_logos.chain,_loyal.chain,_lumenx.chain,_lumnetwork.chain,_mars.chain,_mayachain.chain,_medasdigital.chain,_meme.chain,_microtick.chain,_migaloo.chain,_mises.chain,_mun.chain,_mythos.chain,_neutron.chain,_nibiru.chain,_noble.chain,_nois.chain,_nolus.chain,_nomic.chain,_nyx.chain,_octa.chain,_odin.chain,_okexchain.chain,_omniflixhub.chain,_onomy.chain,_oraichain.chain,_osmosis.chain,_panacea.chain,_passage.chain,_passage1.chain,_persistence.chain,_planq.chain,_point.chain,_provenance.chain,_pundix.chain,_quasar.chain,_quicksilver.chain,_qwoyn.chain,_realio.chain,_rebus.chain,_regen.chain,_rizon.chain,_secretnetwork.chain,_sei.chain,_sentinel.chain,_sge.chain,_shareledger.chain,_shentu.chain,_sifchain.chain,_six.chain,_sommelier.chain,_source.chain,_stafihub.chain,_stargaze.chain,_starname.chain,_stratos.chain,_stride.chain,_tenet.chain,_teritori.chain,_terpnetwork.chain,_terra.chain,_terra2.chain,_tgrade.chain,_thorchain.chain,_umee.chain,_unification.chain,_ununifi.chain,_uptick.chain,_vidulum.chain,_xpla.chain]; + +export default chains; diff --git a/packages/chain-registry/src/mainnet/cheqd/assets.ts b/packages/chain-registry/src/mainnet/cheqd/assets.ts new file mode 100644 index 000000000..e5a375755 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cheqd/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "cheqd", + "assets": [ + { + "description": "Native token for the cheqd network", + "denom_units": [ + { + "denom": "ncheq", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cheqd/chain.ts b/packages/chain-registry/src/mainnet/cheqd/chain.ts new file mode 100644 index 000000000..c16ab3894 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cheqd/chain.ts @@ -0,0 +1,169 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.46.10" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.cheqd.net", + "provider": "cheqd" + }, + { + "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.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc-cheqd.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://cheqd-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc-cheqd.blockval.io", + "provider": "Blockval" + } + ], + "rest": [ + { + "address": "https://api.cheqd.net", + "provider": "cheqd" + }, + { + "address": "https://cheqd-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" + }, + { + "address": "https://api-cheqd-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://cheqd-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://api.cheqd.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://lcd-cheqd.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api-cheqd.blockval.io", + "provider": "Blockval" + } + ], + "grpc": [ + { + "address": "grpc.cheqd.net:443", + "provider": "cheqd" + }, + { + "address": "cheqd-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "cheqd-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-cheqd-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "grpc.cheqd.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "grpc-cheqd.blockval.io:9290", + "provider": "Blockval" + } + ] + }, + "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": "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": "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://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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cheqd/ibc.ts b/packages/chain-registry/src/mainnet/cheqd/ibc.ts new file mode 100644 index 000000000..86383b0a8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cheqd/ibc.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1615", + "connection_id": "connection-1268" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-108", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-392", + "connection_id": "connection-382" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-301", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cheqd/ibc_chain1.ts b/packages/chain-registry/src/mainnet/cheqd/ibc_chain1.ts new file mode 100644 index 000000000..86383b0a8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cheqd/ibc_chain1.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1615", + "connection_id": "connection-1268" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-108", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-392", + "connection_id": "connection-382" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-301", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cheqd/index.ts b/packages/chain-registry/src/mainnet/cheqd/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cheqd/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/chihuahua/assets.ts b/packages/chain-registry/src/mainnet/chihuahua/assets.ts new file mode 100644 index 000000000..6f61ce543 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chihuahua/assets.ts @@ -0,0 +1,213 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "chihuahua", + "assets": [ + { + "description": "The native token of Chihuahua Chain", + "denom_units": [ + { + "denom": "uhuahua", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Puppy", + "denom_units": [ + { + "denom": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", + "exponent": 0 + }, + { + "denom": "puppy", + "exponent": 6 + } + ], + "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" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png" + } + }, + { + "description": "has a hat", + "denom_units": [ + { + "denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png" + } + ] + }, + { + "description": "Woof", + "denom_units": [ + { + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" + } + ] + }, + { + "description": "Tacos", + "denom_units": [ + { + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png" + } + ] + }, + { + "description": "Weed", + "denom_units": [ + { + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png" + } + ] + }, + { + "description": "Bulldog", + "denom_units": [ + { + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png" + } + ] + }, + { + "description": "CaneCorso", + "denom_units": [ + { + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chihuahua/chain.ts b/packages/chain-registry/src/mainnet/chihuahua/chain.ts new file mode 100644 index 000000000..aadf0c624 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chihuahua/chain.ts @@ -0,0 +1,178 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://chihuahua-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-chihuahua-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://chihuahua-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc.huahua.bh.rocks", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://chihuahua-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://rpc-chihuahua.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://chihuahua-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://chihuahua-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://api.chihuahua.wtf", + "provider": "Chihuahua" + }, + { + "address": "https://rest-chihuahua.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://api-chihuahua-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://chihuahua-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://chihuahua-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://chihuahua-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://api-chihuahua.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://chihuahua-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://chihuahua-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc-chihuahua-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "chihuahua-grpc.polkachu.com:12990", + "provider": "Polkachu" + }, + { + "address": "chihuahua-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc-chihuahua.cosmos-spaces.cloud:2290", + "provider": "Cosmos Spaces" + }, + { + "address": "chihuahua-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "chihuahua-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "explorers": [ + { + "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": "atomscan", + "url": "https://atomscan.com/chihuahua", + "tx_page": "https://atomscan.com/chihuahua/transactions/${txHash}", + "account_page": "https://atomscan.com/chihuahua/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chihuahua/ibc.ts b/packages/chain-registry/src/mainnet/chihuahua/ibc.ts new file mode 100644 index 000000000..3c1360b28 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chihuahua/ibc.ts @@ -0,0 +1,256 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-21", + "connection_id": "connection-21" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-76", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-77", + "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" + }, + "chain_2": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-5", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "chihuahua", + "client_id": "07-tendermint-45", + "connection_id": "connection-25" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1666", + "connection_id": "connection-1278" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-73", + "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" + }, + "chain_2": { + "channel_id": "channel-11348", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-27", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chihuahua/ibc_chain1.ts b/packages/chain-registry/src/mainnet/chihuahua/ibc_chain1.ts new file mode 100644 index 000000000..3c1360b28 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chihuahua/ibc_chain1.ts @@ -0,0 +1,256 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-21", + "connection_id": "connection-21" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-76", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-77", + "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" + }, + "chain_2": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-5", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "chihuahua", + "client_id": "07-tendermint-45", + "connection_id": "connection-25" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1666", + "connection_id": "connection-1278" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-73", + "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" + }, + "chain_2": { + "channel_id": "channel-11348", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-27", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chihuahua/index.ts b/packages/chain-registry/src/mainnet/chihuahua/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chihuahua/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/chimba/assets.ts b/packages/chain-registry/src/mainnet/chimba/assets.ts new file mode 100644 index 000000000..5f8599997 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chimba/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "chimba", + "assets": [ + { + "description": "The first blokchain in colombia", + "denom_units": [ + { + "denom": "ucmba", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chimba/chain.ts b/packages/chain-registry/src/mainnet/chimba/chain.ts new file mode 100644 index 000000000..bd2db5f98 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chimba/chain.ts @@ -0,0 +1,65 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "chimba" + } + ] + }, + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.mainnet.chimba.ooo", + "provider": "chimba" + } + ], + "rest": [ + { + "address": "https://mainnet.chimba.ooo", + "provider": "chimba" + } + ] + }, + "explorers": [ + { + "kind": "bigdipper", + "url": "https://explorer.chimba.ooo/", + "tx_page": "https://explorer.chimba.ooo/transactions/${txHash}" + } + ], + "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" + } + ], + "slip44": 118 +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chimba/index.ts b/packages/chain-registry/src/mainnet/chimba/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/chimba/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/chronicnetwork/assets.ts b/packages/chain-registry/src/mainnet/chronicnetwork/assets.ts new file mode 100644 index 000000000..a87b2806d --- /dev/null +++ b/packages/chain-registry/src/mainnet/chronicnetwork/assets.ts @@ -0,0 +1,60 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "ucht", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "cht", + "images": [ + { + "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": [ + { + "denom": "ucgas", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "cgas", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cgas.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chronicnetwork/chain.ts b/packages/chain-registry/src/mainnet/chronicnetwork/chain.ts new file mode 100644 index 000000000..d6aae4619 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chronicnetwork/chain.ts @@ -0,0 +1,59 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-chronic.zenchainlabs.io/", + "provider": "ZenChainLabs" + } + ], + "rest": [ + { + "address": "https://api-chronic.zenchainlabs.io/", + "provider": "ZenChainLabs" + } + ], + "grpc": [] + }, + "explorers": [ + { + "kind": "skynetexplorers", + "url": "https://www.skynetexplorers.com/chronic-token", + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/chronicnetwork/index.ts b/packages/chain-registry/src/mainnet/chronicnetwork/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/chronicnetwork/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/comdex/assets.ts b/packages/chain-registry/src/mainnet/comdex/assets.ts new file mode 100644 index 000000000..48068d9b8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/comdex/assets.ts @@ -0,0 +1,92 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "comdex", + "assets": [ + { + "description": "Native Token of Comdex Protocol", + "denom_units": [ + { + "denom": "ucmdx", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Governance Token of Harbor protocol on Comdex network", + "denom_units": [ + { + "denom": "uharbor", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Stable Token of Harbor protocol on Comdex network", + "denom_units": [ + { + "denom": "ucmst", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/comdex/chain.ts b/packages/chain-registry/src/mainnet/comdex/chain.ts new file mode 100644 index 000000000..8686e6252 --- /dev/null +++ b/packages/chain-registry/src/mainnet/comdex/chain.ts @@ -0,0 +1,241 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ucmdx" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "v0.47.5", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.41.0" + }, + "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": [ + { + "address": "https://rpc.comdex.one", + "provider": "comdex" + }, + { + "address": "https://comdex-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc.comdex.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://comdex-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-comdex.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://rpc-comdex.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://comdex-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://comdex-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://comdex-rpc.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://comdex-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rpc-comdex-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://comdex-rpc.validatornode.com", + "provider": "ValidatorNode" + } + ], + "rest": [ + { + "address": "https://rest.comdex.one", + "provider": "comdex" + }, + { + "address": "https://api.comdex.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://comdex-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://comdex-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-comdex.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://comdex-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://lcd-comdex.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://comdex-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://comdex-rest.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://comdex-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://api-comdex-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://comdex-api.validatornode.com", + "provider": "ValidatorNode" + } + ], + "grpc": [ + { + "address": "grpc-comdex-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "comdex.grpcui.chaintools.host:443", + "provider": "ChainTools" + }, + { + "address": "comdex-grpc.polkachu.com:13190", + "provider": "Polkachu" + }, + { + "address": "grpc-comdex.cosmos-spaces.cloud:2300", + "provider": "Cosmos Spaces" + }, + { + "address": "comdex-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "comdex-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "comdex-grpc.w3coins.io:13190", + "provider": "w3coins" + }, + { + "address": "comdex-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "grpc-comdex-01.stakeflow.io:10002", + "provider": "Stakeflow" + }, + { + "address": "comdex-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + } + ] + }, + "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": "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": "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": "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": "ValidatorNode", + "url": "https://explorer.validatornode.com/comdex", + "tx_page": "https://explorer.validatornode.com/comdex/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/comdex/ibc.ts b/packages/chain-registry/src/mainnet/comdex/ibc.ts new file mode 100644 index 000000000..c7461254e --- /dev/null +++ b/packages/chain-registry/src/mainnet/comdex/ibc.ts @@ -0,0 +1,317 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-96", + "port_id": "oracle" + }, + "chain_2": { + "channel_id": "channel-43", + "port_id": "bandoracleV1" + }, + "ordering": "unordered", + "version": "bandchain-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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-32", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-92", + "connection_id": "connection-55" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-15", + "connection_id": "connection-20" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-25", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1587", + "connection_id": "connection-1243" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-94", + "connection_id": "connection-75" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-125", + "connection_id": "connection-95" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-41", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-45", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-70", + "connection_id": "connection-59" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/comdex/ibc_chain1.ts b/packages/chain-registry/src/mainnet/comdex/ibc_chain1.ts new file mode 100644 index 000000000..28b42245c --- /dev/null +++ b/packages/chain-registry/src/mainnet/comdex/ibc_chain1.ts @@ -0,0 +1,286 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-92", + "connection_id": "connection-55" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-15", + "connection_id": "connection-20" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-25", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1587", + "connection_id": "connection-1243" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-94", + "connection_id": "connection-75" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-125", + "connection_id": "connection-95" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-41", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-45", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-70", + "connection_id": "connection-59" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/comdex/index.ts b/packages/chain-registry/src/mainnet/comdex/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/comdex/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/commercionetwork/assets.ts b/packages/chain-registry/src/mainnet/commercionetwork/assets.ts new file mode 100644 index 000000000..2e0d2009e --- /dev/null +++ b/packages/chain-registry/src/mainnet/commercionetwork/assets.ts @@ -0,0 +1,66 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "commercionetwork", + "assets": [ + { + "description": "The native token of Commercio.network", + "denom_units": [ + { + "denom": "ucommercio", + "exponent": 0, + "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" + }, + "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" + } + ] + }, + { + "description": "The cash credit token of Commercio.network", + "denom_units": [ + { + "denom": "uccc", + "exponent": 0, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/commercionetwork/chain.ts b/packages/chain-registry/src/mainnet/commercionetwork/chain.ts new file mode 100644 index 000000000..561124eda --- /dev/null +++ b/packages/chain-registry/src/mainnet/commercionetwork/chain.ts @@ -0,0 +1,54 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": [ + { + "address": "https://rpc-mainnet.commercio.network" + } + ], + "rest": [ + { + "address": "https://lcd-mainnet.commercio.network" + } + ] + }, + "explorers": [ + { + "kind": "almerico", + "url": "https://mainnet.commercio.network", + "tx_page": "https://mainnet.commercio.network/transactions/detail/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/commercionetwork/index.ts b/packages/chain-registry/src/mainnet/commercionetwork/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/commercionetwork/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/composable/assets.ts b/packages/chain-registry/src/mainnet/composable/assets.ts new file mode 100644 index 000000000..fd9343a31 --- /dev/null +++ b/packages/chain-registry/src/mainnet/composable/assets.ts @@ -0,0 +1,185 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "composable", + "assets": [ + { + "description": "The native staking and governance token of Composable.", + "denom_units": [ + { + "denom": "ppica", + "exponent": 0 + }, + { + "denom": "pica", + "exponent": 12 + } + ], + "base": "ppica", + "name": "Pica", + "display": "pica", + "symbol": "PICA", + "coingecko_id": "picasso", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "picasso", + "base_denom": "ppica" + }, + "provider": "Composable Finance" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "picasso", + "base_denom": "ppica" + }, + "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": [ + { + "denom": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9", + "exponent": 0, + "aliases": [ + "4" + ] + }, + { + "denom": "ksm", + "exponent": 12 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/4" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "picasso", + "base_denom": "4" + }, + "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": [ + { + "denom": "ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366", + "exponent": 0, + "aliases": [ + "79228162514264337593543950342" + ] + }, + { + "denom": "dot", + "exponent": 10 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/transfer/channel-15/79228162514264337593543950342" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "picasso", + "base_denom": "79228162514264337593543950342" + }, + "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": [ + { + "denom": "ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265", + "exponent": 0, + "aliases": [ + "130" + ] + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/130" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "picasso", + "base_denom": "130" + } + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/composable/chain.ts b/packages/chain-registry/src/mainnet/composable/chain.ts new file mode 100644 index 000000000..3cf2cb2a9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/composable/chain.ts @@ -0,0 +1,224 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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.", + "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://rpc-centauri.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://composable-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://composable-rpc.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://rpc-composable.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://composable-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://composable.rpc.stakevillage.net:443", + "provider": "Stake Village" + }, + { + "address": "https://composable-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://rpc.centauri.bronbro.io:443", + "provider": "Bro_n_Bro" + }, + { + "address": "https://composable.rpc.moonbridge.team", + "provider": "Moonbridge" + } + ], + "rest": [ + { + "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-api.cogwheel.zone:443", + "provider": "Cogwheel" + }, + { + "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.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://lcd-composable.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://composable-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://composable.api.stakevillage.net", + "provider": "Stake Village" + }, + { + "address": "https://composable-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://lcd.centauri.bronbro.io:443", + "provider": "Bro_n_Bro" + }, + { + "address": "https://composable.api.moonbridge.team", + "provider": "Moonbridge" + } + ], + "grpc": [ + { + "address": "https://grpc-composable-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "grpc.composable.nodestake.top:9090", + "provider": "NodeStake" + }, + { + "address": "composable-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-centauri.cosmos-spaces.cloud:1120", + "provider": "Cosmos Spaces" + }, + { + "address": "https://composable-grpc.cogwheel.zone:443", + "provider": "Cogwheel" + }, + { + "address": "https://composable-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "composable-grpc.genznodes.dev:53090", + "provider": "genznodes" + }, + { + "address": "composable-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "grpc-composable.vinjan.xyz:36090", + "provider": "vinjan" + }, + { + "address": "composable.grpc.skynodejs.net", + "provider": "skynodejs" + }, + { + "address": "composable.grpc.stakevillage.net:16190", + "provider": "Stake Village" + }, + { + "address": "composable-rpc.stakeandrelax.net:22290", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://grpc.centauri.bronbro.io:443", + "provider": "Bro_n_Bro" + }, + { + "address": "https://composable.grpc.moonbridge.team", + "provider": "Moonbridge" + } + ] + }, + "explorers": [ + { + "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": "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": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/composable/ibc.ts b/packages/chain-registry/src/mainnet/composable/ibc.ts new file mode 100644 index 000000000..382ddcbff --- /dev/null +++ b/packages/chain-registry/src/mainnet/composable/ibc.ts @@ -0,0 +1,553 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-55", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-140", + "connection_id": "connection-58" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-127", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics-20", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-35", + "connection_id": "connection-10" + }, + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-138", + "connection_id": "connection-55" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1150", + "connection_id": "connection-871" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-617", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-112", + "connection_id": "connection-98" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-111", + "connection_id": "connection-66" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-207", + "connection_id": "connection-191" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-145", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-382", + "connection_id": "connection-376" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-280", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-147", + "connection_id": "connection-112" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-101", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-29", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2846", + "connection_id": "connection-2358" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1279", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "picasso", + "client_id": "07-tendermint-32", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-78", + "connection_id": "connection-53" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-166", + "connection_id": "connection-116" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-80", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-126", + "connection_id": "connection-116" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-134", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/composable/ibc_chain1.ts b/packages/chain-registry/src/mainnet/composable/ibc_chain1.ts new file mode 100644 index 000000000..8afd7fca8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/composable/ibc_chain1.ts @@ -0,0 +1,429 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-617", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-112", + "connection_id": "connection-98" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-111", + "connection_id": "connection-66" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-207", + "connection_id": "connection-191" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-145", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-382", + "connection_id": "connection-376" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-280", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-147", + "connection_id": "connection-112" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-101", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-29", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2846", + "connection_id": "connection-2358" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1279", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "picasso", + "client_id": "07-tendermint-32", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-78", + "connection_id": "connection-53" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-166", + "connection_id": "connection-116" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-80", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-126", + "connection_id": "connection-116" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-134", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/composable/index.ts b/packages/chain-registry/src/mainnet/composable/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/composable/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/conscious/assets.ts b/packages/chain-registry/src/mainnet/conscious/assets.ts new file mode 100644 index 000000000..d00fecd50 --- /dev/null +++ b/packages/chain-registry/src/mainnet/conscious/assets.ts @@ -0,0 +1,30 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "acvnt", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "consciousdao" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/conscious/chain.ts b/packages/chain-registry/src/mainnet/conscious/chain.ts new file mode 100644 index 000000000..88e70b6f9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/conscious/chain.ts @@ -0,0 +1,75 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "acvnt" + } + ] + }, + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.cvn.io/", + "provider": "cvn.io" + } + ], + "rest": [ + { + "address": "https://api.consciousdao.com", + "provider": "consciousdao.com" + } + ], + "grpc": [ + { + "address": "https://rest.consciousdao.com", + "provider": "consciousdao.com" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://node.cvn.io/", + "provider": "cvn" + }, + { + "address": "https://node.consciousdao.io/", + "provider": "consciousdao" + } + ] + }, + "explorers": [ + { + "kind": "blockscout", + "url": "https://explore.consciousdao.com/", + "tx_page": "https://explore.consciousdao.com/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/conscious/index.ts b/packages/chain-registry/src/mainnet/conscious/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/conscious/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/coreum/assets.ts b/packages/chain-registry/src/mainnet/coreum/assets.ts new file mode 100644 index 000000000..3e989acec --- /dev/null +++ b/packages/chain-registry/src/mainnet/coreum/assets.ts @@ -0,0 +1,43 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "coreum", + "assets": [ + { + "description": "The native token of Coreum", + "denom_units": [ + { + "denom": "ucore", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/coreum/chain.ts b/packages/chain-registry/src/mainnet/coreum/chain.ts new file mode 100644 index 000000000..9013ab30d --- /dev/null +++ b/packages/chain-registry/src/mainnet/coreum/chain.ts @@ -0,0 +1,200 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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", + "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" + }, + "apis": { + "rpc": [ + { + "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-curium.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://coreum.rpc.silknodes.io", + "provider": "Silk Nodes" + }, + { + "address": "https://coreum-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rpc.mainnet.solonation.cf", + "provider": "#SoloNation" + }, + { + "address": "https://coreum-rpc.genznodes.dev", + "provider": "genznodes" + } + ], + "grpc": [ + { + "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-curium.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": "coreum-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "coreum-grpc.genznodes.dev:35090", + "provider": "genznodes" + } + ], + "rest": [ + { + "address": "https://rest-coreum.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://coreum.api.silknodes.io", + "provider": "Silk Nodes" + }, + { + "address": "https://full-node.mainnet-1.coreum.dev:1317", + "provider": "Coreum" + }, + { + "address": "https://coreum-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://api.mainnet.solonation.cf", + "provider": "#SoloNation" + }, + { + "address": "https://coreum-api.genznodes.dev", + "provider": "genznodes" + } + ] + }, + "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": "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": "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": "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" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/coreum/ibc.ts b/packages/chain-registry/src/mainnet/coreum/ibc.ts new file mode 100644 index 000000000..13fe72642 --- /dev/null +++ b/packages/chain-registry/src/mainnet/coreum/ibc.ts @@ -0,0 +1,408 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-120", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-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" + }, + "chain_2": { + "chain_name": "coreum", + "client_id": "07-tendermint-33", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-159", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1162", + "connection_id": "connection-884" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-660", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-12", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "dydx", + "client_id": "07-tendermint-14", + "connection_id": "connection-20" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-117", + "connection_id": "connection-71" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-421", + "connection_id": "connection-399" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-142", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-160", + "connection_id": "connection-200" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-142", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-163", + "connection_id": "connection-126" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-71", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2929", + "connection_id": "connection-2426" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2188", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-186", + "connection_id": "connection-138" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-101", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-47", + "connection_id": "connection-79" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/coreum/ibc_chain1.ts b/packages/chain-registry/src/mainnet/coreum/ibc_chain1.ts new file mode 100644 index 000000000..52143d7e7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/coreum/ibc_chain1.ts @@ -0,0 +1,346 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-660", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-12", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "dydx", + "client_id": "07-tendermint-14", + "connection_id": "connection-20" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-117", + "connection_id": "connection-71" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-421", + "connection_id": "connection-399" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-142", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-160", + "connection_id": "connection-200" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-142", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-163", + "connection_id": "connection-126" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-71", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2929", + "connection_id": "connection-2426" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2188", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-186", + "connection_id": "connection-138" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-101", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-47", + "connection_id": "connection-79" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/coreum/index.ts b/packages/chain-registry/src/mainnet/coreum/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/coreum/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/cosmoshub/assets.ts b/packages/chain-registry/src/mainnet/cosmoshub/assets.ts new file mode 100644 index 000000000..495473d53 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cosmoshub/assets.ts @@ -0,0 +1,125 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "cosmoshub", + "assets": [ + { + "description": "The native staking and governance token of the Cosmos Hub.", + "denom_units": [ + { + "denom": "uatom", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Tether USDt on the Cosmos Hub", + "denom_units": [ + { + "denom": "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-277", + "path": "transfer/channel-277/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + }, + { + "description": "FX on Cosmos Hub", + "denom_units": [ + { + "denom": "ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729", + "exponent": 0, + "aliases": [ + "FX" + ] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-585", + "path": "transfer/channel-585/FX" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "fxcore", + "base_denom": "FX" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cosmoshub/chain.ts b/packages/chain-registry/src/mainnet/cosmoshub/chain.ts new file mode 100644 index 000000000..209fbb953 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cosmoshub/chain.ts @@ -0,0 +1,437 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://cosmos-rpc.quickapi.com:443", + "provider": "Chainlayer" + }, + { + "address": "https://cosmos-rpc.onivalidator.com", + "provider": "Oni Validator ⛩️" + }, + { + "address": "https://rpc-cosmoshub.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://cosmoshub-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc.cosmoshub.strange.love", + "provider": "strangelove-ventures" + }, + { + "address": "https://rpc-cosmoshub.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://rpc-cosmoshub.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://rpc-cosmoshub.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://cosmos-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://cosmos-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://rpc-cosmoshub-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc-cosmoshub.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://rpc.cosmos.dragonstake.io", + "provider": "DragonStake" + }, + { + "address": "https://cosmoshub.rpc.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://cosmos-rpc.icycro.org", + "provider": "IcyCRO 🧊" + }, + { + "address": "https://rpc.cosmos.bh.rocks", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://cosmos-rpc.rockrpc.net", + "provider": "RockawayX Infra" + }, + { + "address": "http://rpc-cosmoshub.freshstaking.com:26657", + "provider": "FreshSTAKING" + }, + { + "address": "https://cosmos-rpc.easy2stake.com/", + "provider": "Easy 2 Stake" + }, + { + "address": "https://rpc.cosmos.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://cosmos.rpc.silknodes.io", + "provider": "Silk Nodes" + }, + { + "address": "https://cosmos-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://cosmoshub.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc-cosmoshub.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://rpc-cosmos-hub-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://cosmos-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://cosmos-rpc.enigma-validator.com", + "provider": "Enigma" + }, + { + "address": "https://rpc-cosmoshub.mms.team", + "provider": "MMS" + }, + { + "address": "https://cosmos-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://community.nuxian-node.ch:6797/gaia/trpc", + "provider": "PRO Delegators" + }, + { + "address": "https://cosmos-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://cosmoshub-rpc.cosmosrescue.dev", + "provider": "cosmosrescue" + }, + { + "address": "https://cosmos-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + } + ], + "rest": [ + { + "address": "https://lcd-cosmoshub.blockapsis.com", + "provider": "chainapsis" + }, + { + "address": "https://cosmos-lcd.quickapi.com:443", + "provider": "Chainlayer" + }, + { + "address": "https://rest-cosmoshub.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://cosmoshub-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-cosmoshub.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://api-cosmoshub.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://api-cosmoshub-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://cosmos-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://lcd.cosmos.dragonstake.io", + "provider": "DragonStake" + }, + { + "address": "https://cosmoshub.rest.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://rest-cosmoshub.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://rest-cosmoshub.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://lcd-cosmoshub.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://cosmos-lcd.easy2stake.com", + "provider": "Easy 2 Stake" + }, + { + "address": "https://api.cosmos.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://cosmos.api.silknodes.io", + "provider": "Silk Nodes" + }, + { + "address": "https://cosmos-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://cosmoshub.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://api-cosmos-hub-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://cosmos-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://api-cosmoshub.mms.team", + "provider": "MMS" + }, + { + "address": "https://cosmos-api.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://community.nuxian-node.ch:6797/gaia/crpc", + "provider": "PRO Delegators" + }, + { + "address": "https://cosmos-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://cosmoshub-mainnet.api.l0vd.com", + "provider": "L0vd.com ❤️" + }, + { + "address": "https://cosmos-lcd.enigma-validator.com", + "provider": "Enigma" + }, + { + "address": "https://cosmoshub-api.cosmosrescue.dev", + "provider": "cosmosrescue" + }, + { + "address": "https://cosmos-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + } + ], + "grpc": [ + { + "address": "cosmoshub-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc-cosmoshub-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "cosmos-grpc.polkachu.com:14990", + "provider": "Polkachu" + }, + { + "address": "grpc.cosmos.interbloc.org:443", + "provider": "Interbloc" + }, + { + "address": "services.staketab.com:9030", + "provider": "Staketab" + }, + { + "address": "grpc.cosmos.dragonstake.io:443", + "provider": "DragonStake" + }, + { + "address": "cosmoshub.grpc.stakin-nodes.com:443", + "provider": "Stakin" + }, + { + "address": "https://grpc.cosmos.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "cosmos-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "grpc-cosmoshub.cosmos-spaces.cloud:3910", + "provider": "Cosmos Spaces" + }, + { + "address": "cosmoshub.grpc.kjnodes.com:11390", + "provider": "kjnodes" + }, + { + "address": "grpc-cosmos-hub-01.stakeflow.io:9090", + "provider": "Stakeflow" + }, + { + "address": "grpc-cosmoshub.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "cosmos-grpc.w3coins.io:14990", + "provider": "w3coins" + }, + { + "address": "grpc-cosmoshub.mms.team:443", + "provider": "MMS" + }, + { + "address": "cosmos-grpc.tienthuattoan.ventures:9090", + "provider": "TienThuatToan" + }, + { + "address": "cosmoshub-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com ❤️" + }, + { + "address": "https://grpc-cosmos.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "cosmos-grpc.stakeandrelax.net:14990", + "provider": "Stake&Relax 🦥" + } + ] + }, + "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": "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": "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": "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": "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": "Inbloc", + "url": "https://inbloc.org", + "tx_page": "https://inbloc.org/transactions/${txHash}", + "account_page": "https://inbloc.org/account/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cosmoshub/ibc.ts b/packages/chain-registry/src/mainnet/cosmoshub/ibc.ts new file mode 100644 index 000000000..947302d53 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cosmoshub/ibc.ts @@ -0,0 +1,1516 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-457", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-927", + "connection_id": "connection-649" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-405", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1121", + "connection_id": "connection-808" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-567", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-623", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-646", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-622", + "connection_id": "connection-481" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-293", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-490", + "connection_id": "connection-399" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-232", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-342", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-617", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1162", + "connection_id": "connection-884" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-660", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-326", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cryptoorgchain", + "client_id": "07-tendermint-735", + "connection_id": "connection-220" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-187", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-14", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-750", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "emoney", + "client_id": "07-tendermint-8", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-202", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-621", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-620", + "connection_id": "connection-480" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-292", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "fxcore", + "client_id": "07-tendermint-13", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-585", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-632", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "impacthub", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-5", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-220", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-31", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-182", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-207", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-557", + "connection_id": "connection-460" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-277", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-475", + "connection_id": "connection-392" + }, + "chain_2": { + "chain_name": "kichain", + "client_id": "07-tendermint-6", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-223", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-769", + "connection_id": "connection-555" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-343", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-468", + "connection_id": "connection-386" + }, + "chain_2": { + "chain_name": "likecoin", + "client_id": "07-tendermint-24", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-217", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "lumnetwork", + "client_id": "07-tendermint-21", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-566", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-569", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1116", + "connection_id": "connection-790" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-4", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-536", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-306", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-141", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-391", + "connection_id": "connection-344" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-36", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-190", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-5", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-446", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-926", + "connection_id": "connection-648" + }, + "chain_2": { + "chain_name": "point", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-404", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1018", + "connection_id": "connection-709" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-467", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-645", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-386", + "connection_id": "connection-340" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-27", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-185", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-235", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-584", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-58", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-186", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-192", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-369", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-326", + "connection_id": "connection-300" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-158", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-391", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-962", + "connection_id": "connection-1710" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-32", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-431", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-339", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-611", + "connection_id": "connection-473" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-9", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-288", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "uptick", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-535", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cosmoshub/ibc_chain1.ts b/packages/chain-registry/src/mainnet/cosmoshub/ibc_chain1.ts new file mode 100644 index 000000000..69fc0587d --- /dev/null +++ b/packages/chain-registry/src/mainnet/cosmoshub/ibc_chain1.ts @@ -0,0 +1,1147 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-326", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "cryptoorgchain", + "client_id": "07-tendermint-735", + "connection_id": "connection-220" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-187", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-14", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-750", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "emoney", + "client_id": "07-tendermint-8", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-202", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-621", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-620", + "connection_id": "connection-480" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-292", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "fxcore", + "client_id": "07-tendermint-13", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-585", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-632", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "impacthub", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-5", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-220", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-31", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-182", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-207", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-557", + "connection_id": "connection-460" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-277", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-475", + "connection_id": "connection-392" + }, + "chain_2": { + "chain_name": "kichain", + "client_id": "07-tendermint-6", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-223", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-769", + "connection_id": "connection-555" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-343", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-468", + "connection_id": "connection-386" + }, + "chain_2": { + "chain_name": "likecoin", + "client_id": "07-tendermint-24", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-217", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "lumnetwork", + "client_id": "07-tendermint-21", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-566", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-569", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1116", + "connection_id": "connection-790" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-4", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-536", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-306", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-141", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-391", + "connection_id": "connection-344" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-36", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-190", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-5", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-446", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-926", + "connection_id": "connection-648" + }, + "chain_2": { + "chain_name": "point", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-404", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1018", + "connection_id": "connection-709" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-467", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-645", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-386", + "connection_id": "connection-340" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-27", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-185", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-235", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-584", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-58", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-186", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-192", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-369", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-326", + "connection_id": "connection-300" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-158", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-391", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-962", + "connection_id": "connection-1710" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-32", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-431", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-339", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-611", + "connection_id": "connection-473" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-9", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-288", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "uptick", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-535", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cosmoshub/index.ts b/packages/chain-registry/src/mainnet/cosmoshub/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cosmoshub/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/coss/assets.ts b/packages/chain-registry/src/mainnet/coss/assets.ts new file mode 100644 index 000000000..61b589491 --- /dev/null +++ b/packages/chain-registry/src/mainnet/coss/assets.ts @@ -0,0 +1,64 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "coss", + "assets": [ + { + "description": "The native staking and governance token of the COSS.", + "denom_units": [ + { + "denom": "ucgas", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The inscription token of the COSS.", + "denom_units": [ + { + "denom": "ucoss", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/coss/chain.ts b/packages/chain-registry/src/mainnet/coss/chain.ts new file mode 100644 index 000000000..6bc46ae79 --- /dev/null +++ b/packages/chain-registry/src/mainnet/coss/chain.ts @@ -0,0 +1,76 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": "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": [ + { + "denom": "ucgas" + } + ] + }, + "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": [ + { + "address": "https://coss-rpc.coss.ink", + "provider": "StellarGuardian" + }, + { + "address": "https://coss-rpc.cias.network", + "provider": "CelestialPhoenix" + } + ], + "rest": [ + { + "address": "https://coss-rest.coss.ink", + "provider": "StellarGuardian" + }, + { + "address": "https://coss-rest.cias.network", + "provider": "CelestialPhoenix" + } + ] + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/coss/index.ts b/packages/chain-registry/src/mainnet/coss/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/coss/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/crescent/assets.ts b/packages/chain-registry/src/mainnet/crescent/assets.ts new file mode 100644 index 000000000..45a73630c --- /dev/null +++ b/packages/chain-registry/src/mainnet/crescent/assets.ts @@ -0,0 +1,64 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "crescent", + "assets": [ + { + "description": "The native token of Crescent", + "denom_units": [ + { + "denom": "ucre", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The bonded token of Crescent", + "denom_units": [ + { + "denom": "ubcre", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/crescent/chain.ts b/packages/chain-registry/src/mainnet/crescent/chain.ts new file mode 100644 index 000000000..c30131494 --- /dev/null +++ b/packages/chain-registry/src/mainnet/crescent/chain.ts @@ -0,0 +1,189 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://crescent-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-crescent.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://crescent.rpc.stakin-nodes.com", + "provider": "Stakin" + }, + { + "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-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://crescent-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc.crescent.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://mainnet.crescent.network:1317", + "provider": "crescent" + }, + { + "address": "https://api-crescent.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://crescent-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://crescent.rest.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://api-crescent.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://crescent-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://api-crescent-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://crescent-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://lcd.crescent.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "crescent-grpc.polkachu.com:14590", + "provider": "Polkachu" + }, + { + "address": "crescent.grpc.stakin-nodes.com:443", + "provider": "Stakin" + }, + { + "address": "crescent-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-crescent.cosmos-spaces.cloud:2270", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc-crescent-01.stakeflow.io:1402", + "provider": "Stakeflow" + }, + { + "address": "crescent-grpc.w3coins.io:14590", + "provider": "w3coins" + }, + { + "address": "https://grpc.crescent.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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": "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": "Stakeflow", + "url": "https://stakeflow.io/crescent", + "account_page": "https://stakeflow.io/crescent/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/crescent/ibc.ts b/packages/chain-registry/src/mainnet/crescent/ibc.ts new file mode 100644 index 000000000..44b879f44 --- /dev/null +++ b/packages/chain-registry/src/mainnet/crescent/ibc.ts @@ -0,0 +1,801 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-70", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "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-31", + "connection_id": "connection-17" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "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-108", + "connection_id": "connection-54" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-32", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-326", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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-77", + "connection_id": "connection-65" + }, + "chain_2": { + "chain_name": "cryptoorgchain", + "client_id": "07-tendermint-1153", + "connection_id": "connection-277" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-38", + "connection_id": "connection-15" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-100", + "connection_id": "connection-102" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-132", + "connection_id": "connection-105" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-90", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-86", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-160", + "connection_id": "connection-107" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-81", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-105", + "connection_id": "connection-75" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-67", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "mars", + "client_id": "07-tendermint-14", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-44", + "connection_id": "connection-46" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-116", + "connection_id": "connection-78" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2083", + "connection_id": "connection-1624" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-297", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-88", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-53", + "connection_id": "connection-31" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-44", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-101", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-68", + "connection_id": "connection-57" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-170", + "connection_id": "connection-110" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/crescent/ibc_chain1.ts b/packages/chain-registry/src/mainnet/crescent/ibc_chain1.ts new file mode 100644 index 000000000..861dbec53 --- /dev/null +++ b/packages/chain-registry/src/mainnet/crescent/ibc_chain1.ts @@ -0,0 +1,611 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-38", + "connection_id": "connection-15" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-100", + "connection_id": "connection-102" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-132", + "connection_id": "connection-105" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-90", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-86", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-160", + "connection_id": "connection-107" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-81", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-105", + "connection_id": "connection-75" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-67", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "mars", + "client_id": "07-tendermint-14", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-44", + "connection_id": "connection-46" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-116", + "connection_id": "connection-78" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2083", + "connection_id": "connection-1624" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-297", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-88", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-53", + "connection_id": "connection-31" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-44", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-101", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-68", + "connection_id": "connection-57" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-170", + "connection_id": "connection-110" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/crescent/index.ts b/packages/chain-registry/src/mainnet/crescent/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/crescent/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/cronos/assets.ts b/packages/chain-registry/src/mainnet/cronos/assets.ts new file mode 100644 index 000000000..ce1ed2301 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cronos/assets.ts @@ -0,0 +1,91 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "cronos", + "assets": [ + { + "description": "Cronos Chain - Get Instant DApp Portability with EVM Support", + "denom_units": [ + { + "denom": "basecro", + "exponent": 0 + }, + { + "denom": "cro", + "exponent": 18 + } + ], + "base": "basecro", + "name": "Cronos", + "display": "cro", + "symbol": "CRO", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "cryptoorgchain", + "base_denom": "basecro" + }, + "provider": "Cronos" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "cryptoorgchain", + "base_denom": "basecro" + }, + "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": [ + { + "denom": "ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-11", + "path": "transfer/channel-11/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cronos/chain.ts b/packages/chain-registry/src/mainnet/cronos/chain.ts new file mode 100644 index 000000000..57a7addef --- /dev/null +++ b/packages/chain-registry/src/mainnet/cronos/chain.ts @@ -0,0 +1,93 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://cronos-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://rest.cronos.org/", + "provider": "cronos.org" + }, + { + "address": "https://cronos-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc.cronos.org:443", + "provider": "cronos.org" + }, + { + "address": "cronos-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://evm.cronos.org/", + "provider": "cronos.org" + }, + { + "address": "https://cronos-evm.publicnode.com", + "provider": "Allnodes.com ⚡️ Nodes & Staking" + } + ] + }, + "explorers": [ + { + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cronos/ibc.ts b/packages/chain-registry/src/mainnet/cronos/ibc.ts new file mode 100644 index 000000000..4eb1f00c9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cronos/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cronos/ibc_chain1.ts b/packages/chain-registry/src/mainnet/cronos/ibc_chain1.ts new file mode 100644 index 000000000..4eb1f00c9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cronos/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cronos", + "client_id": "07-tendermint-33", + "connection_id": "connection-17" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-134", + "connection_id": "connection-169" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cronos/index.ts b/packages/chain-registry/src/mainnet/cronos/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cronos/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/cryptoorgchain/assets.ts b/packages/chain-registry/src/mainnet/cryptoorgchain/assets.ts new file mode 100644 index 000000000..03c401c0d --- /dev/null +++ b/packages/chain-registry/src/mainnet/cryptoorgchain/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "basecro", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "crypto-com-chain", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cryptoorgchain/chain.ts b/packages/chain-registry/src/mainnet/cryptoorgchain/chain.ts new file mode 100644 index 000000000..770e1e894 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cryptoorgchain/chain.ts @@ -0,0 +1,163 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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-cryptoorgchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc-cryptoorgchain.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://cryptocom-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://cryptocom-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc-cryptoorg.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://cro-chain-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://rest.mainnet.crypto.org/", + "provider": "cronos.org" + }, + { + "address": "https://api-cryptoorgchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://cryptocom-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rest-cryptoorgchain.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://cryptocom-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://api-cryptoorg.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://cro-chain-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc.mainnet.crypto.org:443", + "provider": "cronos.org" + }, + { + "address": "grpc-cryptoorgchain-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "cryptocom-grpc.polkachu.com:20290", + "provider": "Polkachu" + }, + { + "address": "cryptocom-grpc.w3coins.io:20290", + "provider": "w3coins" + }, + { + "address": "grpc-cryptoorg.cosmos-spaces.cloud:1160", + "provider": "Cosmos Spaces" + }, + { + "address": "cro-chain-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "yummy-explorer", + "url": "https://explorer.yummy.capital", + "tx_page": "https://explorer.yummy.capital/txs/${txHash}" + } + ], + "images": [ + { + "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" + }, + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cryptoorgchain/ibc.ts b/packages/chain-registry/src/mainnet/cryptoorgchain/ibc.ts new file mode 100644 index 000000000..5ebf49d8c --- /dev/null +++ b/packages/chain-registry/src/mainnet/cryptoorgchain/ibc.ts @@ -0,0 +1,319 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-187", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-32", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-4", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-24", + "connection_id": "connection-17" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-28", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-43", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-20", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-16", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cryptoorgchain/ibc_chain1.ts b/packages/chain-registry/src/mainnet/cryptoorgchain/ibc_chain1.ts new file mode 100644 index 000000000..8f54b6eb1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cryptoorgchain/ibc_chain1.ts @@ -0,0 +1,232 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-32", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-4", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-24", + "connection_id": "connection-17" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-28", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-43", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-20", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-16", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cryptoorgchain/index.ts b/packages/chain-registry/src/mainnet/cryptoorgchain/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cryptoorgchain/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/cudos/assets.ts b/packages/chain-registry/src/mainnet/cudos/assets.ts new file mode 100644 index 000000000..1c6cda4b6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cudos/assets.ts @@ -0,0 +1,39 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "cudos", + "assets": [ + { + "description": "The native token of the Cudos blockchain", + "denom_units": [ + { + "denom": "acudos", + "exponent": 0, + "aliases": [ + "attocudos" + ] + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cudos/chain.ts b/packages/chain-registry/src/mainnet/cudos/chain.ts new file mode 100644 index 000000000..1fa8d2982 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cudos/chain.ts @@ -0,0 +1,132 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "acudos" + } + ] + }, + "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" + }, + "apis": { + "rpc": [ + { + "address": "http://mainnet-full-node-01.hosts.cudos.org:26657", + "provider": "cudo" + }, + { + "address": "https://mainnet-full-node-02.hosts.cudos.org:36657", + "provider": "cudo" + }, + { + "address": "https://cudos-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://cudos-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://cudos-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + } + ], + "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" + }, + { + "address": "https://cudos-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://cudos-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://cudos-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + } + ], + "grpc": [ + { + "address": "mainnet-full-node-01.hosts.cudos.org:9090", + "provider": "cudo" + }, + { + "address": "cudos-mainnet-grpc.autostake.com:443", + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cudos/ibc.ts b/packages/chain-registry/src/mainnet/cudos/ibc.ts new file mode 100644 index 000000000..14669dd7f --- /dev/null +++ b/packages/chain-registry/src/mainnet/cudos/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-298", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cudos/ibc_chain1.ts b/packages/chain-registry/src/mainnet/cudos/ibc_chain1.ts new file mode 100644 index 000000000..14669dd7f --- /dev/null +++ b/packages/chain-registry/src/mainnet/cudos/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cudos", + "client_id": "07-tendermint-2084", + "connection_id": "connection-1626" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-298", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/cudos/index.ts b/packages/chain-registry/src/mainnet/cudos/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cudos/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/decentr/assets.ts b/packages/chain-registry/src/mainnet/decentr/assets.ts new file mode 100644 index 000000000..6af95940d --- /dev/null +++ b/packages/chain-registry/src/mainnet/decentr/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "decentr", + "assets": [ + { + "description": "The native token of Decentr", + "denom_units": [ + { + "denom": "udec", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/decentr/chain.ts b/packages/chain-registry/src/mainnet/decentr/chain.ts new file mode 100644 index 000000000..a9f841713 --- /dev/null +++ b/packages/chain-registry/src/mainnet/decentr/chain.ts @@ -0,0 +1,145 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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" + } + ] + }, + "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": "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://rpc-dcntr.nodine.id/", + "provider": "Nodine.ID" + }, + { + "address": "https://rpc-decentr.mms.team/", + "provider": "MMS" + } + ], + "rest": [ + { + "address": "https://rest.mainnet.decentr.xyz", + "provider": "decentr" + }, + { + "address": "https://api.decentr.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://decentr-api.ibs.team/", + "provider": "Inter Blockchain Services" + } + ], + "grpc": [ + { + "address": "https://grpc-decentr.sxlzptprjkt.xyz:443", + "provider": "sxlzptprjkt | VALIDATOR" + }, + { + "address": "https://grpc.decentr.hexnodes.co", + "provider": "Hexnodes" + }, + { + "address": "https://grpc.decentr.nodexcapital.com:443", + "provider": "NodeX Validator" + }, + { + "address": "grpc-decentr.mms.team:443", + "provider": "MMS" + } + ] + }, + "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": "Nodine.ID", + "url": "https://explorer.co.id/decentr", + "tx_page": "https://explorer.co.id/decentr/tx/${txHash}" + }, + { + "kind": "THE EXPLORER", + "url": "https://explorer.sxlzptprjkt.xyz/decentr", + "tx_page": "https://explorer.sxlzptprjkt.xyz/decentr/tx/${txHash}" + }, + { + "kind": "hexskrt EXPLORER", + "url": "https://explorer.hexskrt.net/decentr", + "tx_page": "https://explorer.hexskrt.net/decentr/tx/${txHash}" + }, + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/decentr/ibc.ts b/packages/chain-registry/src/mainnet/decentr/ibc.ts new file mode 100644 index 000000000..480362004 --- /dev/null +++ b/packages/chain-registry/src/mainnet/decentr/ibc.ts @@ -0,0 +1,97 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-181", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-395", + "connection_id": "connection-385" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-315", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/decentr/ibc_chain1.ts b/packages/chain-registry/src/mainnet/decentr/ibc_chain1.ts new file mode 100644 index 000000000..7b7a6d62f --- /dev/null +++ b/packages/chain-registry/src/mainnet/decentr/ibc_chain1.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-181", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-395", + "connection_id": "connection-385" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-315", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/decentr/index.ts b/packages/chain-registry/src/mainnet/decentr/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/decentr/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/desmos/assets.ts b/packages/chain-registry/src/mainnet/desmos/assets.ts new file mode 100644 index 000000000..49083f2e7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/desmos/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "desmos", + "assets": [ + { + "description": "The native token of Desmos", + "denom_units": [ + { + "denom": "udsm", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/desmos/chain.ts b/packages/chain-registry/src/mainnet/desmos/chain.ts new file mode 100644 index 000000000..4a93e572f --- /dev/null +++ b/packages/chain-registry/src/mainnet/desmos/chain.ts @@ -0,0 +1,162 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": [ + { + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/desmos/ibc.ts b/packages/chain-registry/src/mainnet/desmos/ibc.ts new file mode 100644 index 000000000..96b587bd6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/desmos/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/desmos/ibc_chain1.ts b/packages/chain-registry/src/mainnet/desmos/ibc_chain1.ts new file mode 100644 index 000000000..96b587bd6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/desmos/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "desmos", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1726", + "connection_id": "connection-1315" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/desmos/index.ts b/packages/chain-registry/src/mainnet/desmos/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/desmos/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/dig/assets.ts b/packages/chain-registry/src/mainnet/dig/assets.ts new file mode 100644 index 000000000..6177683d6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dig/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "dig", + "assets": [ + { + "description": "Native token of Dig Chain", + "denom_units": [ + { + "denom": "udig", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "dig-chain", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dig/chain.ts b/packages/chain-registry/src/mainnet/dig/chain.ts new file mode 100644 index 000000000..70b31be9b --- /dev/null +++ b/packages/chain-registry/src/mainnet/dig/chain.ts @@ -0,0 +1,91 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "udig" + } + ] + }, + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-1-dig.notional.ventures" + }, + { + "address": "https://rpc-dig-ia.cosmosia.notional.ventures/", + "provider": "Notional" + } + ], + "rest": [ + { + "address": "https://api-1-dig.notional.ventures" + }, + { + "address": "https://api-dig-ia.cosmosia.notional.ventures/", + "provider": "Notional" + } + ], + "grpc": [ + { + "address": "grpc-dig-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + } + ] + }, + "explorers": [ + { + "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": "TC Network", + "url": "https://explorer.tcnetwork.io/dig", + "tx_page": "https://explorer.tcnetwork.io/dig/transaction/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dig/ibc.ts b/packages/chain-registry/src/mainnet/dig/ibc.ts new file mode 100644 index 000000000..a997c92d5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dig/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1714", + "connection_id": "connection-1304" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-128", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dig/ibc_chain1.ts b/packages/chain-registry/src/mainnet/dig/ibc_chain1.ts new file mode 100644 index 000000000..a997c92d5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dig/ibc_chain1.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1714", + "connection_id": "connection-1304" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-128", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dig/index.ts b/packages/chain-registry/src/mainnet/dig/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dig/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/doravota/assets.ts b/packages/chain-registry/src/mainnet/doravota/assets.ts new file mode 100644 index 000000000..4cc87310e --- /dev/null +++ b/packages/chain-registry/src/mainnet/doravota/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "peaka", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/doravota/chain.ts b/packages/chain-registry/src/mainnet/doravota/chain.ts new file mode 100644 index 000000000..39ddaf37f --- /dev/null +++ b/packages/chain-registry/src/mainnet/doravota/chain.ts @@ -0,0 +1,63 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "peaka" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://vota-rpc.dorafactory.org/", + "provider": "dorafactory" + } + ], + "rest": [ + { + "address": "https://vota-rest.dorafactory.org", + "provider": "dorafactory" + } + ], + "grpc": [ + { + "address": "vota-grpc.dorafactory.org:443", + "provider": "dorafactory" + } + ] + }, + "explorers": [ + { + "kind": "Dora Vota Ping Pub", + "url": "https://vota-explorer.dorafactory.org", + "tx_page": "https://vota-explorer.dorafactory.org/doravota/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/doravota/ibc.ts b/packages/chain-registry/src/mainnet/doravota/ibc.ts new file mode 100644 index 000000000..57c242174 --- /dev/null +++ b/packages/chain-registry/src/mainnet/doravota/ibc.ts @@ -0,0 +1,228 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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-12", + "connection_id": "connection-12" + }, + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-12", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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-1191", + "connection_id": "connection-920" + }, + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-14", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-750", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "dydx", + "client_id": "07-tendermint-15", + "connection_id": "connection-21" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-245", + "connection_id": "connection-239" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-182", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nolus", + "client_id": "07-tendermint-14", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4092", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2959", + "connection_id": "connection-2454" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2694", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/doravota/ibc_chain1.ts b/packages/chain-registry/src/mainnet/doravota/ibc_chain1.ts new file mode 100644 index 000000000..d7c9ea2e4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/doravota/ibc_chain1.ts @@ -0,0 +1,132 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-245", + "connection_id": "connection-239" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-182", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nolus", + "client_id": "07-tendermint-14", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4092", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2959", + "connection_id": "connection-2454" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2694", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/doravota/index.ts b/packages/chain-registry/src/mainnet/doravota/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/doravota/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/dydx/assets.ts b/packages/chain-registry/src/mainnet/dydx/assets.ts new file mode 100644 index 000000000..7f655151c --- /dev/null +++ b/packages/chain-registry/src/mainnet/dydx/assets.ts @@ -0,0 +1,88 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "dydx", + "assets": [ + { + "description": "The native staking token of dYdX Protocol.", + "denom_units": [ + { + "denom": "adydx", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "dydx", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", + "theme": { + "circle": true + } + } + ] + }, + { + "description": "Noble USDC on dYdX Protocol.", + "denom_units": [ + { + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dydx/chain.ts b/packages/chain-registry/src/mainnet/dydx/chain.ts new file mode 100644 index 000000000..6b4b524d0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dydx/chain.ts @@ -0,0 +1,234 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": "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" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "v0.47.4", + "cosmwasm_enabled": false + }, + "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": "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://dydx-dao-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "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.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "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.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://rpc-dydx.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://dydx-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rpc-dydx.cros-nest.com:443", + "provider": "Crosnest" + }, + { + "address": "https://dydx-rpc.enigma-validator.com", + "provider": "Enigma" + } + ], + "rest": [ + { + "address": "https://community.nuxian-node.ch:6797/dydx/crpc", + "provider": "PRO Delegators" + }, + { + "address": "https://dydx-dao-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://dydx-mainnet-full-lcd.public.blastapi.io", + "provider": "Bware Labs" + }, + { + "address": "https://dydx-rest.kingnodes.com:443", + "provider": "Kingnodes" + }, + { + "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://rest-dydx.ecostake.com:443", + "provider": "ecostake" + }, + { + "address": "https://api-dydx.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://api.dydx.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://dydx-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rest-dydx.cros-nest.com:443", + "provider": "Crosnest" + }, + { + "address": "https://dydx-lcd.enigma-validator.com", + "provider": "Enigma" + } + ], + "grpc": [ + { + "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-3.polkachu.com:23890", + "provider": "Polkachu (3)" + }, + { + "address": "dydx-dao-grpc-4.polkachu.com:23890", + "provider": "Polkachu (4)" + }, + { + "address": "dydx-dao-grpc-5.polkachu.com:23890", + "provider": "Polkachu (5)" + }, + { + "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.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "dydx-mainnet-grpc.autostake.com:443", + "provider": "AutoStake ⚡ 0% fee > Airdrops 🪂💰" + }, + { + "address": "https://grpc.dydx.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "dydx.grpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "grpc-dydx.cosmos-spaces.cloud:4990", + "provider": "Cosmos Spaces" + }, + { + "address": "dydx-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dydx/ibc.ts b/packages/chain-registry/src/mainnet/dydx/ibc.ts new file mode 100644 index 000000000..85c1f650f --- /dev/null +++ b/packages/chain-registry/src/mainnet/dydx/ibc.ts @@ -0,0 +1,316 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-154", + "connection_id": "connection-195" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-158", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-118", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-11", + "connection_id": "connection-17" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-72", + "connection_id": "connection-51" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-59", + "connection_id": "connection-57" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3009", + "connection_id": "connection-2500" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6787", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-159", + "connection_id": "connection-197" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-131", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-133", + "connection_id": "connection-123" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-160", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-299", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dydx/ibc_chain1.ts b/packages/chain-registry/src/mainnet/dydx/ibc_chain1.ts new file mode 100644 index 000000000..7d3f5757c --- /dev/null +++ b/packages/chain-registry/src/mainnet/dydx/ibc_chain1.ts @@ -0,0 +1,253 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-158", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-118", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-11", + "connection_id": "connection-17" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-72", + "connection_id": "connection-51" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-59", + "connection_id": "connection-57" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3009", + "connection_id": "connection-2500" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6787", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-159", + "connection_id": "connection-197" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-131", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-133", + "connection_id": "connection-123" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-160", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-299", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dydx/index.ts b/packages/chain-registry/src/mainnet/dydx/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dydx/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/dyson/assets.ts b/packages/chain-registry/src/mainnet/dyson/assets.ts new file mode 100644 index 000000000..c30aa1857 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dyson/assets.ts @@ -0,0 +1,177 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "dyson", + "assets": [ + { + "description": "The native staking and governance token of the Dyson Protocol", + "denom_units": [ + { + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/uosmo" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] + }, + { + "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": "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" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F" + }, + "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": "ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "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": "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" + } + } + ], + "images": [ + { + "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" + } + ], + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dyson/chain.ts b/packages/chain-registry/src/mainnet/dyson/chain.ts new file mode 100644 index 000000000..abcfffdd9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dyson/chain.ts @@ -0,0 +1,83 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "dys" + } + ] + }, + "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": [ + { + "address": "https://dys-tm.dysonprotocol.com:443", + "provider": "dysonprotocol" + }, + { + "address": "https://dyson-rpc.cogwheel.zone:443", + "provider": "cogwheel" + } + ], + "rest": [ + { + "address": "https://dys-api.dysonprotocol.com:443", + "provider": "dysonprotocol" + }, + { + "address": "https://dyson-api.cogwheel.zone:443", + "provider": "cogwheel" + } + ], + "grpc": [ + { + "address": "dys-grpc.dyson.lol:443", + "provider": "lol" + }, + { + "address": "https://dyson-grpc.cogwheel.zone:443", + "provider": "cogwheel" + } + ] + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dyson/ibc.ts b/packages/chain-registry/src/mainnet/dyson/ibc.ts new file mode 100644 index 000000000..f798c42b0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dyson/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-526", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dyson/ibc_chain1.ts b/packages/chain-registry/src/mainnet/dyson/ibc_chain1.ts new file mode 100644 index 000000000..f798c42b0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dyson/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dyson", + "client_id": "07-tendermint-2", + "connection_id": "connection-5" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2407", + "connection_id": "connection-1895" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-526", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/dyson/index.ts b/packages/chain-registry/src/mainnet/dyson/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/dyson/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/echelon/assets.ts b/packages/chain-registry/src/mainnet/echelon/assets.ts new file mode 100644 index 000000000..d284077da --- /dev/null +++ b/packages/chain-registry/src/mainnet/echelon/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "aechelon", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "echelon", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/echelon/chain.ts b/packages/chain-registry/src/mainnet/echelon/chain.ts new file mode 100644 index 000000000..8f695ceb2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/echelon/chain.ts @@ -0,0 +1,97 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": [ + { + "address": "https://ech01trpc.mindheartsoul.org", + "provider": "Mind Heart Soul" + }, + { + "address": "https://rpc.echjoker.lol", + "provider": "⚡ Echelon Joker ⚛ 🃏" + } + ], + "rest": [ + { + "address": "https://ech01api.mindheartsoul.org", + "provider": "Mind Heart Soul" + }, + { + "address": "https://api.echjoker.lol", + "provider": "⚡ Echelon Joker ⚛ 🃏" + } + ], + "grpc": [], + "evm-http-jsonrpc": [ + { + "address": "https://ech01jrpc.mindheartsoul.org", + "provider": "Mind Heart Soul" + }, + { + "address": "https://jrpc.echjoker.lol", + "provider": "⚡ Echelon Joker ⚛ 🃏" + } + ] + }, + "explorers": [ + { + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/echelon/ibc.ts b/packages/chain-registry/src/mainnet/echelon/ibc.ts new file mode 100644 index 000000000..3866af3d6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/echelon/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-403", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/echelon/ibc_chain1.ts b/packages/chain-registry/src/mainnet/echelon/ibc_chain1.ts new file mode 100644 index 000000000..3866af3d6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/echelon/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "echelon", + "client_id": "07-tendermint-107", + "connection_id": "connection-29" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2268", + "connection_id": "connection-1760" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-403", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/echelon/index.ts b/packages/chain-registry/src/mainnet/echelon/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/echelon/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/emoney/assets.ts b/packages/chain-registry/src/mainnet/emoney/assets.ts new file mode 100644 index 000000000..09addb4bc --- /dev/null +++ b/packages/chain-registry/src/mainnet/emoney/assets.ts @@ -0,0 +1,176 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "ungm", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", + "denom_units": [ + { + "denom": "eeur", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.", + "denom_units": [ + { + "denom": "echf", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.", + "denom_units": [ + { + "denom": "enok", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.", + "denom_units": [ + { + "denom": "edkk", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.", + "denom_units": [ + { + "denom": "esek", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/emoney/chain.ts b/packages/chain-registry/src/mainnet/emoney/chain.ts new file mode 100644 index 000000000..a4344d260 --- /dev/null +++ b/packages/chain-registry/src/mainnet/emoney/chain.ts @@ -0,0 +1,146 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": "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": "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": "edkk", + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ungm" + } + ] + }, + "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": [ + { + "address": "https://emoney.validator.network", + "provider": "e-Money" + }, + { + "address": "https://rpc-emoney-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc.emoney.bh.rocks", + "provider": "BlockHunters 🎯" + } + ], + "rest": [ + { + "address": "https://emoney.validator.network/api/", + "provider": "e-Money" + }, + { + "address": "https://api-emoney-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://api.emoney.bh.rocks", + "provider": "BlockHunters 🎯" + } + ], + "grpc": [ + { + "address": "grpc-emoney-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "emoney-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/emoney/ibc.ts b/packages/chain-registry/src/mainnet/emoney/ibc.ts new file mode 100644 index 000000000..8a92721f3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/emoney/ibc.ts @@ -0,0 +1,123 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-202", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-24", + "connection_id": "connection-16" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1447", + "connection_id": "connection-1132" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/emoney/ibc_chain1.ts b/packages/chain-registry/src/mainnet/emoney/ibc_chain1.ts new file mode 100644 index 000000000..58495656e --- /dev/null +++ b/packages/chain-registry/src/mainnet/emoney/ibc_chain1.ts @@ -0,0 +1,95 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-24", + "connection_id": "connection-16" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1447", + "connection_id": "connection-1132" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/emoney/index.ts b/packages/chain-registry/src/mainnet/emoney/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/emoney/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/empowerchain/assets.ts b/packages/chain-registry/src/mainnet/empowerchain/assets.ts new file mode 100644 index 000000000..c1d4550fa --- /dev/null +++ b/packages/chain-registry/src/mainnet/empowerchain/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "empowerchain", + "assets": [ + { + "description": "The native staking and governance token of Empower.", + "denom_units": [ + { + "denom": "umpwr", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/empowerchain/chain.ts b/packages/chain-registry/src/mainnet/empowerchain/chain.ts new file mode 100644 index 000000000..5bf5949c1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/empowerchain/chain.ts @@ -0,0 +1,192 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-empowerchain.ecostake.com:443", + "provider": "ecostake" + }, + { + "address": "https://empowerchain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://empower.rpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "http://empw.rpc.m.stavr.tech:22057", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-empower.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://rpc-empowerchain.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "https://empower-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc-empower.vinjan.xyz:443", + "provider": "vinjan" + }, + { + "address": "https://rpc.empower.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://mainnet-empower-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://empower.rpc.stakevillage.net:443", + "provider": "Stake Village" + }, + { + "address": "https://rpc.empowerchain.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://rest-empowerchain.ecostake.com:443", + "provider": "ecostake" + }, + { + "address": "https://empowerchain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://empower.api.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://empw.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://empower-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://lcd-empower.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api-empower.vinjan.xyz:443", + "provider": "vinjan" + }, + { + "address": "https://api.empower.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://mainnet-empower-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://empower.api.stakevillage.net", + "provider": "Stake Village" + }, + { + "address": "https://lcd.empowerchain.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "empowerchain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://empower.grpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "empower-grpc.w3coins.io:17390", + "provider": "w3coins" + }, + { + "address": "grpc-empowerchain.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "http://empw.grpc.m.stavr.tech:9141", + "provider": "🔥STAVR🔥" + }, + { + "address": "grpc-empower.vinjan.xyz", + "provider": "vinjan" + }, + { + "address": "https://grpc.empower.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "empower.grpc.stakevillage.net:16890", + "provider": "Stake Village" + }, + { + "address": "https://grpc.empowerchain.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/empowerchain/ibc.ts b/packages/chain-registry/src/mainnet/empowerchain/ibc.ts new file mode 100644 index 000000000..40d1108c4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/empowerchain/ibc.ts @@ -0,0 +1,97 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-109", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1151", + "connection_id": "connection-872" + }, + "chain_2": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-621", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2848", + "connection_id": "connection-2360" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1411", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/empowerchain/ibc_chain1.ts b/packages/chain-registry/src/mainnet/empowerchain/ibc_chain1.ts new file mode 100644 index 000000000..0b07a4c6f --- /dev/null +++ b/packages/chain-registry/src/mainnet/empowerchain/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2848", + "connection_id": "connection-2360" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1411", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/empowerchain/index.ts b/packages/chain-registry/src/mainnet/empowerchain/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/empowerchain/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/ethos/assets.ts b/packages/chain-registry/src/mainnet/ethos/assets.ts new file mode 100644 index 000000000..50f81d3e6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/ethos/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "ethos", + "assets": [ + { + "description": "The native token of Ethos", + "denom_units": [ + { + "denom": "aRYT", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/ethos/chain.ts b/packages/chain-registry/src/mainnet/ethos/chain.ts new file mode 100644 index 000000000..7ed9fea7c --- /dev/null +++ b/packages/chain-registry/src/mainnet/ethos/chain.ts @@ -0,0 +1,65 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://ethos-rpc.provable.dev:443/", + "provider": "laurel.provable" + } + ], + "rest": [ + { + "address": "https://ethos.provable.dev/rest/", + "provider": "laurel.provable" + } + ], + "grpc": [ + { + "address": "ethos-grpc.provable.dev:443", + "provider": "laurel.provable" + } + ], + "evm-http-jsonrpc": [ + { + "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": {}, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/ethos/index.ts b/packages/chain-registry/src/mainnet/ethos/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/ethos/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/evmos/assets.ts b/packages/chain-registry/src/mainnet/evmos/assets.ts new file mode 100644 index 000000000..af4cad810 --- /dev/null +++ b/packages/chain-registry/src/mainnet/evmos/assets.ts @@ -0,0 +1,107 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "evmos", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Evmos Hub", + "denom_units": [ + { + "denom": "aevmos", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Tether USDt on Evmos", + "denom_units": [ + { + "denom": "ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-83", + "path": "transfer/channel-83/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + }, + { + "description": "The token of Neokingdom DAO.", + "denom_units": [ + { + "denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/evmos/chain.ts b/packages/chain-registry/src/mainnet/evmos/chain.ts new file mode 100644 index 000000000..42c3b17f2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/evmos/chain.ts @@ -0,0 +1,436 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "address": "https://rpc-evmos.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://evmos-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://tendermint.bd.evmos.org:26657", + "provider": "Blockdaemon" + }, + { + "address": "https://rpc-evmos-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "https://rpc.evmos.testnet.run", + "provider": "TestNetRun" + }, + { + "address": "https://rpc.evmos.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc.evmos.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://evmos-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc.evmos.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://rpc.evmos.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://evmos.rpc.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://rpc-evmos.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://evmos-rpc.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "https://evmos-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rpc-evmos-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://evmos-rpc.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://rpc-evmos.validavia.me", + "provider": "Validavia" + }, + { + "address": "https://evmos-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://evmos-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://evmos.rpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://evmos-rpc.antrixy.org/", + "provider": "Antrix Validators" + }, + { + "address": "https://evmos-mainnet.rpc.stakevillage.net:443", + "provider": "Stake Village" + }, + { + "address": "https://rpc.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 🐝" + }, + { + "address": "https://api-evmos-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://api.evmos.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://evmos-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api.evmos.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://rest.evmos.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://evmos.rest.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://rest-evmos.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://evmos-api.validatrium.club", + "provider": "Validatrium" + }, + { + "address": "https://rest-evmos.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://evmos-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://api-evmos-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://evmos-api.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://lcd-evmos.validavia.me", + "provider": "Validavia" + }, + { + "address": "https://evmos-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://evmos-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://evmos.api.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://evmos-rest.antrixy.org/", + "provider": "Antrix Validators" + }, + { + "address": "https://evmos-mainnet.api.stakevillage.net", + "provider": "Stake Village" + }, + { + "address": "https://lcd.evmos.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "grpc.bd.evmos.org:9090", + "provider": "evmos.org" + }, + { + "address": "grpc-evmos-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "evmos-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc.evmos.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "grpc-evmos.cosmos-spaces.cloud:1190", + "provider": "Cosmos Spaces" + }, + { + "address": "evmos.grpcui.chaintools.host:443", + "provider": "ChainTools" + }, + { + "address": "evmos-grpc.polkachu.com:13490", + "provider": "Polkachu" + }, + { + "address": "evmos.grpc.stakin-nodes.com:443", + "provider": "Stakin" + }, + { + "address": "evmos-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "evmos-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "grpc-evmos-01.stakeflow.io:1702", + "provider": "Stakeflow" + }, + { + "address": "https://evmos-grpc.theamsolutions.info ", + "provider": "AM Solutions" + }, + { + "address": "evmos-grpc.w3coins.io:13490", + "provider": "w3coins" + }, + { + "address": "grpc-evmos.mms.team:443", + "provider": "MMS" + }, + { + "address": "evmos-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "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" + } + ] + }, + "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": "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": "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": "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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/evmos/ibc.ts b/packages/chain-registry/src/mainnet/evmos/ibc.ts new file mode 100644 index 000000000..09112b689 --- /dev/null +++ b/packages/chain-registry/src/mainnet/evmos/ibc.ts @@ -0,0 +1,625 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-116", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-85", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-69", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-117", + "connection_id": "connection-71" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-292", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-108", + "connection_id": "connection-106" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-120", + "connection_id": "connection-157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-117", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-25", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-12", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1840", + "connection_id": "connection-1440" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-42", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-173", + "connection_id": "connection-104" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-8", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "tgrade", + "client_id": "07-tendermint-8", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/evmos/ibc_chain1.ts b/packages/chain-registry/src/mainnet/evmos/ibc_chain1.ts new file mode 100644 index 000000000..8a6057100 --- /dev/null +++ b/packages/chain-registry/src/mainnet/evmos/ibc_chain1.ts @@ -0,0 +1,347 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-108", + "connection_id": "connection-106" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-120", + "connection_id": "connection-157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-117", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-25", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-12", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1840", + "connection_id": "connection-1440" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-42", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-173", + "connection_id": "connection-104" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-8", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "tgrade", + "client_id": "07-tendermint-8", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/evmos/index.ts b/packages/chain-registry/src/mainnet/evmos/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/evmos/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/fetchhub/assets.ts b/packages/chain-registry/src/mainnet/fetchhub/assets.ts new file mode 100644 index 000000000..b1ca34319 --- /dev/null +++ b/packages/chain-registry/src/mainnet/fetchhub/assets.ts @@ -0,0 +1,63 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "fetchhub", + "assets": [ + { + "description": "The native staking and governance token of the Fetch Hub.", + "denom_units": [ + { + "denom": "afet", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The MOBX coin rewards the use of eco-friendly micromobility transportation.", + "denom_units": [ + { + "denom": "nanomobx", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/fetchhub/chain.ts b/packages/chain-registry/src/mainnet/fetchhub/chain.ts new file mode 100644 index 000000000..e0c767625 --- /dev/null +++ b/packages/chain-registry/src/mainnet/fetchhub/chain.ts @@ -0,0 +1,225 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "afet" + } + ] + }, + "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": [ + { + "address": "https://rpc-fetchhub.fetch.ai:443", + "provider": "fetch.ai" + }, + { + "address": "https://rpc-fetchhub-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://fetch-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://fetchai-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://fetch-rpc.teasel.org", + "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" + }, + { + "address": "https://fetch-rpc.antrixy.org", + "provider": "Antrix" + }, + { + "address": "https://rpc-fetch.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "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.cosmosrescue.com", + "provider": "cosmosrescue" + }, + { + "address": "https://fetch-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://fetch-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://fetch-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + } + ], + "rest": [ + { + "address": "https://rest-fetchhub.fetch.ai", + "provider": "fetch.ai" + }, + { + "address": "https://api-fetchhub-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://fetch-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://fetchai-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://fetch-rest.teasel.org", + "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" + }, + { + "address": "https://fetch-rest.antrixy.org", + "provider": "Antrix" + }, + { + "address": "https://fetchhub-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rest-fetch.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://fetch-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://fetch-api.cosmosrescue.com", + "provider": "cosmosrescue" + }, + { + "address": "https://fetch-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://fetch-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://fetch-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + } + ], + "grpc": [ + { + "address": "grpc-fetchhub.fetch.ai:443", + "provider": "fetch.ai" + }, + { + "address": "grpc-fetchhub-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "fetch-grpc.polkachu.com:15290", + "provider": "Polkachu" + }, + { + "address": "fetchhub-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "fetch-grpc.teasel.org:443", + "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" + }, + { + "address": "fetch-grpc.antrixy.org:443", + "provider": "Antrix" + }, + { + "address": "fetch-grpc.cosmosrescue.com:9090", + "provider": "cosmosrescue" + }, + { + "address": "fetch-grpc.w3coins.io:15290", + "provider": "w3coins" + }, + { + "address": "fetch-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/fetchhub/ibc.ts b/packages/chain-registry/src/mainnet/fetchhub/ibc.ts new file mode 100644 index 000000000..b9188953f --- /dev/null +++ b/packages/chain-registry/src/mainnet/fetchhub/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/fetchhub/ibc_chain1.ts b/packages/chain-registry/src/mainnet/fetchhub/ibc_chain1.ts new file mode 100644 index 000000000..b9188953f --- /dev/null +++ b/packages/chain-registry/src/mainnet/fetchhub/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "fetchhub", + "client_id": "07-tendermint-10", + "connection_id": "connection-10" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1913", + "connection_id": "connection-1490" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/fetchhub/index.ts b/packages/chain-registry/src/mainnet/fetchhub/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/fetchhub/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/firmachain/assets.ts b/packages/chain-registry/src/mainnet/firmachain/assets.ts new file mode 100644 index 000000000..c3429b6ce --- /dev/null +++ b/packages/chain-registry/src/mainnet/firmachain/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "firmachain", + "assets": [ + { + "description": "The native token of FirmaChain", + "denom_units": [ + { + "denom": "ufct", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/firmachain/chain.ts b/packages/chain-registry/src/mainnet/firmachain/chain.ts new file mode 100644 index 000000000..3ced2bc32 --- /dev/null +++ b/packages/chain-registry/src/mainnet/firmachain/chain.ts @@ -0,0 +1,116 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ufct" + } + ] + }, + "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": [ + { + "address": "https://lcd-mainnet.firmachain.dev:26657", + "provider": "FirmaChain" + }, + { + "address": "https://rpc.firmachain.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://firmachain-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://firmachain-rpc.ramuchi.tech", + "provider": "ramuchi.tech" + } + ], + "rest": [ + { + "address": "https://lcd-mainnet.firmachain.dev:1317", + "provider": "FirmaChain" + }, + { + "address": "https://api.firmachain.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://firmachain-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://firmachain-api.ramuchi.tech", + "provider": "ramuchi.tech" + } + ], + "grpc": [ + { + "address": "firmachain-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://firmachain-grpc.ramuchi.tech:1390", + "provider": "ramuchi.tech" + } + ] + }, + "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": "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": "atomscan", + "url": "https://atomscan.com/firmachain", + "tx_page": "https://atomscan.com/firmachain/transactions/${txHash}", + "account_page": "https://atomscan.com/firmachain/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/firmachain/index.ts b/packages/chain-registry/src/mainnet/firmachain/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/firmachain/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/furya/assets.ts b/packages/chain-registry/src/mainnet/furya/assets.ts new file mode 100644 index 000000000..48874a5f6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/furya/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "furya", + "assets": [ + { + "description": "The native token of Furya", + "denom_units": [ + { + "denom": "ufury", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/furya/chain.ts b/packages/chain-registry/src/mainnet/furya/chain.ts new file mode 100644 index 000000000..99a20c281 --- /dev/null +++ b/packages/chain-registry/src/mainnet/furya/chain.ts @@ -0,0 +1,71 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ufury" + } + ] + }, + "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": [ + { + "address": "https://rpc.furya.xyz", + "provider": "Furya Genesis Validator 🐝" + } + ], + "rest": [ + { + "address": "https://api.furya.xyz", + "provider": "Furya Genesis Validator 🐝" + } + ], + "grpc": [ + { + "address": "grpc.furya.xyz:443", + "provider": "Lavender.Five Nodes 🐝" + } + ] + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/furya/ibc.ts b/packages/chain-registry/src/mainnet/furya/ibc.ts new file mode 100644 index 000000000..3376532c5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/furya/ibc.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-417", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-160", + "connection_id": "connection-123" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-119", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3029", + "connection_id": "connection-2515" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8690", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-385", + "connection_id": "connection-361" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-271", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/furya/ibc_chain1.ts b/packages/chain-registry/src/mainnet/furya/ibc_chain1.ts new file mode 100644 index 000000000..3376532c5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/furya/ibc_chain1.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-417", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-160", + "connection_id": "connection-123" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-119", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3029", + "connection_id": "connection-2515" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8690", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-385", + "connection_id": "connection-361" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-271", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/furya/index.ts b/packages/chain-registry/src/mainnet/furya/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/furya/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/fxcore/assets.ts b/packages/chain-registry/src/mainnet/fxcore/assets.ts new file mode 100644 index 000000000..ae9d02ed5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/fxcore/assets.ts @@ -0,0 +1,66 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "fxcore", + "assets": [ + { + "description": "The native staking token of the Function X", + "denom_units": [ + { + "denom": "FX", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The cross chain token of the Function X", + "denom_units": [ + { + "denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "exponent": 0, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/fxcore/chain.ts b/packages/chain-registry/src/mainnet/fxcore/chain.ts new file mode 100644 index 000000000..ccbd41d9d --- /dev/null +++ b/packages/chain-registry/src/mainnet/fxcore/chain.ts @@ -0,0 +1,86 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.46" + }, + "apis": { + "rpc": [ + { + "address": "https://fx-json.functionx.io", + "provider": "Function X" + } + ], + "rest": [ + { + "address": "https://fx-rest.functionx.io", + "provider": "Function X" + } + ], + "grpc": [ + { + "address": "https://fx-grpc.functionx.io", + "provider": "Function X" + }, + { + "address": "https://fx-grpc.portfolio-x.xyz:9090", + "provider": "Portfolio X" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://fx-web3.functionx.io", + "provider": "Function X" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/fxcore/ibc.ts b/packages/chain-registry/src/mainnet/fxcore/ibc.ts new file mode 100644 index 000000000..82e93423f --- /dev/null +++ b/packages/chain-registry/src/mainnet/fxcore/ibc.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-128", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "fxcore", + "client_id": "07-tendermint-13", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-585", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2716", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "pundix", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/fxcore/ibc_chain1.ts b/packages/chain-registry/src/mainnet/fxcore/ibc_chain1.ts new file mode 100644 index 000000000..8eb9f5ba1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/fxcore/ibc_chain1.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2716", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "pundix", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/fxcore/index.ts b/packages/chain-registry/src/mainnet/fxcore/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/fxcore/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/galaxy/assets.ts b/packages/chain-registry/src/mainnet/galaxy/assets.ts new file mode 100644 index 000000000..38c6fe78f --- /dev/null +++ b/packages/chain-registry/src/mainnet/galaxy/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "galaxy", + "assets": [ + { + "description": "GLX is the staking token of the Galaxy Chain", + "denom_units": [ + { + "denom": "uglx", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/galaxy/chain.ts b/packages/chain-registry/src/mainnet/galaxy/chain.ts new file mode 100644 index 000000000..59cdffcfd --- /dev/null +++ b/packages/chain-registry/src/mainnet/galaxy/chain.ts @@ -0,0 +1,55 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": [ + { + "kind": "ping.pub", + "url": "https://explorer.postcapitalist.io/Galaxy", + "tx_page": "https://explorer.postcapitalist.io/Galaxy/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/galaxy/ibc.ts b/packages/chain-registry/src/mainnet/galaxy/ibc.ts new file mode 100644 index 000000000..d3e18a78e --- /dev/null +++ b/packages/chain-registry/src/mainnet/galaxy/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-236", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/galaxy/ibc_chain1.ts b/packages/chain-registry/src/mainnet/galaxy/ibc_chain1.ts new file mode 100644 index 000000000..d3e18a78e --- /dev/null +++ b/packages/chain-registry/src/mainnet/galaxy/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "galaxy", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1928", + "connection_id": "connection-1500" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-236", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/galaxy/index.ts b/packages/chain-registry/src/mainnet/galaxy/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/galaxy/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/gateway/assets.ts b/packages/chain-registry/src/mainnet/gateway/assets.ts new file mode 100644 index 000000000..1cb909bd0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gateway/assets.ts @@ -0,0 +1,598 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "gateway", + "assets": [ + { + "description": "The native fee token of Gateway.", + "denom_units": [ + { + "denom": "utest", + "exponent": 0, + "aliases": [] + }, + { + "denom": "test", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "sdk.coin", + "base": "utest", + "name": "Test", + "display": "test", + "symbol": "TEST" + }, + { + "description": "the native staking token of Gateway.", + "denom_units": [ + { + "denom": "uworm", + "exponent": 0, + "aliases": [] + }, + { + "denom": "worm", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "sdk.coin", + "base": "uworm", + "name": "Worm", + "display": "worm", + "symbol": "WORM" + }, + { + "description": "Sui (Wormhole), SUI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "denom_units": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "exponent": 0, + "aliases": [] + }, + { + "denom": "wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8", + "exponent": 8, + "aliases": [] + } + ], + "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" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" + } + ] + }, + { + "description": "Wrapped liquid staked Ether 2.0 (Wormhole), wstETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "denom_units": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + } + }, + { + "description": "Aptos Coin (Wormhole), APT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "denom_units": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "aptos", + "base_denom": "0x1::aptos_coin::AptosCoin" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + }, + { + "description": "Wrapped SOL (Wormhole), SOL, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "denom_units": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "So11111111111111111111111111111111111111112" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "So11111111111111111111111111111111111111112" + }, + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "exponent": 0, + "aliases": [] + }, + { + "denom": "wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5", + "exponent": 5, + "aliases": [] + } + ], + "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" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263" + }, + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" + } + ], + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x18084fba666a33d37592fa2633fd49a74dd93a88" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x18084fba666a33d37592fa2633fd49a74dd93a88" + }, + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "exponent": 0, + "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": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "avalanche", + "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "avalanche", + "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" + }, + "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": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "exponent": 0, + "aliases": [ + "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3" + ] + }, + { + "denom": "wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6", + "exponent": 6, + "aliases": [ + "pyth" + ] + } + ], + "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" + }, + "provider": "Wormhole" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3" + }, + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gateway/chain.ts b/packages/chain-registry/src/mainnet/gateway/chain.ts new file mode 100644 index 000000000..39fb8762e --- /dev/null +++ b/packages/chain-registry/src/mainnet/gateway/chain.ts @@ -0,0 +1,95 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uworm" + } + ] + }, + "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": [ + { + "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" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/gateway_logo.png" + }, + "apis": { + "rpc": [ + { + "address": "https://tncnt-eu-wormchain-main-01.rpc.p2p.world/", + "provider": "P2P" + }, + { + "address": "https://wormchain-rpc.quickapi.com/", + "provider": "ChainLayer" + } + ], + "rest": [ + { + "address": "https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/", + "provider": "P2P" + }, + { + "address": "https://wormchain-lcd.quickapi.com/", + "provider": "ChainLayer" + } + ], + "grpc": [ + { + "address": "tncnt-eu-wormchain-main-01-grpc.rpc.p2p.world:80", + "provider": "P2P" + } + ] + }, + "explorers": [ + { + "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" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gateway/ibc.ts b/packages/chain-registry/src/mainnet/gateway/ibc.ts new file mode 100644 index 000000000..305e6f75f --- /dev/null +++ b/packages/chain-registry/src/mainnet/gateway/ibc.ts @@ -0,0 +1,97 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2927", + "connection_id": "connection-2424" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2186", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gateway/ibc_chain1.ts b/packages/chain-registry/src/mainnet/gateway/ibc_chain1.ts new file mode 100644 index 000000000..8be58d454 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gateway/ibc_chain1.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gateway", + "client_id": "07-tendermint-13", + "connection_id": "connection-9" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-153", + "connection_id": "connection-117" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2927", + "connection_id": "connection-2424" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2186", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gateway/index.ts b/packages/chain-registry/src/mainnet/gateway/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gateway/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/genesisl1/assets.ts b/packages/chain-registry/src/mainnet/genesisl1/assets.ts new file mode 100644 index 000000000..b7899922c --- /dev/null +++ b/packages/chain-registry/src/mainnet/genesisl1/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "genesisl1", + "assets": [ + { + "description": "L1 coin is the GenesisL1 blockchain utility, governance and EVM token", + "denom_units": [ + { + "denom": "el1", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/genesisl1/chain.ts b/packages/chain-registry/src/mainnet/genesisl1/chain.ts new file mode 100644 index 000000000..8870a51b0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/genesisl1/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "el1" + } + ] + }, + "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": [ + { + "address": "https://26657.genesisl1.org", + "provider": "GenesisL1" + } + ], + "rest": [ + { + "address": "https://api.genesisl1.org", + "provider": "GenesisL1" + } + ] + }, + "explorers": [ + { + "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": "🔥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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/genesisl1/ibc.ts b/packages/chain-registry/src/mainnet/genesisl1/ibc.ts new file mode 100644 index 000000000..36b35eb59 --- /dev/null +++ b/packages/chain-registry/src/mainnet/genesisl1/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-253", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/genesisl1/ibc_chain1.ts b/packages/chain-registry/src/mainnet/genesisl1/ibc_chain1.ts new file mode 100644 index 000000000..36b35eb59 --- /dev/null +++ b/packages/chain-registry/src/mainnet/genesisl1/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "genesisl1", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1983", + "connection_id": "connection-1539" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-253", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/genesisl1/index.ts b/packages/chain-registry/src/mainnet/genesisl1/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/genesisl1/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/gitopia/assets.ts b/packages/chain-registry/src/mainnet/gitopia/assets.ts new file mode 100644 index 000000000..e0dec48da --- /dev/null +++ b/packages/chain-registry/src/mainnet/gitopia/assets.ts @@ -0,0 +1,39 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "gitopia", + "assets": [ + { + "description": "The native token of Gitopia", + "denom_units": [ + { + "denom": "ulore", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png" + } + ], + "coingecko_id": "gitopia" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gitopia/chain.ts b/packages/chain-registry/src/mainnet/gitopia/chain.ts new file mode 100644 index 000000000..635aeacee --- /dev/null +++ b/packages/chain-registry/src/mainnet/gitopia/chain.ts @@ -0,0 +1,509 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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": "https://gitopia-rpc.polkachu.com:443", + "provider": "polkachu" + }, + { + "address": "https://gitopia-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc.gitopia.nodestake.top:443", + "provider": "nodestake" + }, + { + "address": "https://gitopia-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://gitopia-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://m-gitopia.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "http://gitopia.rpc.m.stavr.tech:51057", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-gitopia.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://gitopia-rpc.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://rpc-gitopia.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://gitopia.rpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://gitopia-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://rpc.gitopia.silentvalidator.com", + "provider": "silent" + }, + { + "address": "https://gitopia-rpc.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://rpc-gitopia.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://gitopia.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc.gitopia.sgtstake.com", + "provider": "SGTstake" + }, + { + "address": "https://mainnet-gitopia-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://rpc.gitopia.quokkastake.io", + "provider": "🐹 Quokka Stake" + }, + { + "address": "http://gitopia.rpc.tarabukin.work:60557", + "provider": "tarabukinivan" + }, + { + "address": "https://rpc.gitopia.roomit.xyz", + "provider": "RoomIT" + }, + { + "address": "https://gitopia.rpc.moonbridge.team", + "provider": "Moonbridge" + }, + { + "address": "https://gitopia-rpc.stakeangle.com", + "provider": "StakeAngle" + }, + { + "address": "https://gitopia.rpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" + }, + { + "address": "https://rpc.gitopia.sbgid.com", + "provider": "kokos" + }, + { + "address": "https://gitopia.rpc.stakevillage.net", + "provider": "Stake Village" + }, + { + "address": "https://gitopia-rpc.enigma-validator.com/", + "provider": "Enigma" + }, + { + "address": "https://rpc.gitopia.tcnetwork.io/", + "provider": "TC Network" + }, + { + "address": "https://gitopia.nodejumper.io:443", + "provider": "NODEJUMPER" + }, + { + "address": "https://rpc.gitopia.stakeup.tech/", + "provider": "StakeUp" + }, + { + "address": "https://gitopia-mainnet.rpc.l0vd.com:443", + "provider": "L0vd.com ❤️" + } + ], + "rest": [ + { + "address": "http://gitopia.api.nodersteam.com:20017", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://gitopia-api.polkachu.com:443", + "provider": "polkachu" + }, + { + "address": "https://gitopia-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api.gitopia.nodestake.top:443", + "provider": "nodestake" + }, + { + "address": "https://gitopia-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://gitopia-mainnet-lcd.autostake.com:443", + "provider": "autostake" + }, + { + "address": "https://gitopia-api.ibs.team:443", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://m-gitopia.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://gitopia.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api-gitopia.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://gitopia-api.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://lcd-gitopia.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://gitopia.api.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://gitopia-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://api.gitopia.silentvalidator.com", + "provider": "silent" + }, + { + "address": "https://gitopia-api.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://api-gitopia.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://gitopia.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://api.gitopia.sgtstake.com/", + "provider": "SGTstake" + }, + { + "address": "https://mainnet-gitopia-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://api.gitopia.quokkastake.io", + "provider": "🐹 Quokka Stake" + }, + { + "address": "https://api.gitopia.roomit.xyz", + "provider": "RoomIT" + }, + { + "address": "https://gitopia.api.moonbridge.team", + "provider": "Moonbridge" + }, + { + "address": "http://gitopia-rpc.stakeangle.com:41317", + "provider": "StakeAngle" + }, + { + "address": "https://gitopia.api.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" + }, + { + "address": "https://api.gitopia.sbgid.com", + "provider": "kokos" + }, + { + "address": "https://gitopia.api.stakevillage.net", + "provider": "Stake Village" + }, + { + "address": "https://gitopia-lcd.enigma-validator.com/", + "provider": "Enigma" + }, + { + "address": "https://rest.gitopia.tcnetwork.io/", + "provider": "TC Network" + }, + { + "address": "https://gitopia.nodejumper.io:1317", + "provider": "NODEJUMPER" + }, + { + "address": "https://api.gitopia.stakeup.tech/", + "provider": "StakeUp" + }, + { + "address": "https://gitopia-mainnet.api.l0vd.com:443", + "provider": "L0vd.com ❤️" + } + ], + "grpc": [ + { + "address": "grpc.gitopia.indonode.net:26090", + "provider": "indonode" + }, + { + "address": "gitopia.grpc.nodersteam.com:9201", + "provider": "[NODERS]TEAM" + }, + { + "address": "gitopia-grpc.polkachu.com:11390", + "provider": "polkachu" + }, + { + "address": "services.staketab.com:9410", + "provider": "Staketab" + }, + { + "address": "https://gitopia-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://grpc.gitopia.nodestake.top:443", + "provider": "nodestake" + }, + { + "address": "https://grpc-gitopia.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "http://gitopia.grpc.m.stavr.tech:5123", + "provider": "🔥STAVR🔥" + }, + { + "address": "gitopia-grpc.genznodes.dev:33090", + "provider": "genznodes" + }, + { + "address": "https://grpc.gitopia.hexnodes.co:16090", + "provider": "Hexnodes" + }, + { + "address": "https://gitopia.grpc.liveraven.net:443", + "provider": "LiveRaveN" + }, + { + "address": "https://grpc.gitopia.indonode.net:26090", + "provider": "Indonode" + }, + { + "address": "gitopia-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "grpc.gitopia.silentvalidator.com:443", + "provider": "silent" + }, + { + "address": "https://gitopia-grpc.ramuchi.tech:16001", + "provider": "ramuchi.tech" + }, + { + "address": "grpc-gitopia.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "gitopia.grpc.kjnodes.com:14190", + "provider": "kjnodes" + }, + { + "address": "grpc.gitopia.roomit.xyz:8443", + "provider": "RoomIT" + }, + { + "address": "https://gitopia.grpc.moonbridge.team", + "provider": "Moonbridge" + }, + { + "address": "http://gitopia-rpc.stakeangle.com:41390", + "provider": "StakeAngle" + }, + { + "address": "https://gitopia.grpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" + }, + { + "address": "https://grpc.gitopia.sbgid.com", + "provider": "kokos" + }, + { + "address": "mainnet-gitopia-grpc.konsortech.xyz:38090", + "provider": "KonsorTech" + }, + { + "address": "gitopia.grpc.stakevillage.net:14190", + "provider": "Stake Village" + }, + { + "address": "gitopia.nodejumper.io:9090", + "provider": "NODEJUMPER" + }, + { + "address": "grpc.gitopia.stakeup.tech:443", + "provider": "StakeUp" + }, + { + "address": "gitopia-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com ❤️" + } + ] + }, + "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": "🔥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": "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": "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": "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": "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": "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": "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" + } +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gitopia/ibc.ts b/packages/chain-registry/src/mainnet/gitopia/ibc.ts new file mode 100644 index 000000000..8f61b7099 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gitopia/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-781", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gitopia/ibc_chain1.ts b/packages/chain-registry/src/mainnet/gitopia/ibc_chain1.ts new file mode 100644 index 000000000..8f61b7099 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gitopia/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gitopia", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2787", + "connection_id": "connection-2287" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-781", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gitopia/index.ts b/packages/chain-registry/src/mainnet/gitopia/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gitopia/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/gravitybridge/assets.ts b/packages/chain-registry/src/mainnet/gravitybridge/assets.ts new file mode 100644 index 000000000..fd4f9bed4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gravitybridge/assets.ts @@ -0,0 +1,423 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "gravitybridge", + "assets": [ + { + "description": "The native token of Gravity Bridge", + "denom_units": [ + { + "denom": "ugraviton", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg" + } + ] + }, + { + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", + "denom_units": [ + { + "denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "exponent": 0 + }, + { + "denom": "pstake", + "exponent": 18 + } + ], + "base": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "name": "pSTAKE Finance", + "display": "pstake", + "symbol": "PSTAKE", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "persistence", + "base_denom": "uxprt" + }, + "provider": "Persistence" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" + }, + "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" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" + } + ] + }, + { + "description": "Gravity Bridge WETH", + "denom_units": [ + { + "denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Ethereum" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + } + ] + }, + { + "description": "Gravity Bridge USDC", + "denom_units": [ + { + "denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Circle" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "Gravity Bridge USDT", + "denom_units": [ + { + "denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Tether" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ] + }, + { + "description": "Gravity Bridge WBTC", + "denom_units": [ + { + "denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "BitGo, Kyber, and Ren" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" + } + ] + }, + { + "description": "Gravity Bridge DAI", + "denom_units": [ + { + "denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "MakerDAO" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + } + ] + }, + { + "description": "Gravity Bridge sDAI", + "denom_units": [ + { + "denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "image_sync": { + "base_denom": "ethereum", + "chain_name": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg" + } + ] + }, + { + "description": "Gravity Bridge OCC", + "denom_units": [ + { + "denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png" + } + ] + }, + { + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "denom_units": [ + { + "denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gravitybridge/chain.ts b/packages/chain-registry/src/mainnet/gravitybridge/chain.ts new file mode 100644 index 000000000..f1b3030ea --- /dev/null +++ b/packages/chain-registry/src/mainnet/gravitybridge/chain.ts @@ -0,0 +1,236 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": "http://gravity-bridge-1-08.nodes.amhost.net:26657", + "provider": "amhost" + }, + { + "address": "https://gravity-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-gravitybridge-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://gravitybridge-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc.gravity.bh.rocks/", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://gravity-rpc.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://gravity-rpc.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://rpc-gravity-bridge-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://gravity-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://gravity-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc.g-bridge.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://gravitychain.io:1317", + "provider": "althea" + }, + { + "address": "https://api-gravitybridge-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://gravity-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://gravitybridge-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api.gravity.bh.rocks/", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://gravity-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://gravity-api.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://api-gravity-bridge-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://gravity-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://gravity-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://lcd.g-bridge.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "gravity-bridge-1-08.nodes.amhost.net:9090", + "provider": "amhost" + }, + { + "address": "grpc-gravitybridge-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "gravity-grpc.polkachu.com:14290", + "provider": "Polkachu" + }, + { + "address": "gravitybridge-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://gravity-grpc.ramuchi.tech:10090", + "provider": "ramuchi.tech" + }, + { + "address": "grpc-gravity-bridge-01.stakeflow.io:1302", + "provider": "Stakeflow" + }, + { + "address": "services.staketab.com:9017", + "provider": "Staketab" + }, + { + "address": "gravity-grpc.w3coins.io:14290", + "provider": "w3coins" + }, + { + "address": "https://grpc.g-bridge.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gravitybridge/ibc.ts b/packages/chain-registry/src/mainnet/gravitybridge/ibc.ts new file mode 100644 index 000000000..b214339c7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gravitybridge/ibc.ts @@ -0,0 +1,468 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-106", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-173", + "connection_id": "connection-154" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-91", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-145", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-421", + "connection_id": "connection-399" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-142", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-100", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-225", + "connection_id": "connection-189" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-69", + "connection_id": "connection-45" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-107", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nyx", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-13", + "connection_id": "connection-13" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1737", + "connection_id": "connection-1340" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-144", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-51", + "connection_id": "connection-49" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-140", + "connection_id": "connection-139" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-40", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-79", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "unification", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gravitybridge/ibc_chain1.ts b/packages/chain-registry/src/mainnet/gravitybridge/ibc_chain1.ts new file mode 100644 index 000000000..289498e52 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gravitybridge/ibc_chain1.ts @@ -0,0 +1,251 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-100", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-225", + "connection_id": "connection-189" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-69", + "connection_id": "connection-45" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-107", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nyx", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-13", + "connection_id": "connection-13" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1737", + "connection_id": "connection-1340" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-144", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-51", + "connection_id": "connection-49" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-140", + "connection_id": "connection-139" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-40", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-79", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "unification", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/gravitybridge/index.ts b/packages/chain-registry/src/mainnet/gravitybridge/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/gravitybridge/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/haqq/assets.ts b/packages/chain-registry/src/mainnet/haqq/assets.ts new file mode 100644 index 000000000..9bd251280 --- /dev/null +++ b/packages/chain-registry/src/mainnet/haqq/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "haqq", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Haqq Network", + "denom_units": [ + { + "denom": "aISLM", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/haqq/chain.ts b/packages/chain-registry/src/mainnet/haqq/chain.ts new file mode 100644 index 000000000..88b12892e --- /dev/null +++ b/packages/chain-registry/src/mainnet/haqq/chain.ts @@ -0,0 +1,209 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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://m-s1-tm.haqq.sh", + "provider": "kioqq" + }, + { + "address": "http://haqq.rpc.nodersteam.com:19657", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc.haqq.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://haqq-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://haqq-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-haqq.sr20de.xyz:443", + "provider": "Sr20de" + } + ], + "rest": [ + { + "address": "https://rest.cosmos.haqq.network", + "provider": "Haqq" + }, + { + "address": "https://m-s1-sdk.haqq.sh", + "provider": "kioqq" + }, + { + "address": "http://haqq.api.nodersteam.com:19017", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://api.haqq.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://haqq-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://haqq-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://mainnet-haqq-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://api-haqq.sr20de.xyz", + "provider": "Sr20de" + } + ], + "grpc": [ + { + "address": "https://grpc.cosmos.haqq.network", + "provider": "Haqq" + }, + { + "address": "grpc://m-s1-grpc.haqq.sh:1337", + "provider": "kioqq" + }, + { + "address": "haqq.grpc.nodersteam.com:9191", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://grpc.haqq.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "haqq-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://haqq-grpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "mainnet-haqq-grpc.konsortech.xyz:11090", + "provider": "KonsorTech" + }, + { + "address": "https://grpc-haqq.sr20de.xyz", + "provider": "Sr20de" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://rpc.eth.haqq.network", + "provider": "Haqq" + }, + { + "address": "https://m-s1-evm-rpc.haqq.sh", + "provider": "kioqq" + }, + { + "address": "https://jsonrpc.haqq.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://haqq-evm.publicnode.com", + "provider": "Allnodes.com ⚡️ Nodes & Staking" + }, + { + "address": "https://haqq-jsonrpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://mainnet-haqq-evm.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://evm-haqq.sr20de.xyz", + "provider": "Sr20de" + } + ] + }, + "explorers": [ + { + "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": "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": "KonsorTech Explorer", + "url": "https://explorer.konsortech.xyz/haqq", + "tx_page": "https://explorer.konsortech.xyz/haqq/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/haqq/ibc.ts b/packages/chain-registry/src/mainnet/haqq/ibc.ts new file mode 100644 index 000000000..818a6af08 --- /dev/null +++ b/packages/chain-registry/src/mainnet/haqq/ibc.ts @@ -0,0 +1,191 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1153", + "connection_id": "connection-874" + }, + "chain_2": { + "chain_name": "haqq", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-632", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-100", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "haqq", + "client_id": "07-tendermint-5", + "connection_id": "connection-7" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-149", + "connection_id": "connection-193" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-58", + "connection_id": "connection-56" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2871", + "connection_id": "connection-2388" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1575", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/haqq/ibc_chain1.ts b/packages/chain-registry/src/mainnet/haqq/ibc_chain1.ts new file mode 100644 index 000000000..2218b8616 --- /dev/null +++ b/packages/chain-registry/src/mainnet/haqq/ibc_chain1.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-58", + "connection_id": "connection-56" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2871", + "connection_id": "connection-2388" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1575", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/haqq/index.ts b/packages/chain-registry/src/mainnet/haqq/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/haqq/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/highbury/assets.ts b/packages/chain-registry/src/mainnet/highbury/assets.ts new file mode 100644 index 000000000..34f72e3f7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/highbury/assets.ts @@ -0,0 +1,90 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "highbury", + "assets": [ + { + "description": "The native staking and governance token of the Blackfury ecosystem", + "denom_units": [ + { + "denom": "ufury", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Governance token of Jinx Wallet and Fury Lend Protocol", + "denom_units": [ + { + "denom": "jinx", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Governance token of Fury Swap Protocol", + "denom_units": [ + { + "denom": "jinxy", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/highbury/chain.ts b/packages/chain-registry/src/mainnet/highbury/chain.ts new file mode 100644 index 000000000..40db2851a --- /dev/null +++ b/packages/chain-registry/src/mainnet/highbury/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ufury" + } + ] + }, + "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": [ + { + "address": "https://gridiron.furya.io", + "provider": "fanfury" + } + ], + "rest": [ + { + "address": "https://api-mainnet.furya.io/", + "provider": "fanfury" + } + ], + "grpc": [ + { + "address": "api-mainnet.furya.io:9090", + "provider": "fanfury" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://rest.furya.io/", + "provider": "fanfury" + } + ] + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/highbury/index.ts b/packages/chain-registry/src/mainnet/highbury/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/highbury/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/humans/assets.ts b/packages/chain-registry/src/mainnet/humans/assets.ts new file mode 100644 index 000000000..37cf71cd9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/humans/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "humans", + "assets": [ + { + "description": "The native staking and governance token of Humans.ai.", + "denom_units": [ + { + "denom": "aheart", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/humans/chain.ts b/packages/chain-registry/src/mainnet/humans/chain.ts new file mode 100644 index 000000000..93300f8dd --- /dev/null +++ b/packages/chain-registry/src/mainnet/humans/chain.ts @@ -0,0 +1,236 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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://humans.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "http://humans.rpc.nodersteam.com:22657", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc-humans.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://humans-mainnet-rpc.itrocket.net", + "provider": "itrocket" + }, + { + "address": "https://humans-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://rpc-humansai.thenop.io:443", + "provider": "TheNOP.io" + }, + { + "address": "https://humans-rpc.stakeangle.com/", + "provider": "StakeAngle" + }, + { + "address": "https://rpc.humans.stakepool.dev.br", + "provider": "StakePool" + }, + { + "address": "https://humans-rpc.anyvalid.com:26627", + "provider": "AnyValid" + }, + { + "address": "https://mainnet-humans-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://rpc.humans-mainnet.stake-take.com/", + "provider": "Stake-Take" + } + ], + "rest": [ + { + "address": "https://api.humans.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://humans.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "http://humans.api.nodersteam.com:22017", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://api-humans.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://humans-mainnet-api.itrocket.net", + "provider": "itrocket" + }, + { + "address": "https://humans-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://api-humansai.thenop.io:443", + "provider": "TheNOP.io" + }, + { + "address": "http://humans-rpc.stakeangle.com:41417", + "provider": "StakeAngle" + }, + { + "address": "https://rest.humans.stakepool.dev.br", + "provider": "StakePool" + }, + { + "address": "https://mainnet-humans-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://api.humans-mainnet.stake-take.com/", + "provider": "Stake-Take" + } + ], + "grpc": [ + { + "address": "https://grpc.humans.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://humans.grpc.kjnodes.com/", + "provider": "kjnodes" + }, + { + "address": "https://grpc-humans.nodeist.net/", + "provider": "Nodeist" + }, + { + "address": "humans-mainnet-grpc.itrocket.net:17090", + "provider": "itrocket" + }, + { + "address": "http://humans-rpc.stakeangle.com:41490/", + "provider": "Staketab" + }, + { + "address": "humans.grpc.nodersteam.com:9221", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://grpc-humans.cosmos-spaces.cloud:1190", + "provider": "StakePool" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://jsonrpc.humans.nodestake.top/", + "provider": "NodeStake" + }, + { + "address": "https://humans-mainnet-evm.itrocket.net", + "provider": "itrocket" + }, + { + "address": "https://humans-evm-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://evm.humans.stakepool.dev.br", + "provider": "Stakepool" + }, + { + "address": "https://mainnet-humans-evm.konsortech.xyz", + "provider": "KonsorTech" + } + ] + }, + "explorers": [ + { + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/humans/index.ts b/packages/chain-registry/src/mainnet/humans/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/humans/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/ibc.ts b/packages/chain-registry/src/mainnet/ibc.ts new file mode 100644 index 000000000..f2bb2df39 --- /dev/null +++ b/packages/chain-registry/src/mainnet/ibc.ts @@ -0,0 +1,100 @@ +import { IBCInfo } from '@chain-registry/types'; + +import * as _8ball from './8ball'; +import * as _acrechain from './acrechain'; +import * as _agoric from './agoric'; +import * as _aioz from './aioz'; +import * as _akash from './akash'; +import * as _andromeda from './andromeda'; +import * as _archway from './archway'; +import * as _arkh from './arkh'; +import * as _assetmantle from './assetmantle'; +import * as _aura from './aura'; +import * as _axelar from './axelar'; +import * as _bandchain from './bandchain'; +import * as _beezee from './beezee'; +import * as _bitcanna from './bitcanna'; +import * as _bitsong from './bitsong'; +import * as _bluzelle from './bluzelle'; +import * as _bostrom from './bostrom'; +import * as _canto from './canto'; +import * as _carbon from './carbon'; +import * as _celestia from './celestia'; +import * as _cerberus from './cerberus'; +import * as _cheqd from './cheqd'; +import * as _chihuahua from './chihuahua'; +import * as _comdex from './comdex'; +import * as _composable from './composable'; +import * as _coreum from './coreum'; +import * as _cosmoshub from './cosmoshub'; +import * as _crescent from './crescent'; +import * as _cronos from './cronos'; +import * as _cryptoorgchain from './cryptoorgchain'; +import * as _cudos from './cudos'; +import * as _decentr from './decentr'; +import * as _desmos from './desmos'; +import * as _dig from './dig'; +import * as _doravota from './doravota'; +import * as _dydx from './dydx'; +import * as _dyson from './dyson'; +import * as _echelon from './echelon'; +import * as _emoney from './emoney'; +import * as _empowerchain from './empowerchain'; +import * as _evmos from './evmos'; +import * as _fetchhub from './fetchhub'; +import * as _furya from './furya'; +import * as _fxcore from './fxcore'; +import * as _galaxy from './galaxy'; +import * as _gateway from './gateway'; +import * as _genesisl1 from './genesisl1'; +import * as _gitopia from './gitopia'; +import * as _gravitybridge from './gravitybridge'; +import * as _haqq from './haqq'; +import * as _impacthub from './impacthub'; +import * as _imversed from './imversed'; +import * as _injective from './injective'; +import * as _irisnet from './irisnet'; +import * as _jackal from './jackal'; +import * as _juno from './juno'; +import * as _kava from './kava'; +import * as _kichain from './kichain'; +import * as _konstellation from './konstellation'; +import * as _kujira from './kujira'; +import * as _kyve from './kyve'; +import * as _lambda from './lambda'; +import * as _likecoin from './likecoin'; +import * as _lumenx from './lumenx'; +import * as _lumnetwork from './lumnetwork'; +import * as _mars from './mars'; +import * as _medasdigital from './medasdigital'; +import * as _meme from './meme'; +import * as _microtick from './microtick'; +import * as _migaloo from './migaloo'; +import * as _neutron from './neutron'; +import * as _noble from './noble'; +import * as _nois from './nois'; +import * as _nolus from './nolus'; +import * as _nomic from './nomic'; +import * as _nyx from './nyx'; +import * as _odin from './odin'; +import * as _okexchain from './okexchain'; +import * as _omniflixhub from './omniflixhub'; +import * as _onomy from './onomy'; +import * as _oraichain from './oraichain'; +import * as _osmosis from './osmosis'; +import * as _persistence from './persistence'; +import * as _planq from './planq'; +import * as _quicksilver from './quicksilver'; +import * as _regen from './regen'; +import * as _secretnetwork from './secretnetwork'; +import * as _sei from './sei'; +import * as _sentinel from './sentinel'; +import * as _sommelier from './sommelier'; +import * as _stafihub from './stafihub'; +import * as _stargaze from './stargaze'; +import * as _stride from './stride'; +import * as _terra from './terra' + +const ibc: IBCInfo[] = [..._8ball.ibc_chain1,..._acrechain.ibc_chain1,..._agoric.ibc_chain1,..._aioz.ibc_chain1,..._akash.ibc_chain1,..._andromeda.ibc_chain1,..._archway.ibc_chain1,..._arkh.ibc_chain1,..._assetmantle.ibc_chain1,..._aura.ibc_chain1,..._axelar.ibc_chain1,..._bandchain.ibc_chain1,..._beezee.ibc_chain1,..._bitcanna.ibc_chain1,..._bitsong.ibc_chain1,..._bluzelle.ibc_chain1,..._bostrom.ibc_chain1,..._canto.ibc_chain1,..._carbon.ibc_chain1,..._celestia.ibc_chain1,..._cerberus.ibc_chain1,..._cheqd.ibc_chain1,..._chihuahua.ibc_chain1,..._comdex.ibc_chain1,..._composable.ibc_chain1,..._coreum.ibc_chain1,..._cosmoshub.ibc_chain1,..._crescent.ibc_chain1,..._cronos.ibc_chain1,..._cryptoorgchain.ibc_chain1,..._cudos.ibc_chain1,..._decentr.ibc_chain1,..._desmos.ibc_chain1,..._dig.ibc_chain1,..._doravota.ibc_chain1,..._dydx.ibc_chain1,..._dyson.ibc_chain1,..._echelon.ibc_chain1,..._emoney.ibc_chain1,..._empowerchain.ibc_chain1,..._evmos.ibc_chain1,..._fetchhub.ibc_chain1,..._furya.ibc_chain1,..._fxcore.ibc_chain1,..._galaxy.ibc_chain1,..._gateway.ibc_chain1,..._genesisl1.ibc_chain1,..._gitopia.ibc_chain1,..._gravitybridge.ibc_chain1,..._haqq.ibc_chain1,..._impacthub.ibc_chain1,..._imversed.ibc_chain1,..._injective.ibc_chain1,..._irisnet.ibc_chain1,..._jackal.ibc_chain1,..._juno.ibc_chain1,..._kava.ibc_chain1,..._kichain.ibc_chain1,..._konstellation.ibc_chain1,..._kujira.ibc_chain1,..._kyve.ibc_chain1,..._lambda.ibc_chain1,..._likecoin.ibc_chain1,..._lumenx.ibc_chain1,..._lumnetwork.ibc_chain1,..._mars.ibc_chain1,..._medasdigital.ibc_chain1,..._meme.ibc_chain1,..._microtick.ibc_chain1,..._migaloo.ibc_chain1,..._neutron.ibc_chain1,..._noble.ibc_chain1,..._nois.ibc_chain1,..._nolus.ibc_chain1,..._nomic.ibc_chain1,..._nyx.ibc_chain1,..._odin.ibc_chain1,..._okexchain.ibc_chain1,..._omniflixhub.ibc_chain1,..._onomy.ibc_chain1,..._oraichain.ibc_chain1,..._osmosis.ibc_chain1,..._persistence.ibc_chain1,..._planq.ibc_chain1,..._quicksilver.ibc_chain1,..._regen.ibc_chain1,..._secretnetwork.ibc_chain1,..._sei.ibc_chain1,..._sentinel.ibc_chain1,..._sommelier.ibc_chain1,..._stafihub.ibc_chain1,..._stargaze.ibc_chain1,..._stride.ibc_chain1,..._terra.ibc_chain1]; + +export default ibc; diff --git a/packages/chain-registry/src/mainnet/idep/assets.ts b/packages/chain-registry/src/mainnet/idep/assets.ts new file mode 100644 index 000000000..969e38f43 --- /dev/null +++ b/packages/chain-registry/src/mainnet/idep/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "idep", + "assets": [ + { + "description": "The native token of IDEP chain", + "denom_units": [ + { + "denom": "IDEP", + "exponent": 6, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/idep/chain.ts b/packages/chain-registry/src/mainnet/idep/chain.ts new file mode 100644 index 000000000..cc016d61d --- /dev/null +++ b/packages/chain-registry/src/mainnet/idep/chain.ts @@ -0,0 +1,71 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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 🐝" + } + ] + }, + "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": "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": "TC Network", + "url": "https://explorer.tcnetwork.io/idep", + "tx_page": "https://explorer.tcnetwork.io/idep/transaction/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/idep/index.ts b/packages/chain-registry/src/mainnet/idep/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/idep/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/impacthub/assets.ts b/packages/chain-registry/src/mainnet/impacthub/assets.ts new file mode 100644 index 000000000..671b5f6f2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/impacthub/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "impacthub", + "assets": [ + { + "description": "The native token of IXO Chain", + "denom_units": [ + { + "denom": "uixo", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/impacthub/chain.ts b/packages/chain-registry/src/mainnet/impacthub/chain.ts new file mode 100644 index 000000000..e35c2c4e2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/impacthub/chain.ts @@ -0,0 +1,134 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uixo" + } + ] + }, + "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": [ + { + "address": "https://proxies.sifchain.finance/api/impacthub-3/rpc", + "provider": "sifchain" + }, + { + "address": "https://impacthub.ixo.world/rpc/", + "provider": "ixoworld" + }, + { + "address": "https://rpc-ixo-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://impacthub-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://ixo-rpc.ibs.team", + "provider": "Inter Blockchain Services" + } + ], + "rest": [ + { + "address": "https://proxies.sifchain.finance/api/impacthub-3/rest", + "provider": "sifchain" + }, + { + "address": "https://impacthub.ixo.world/rest/", + "provider": "ixoworld" + }, + { + "address": "https://api-ixo-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://impacthub-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://ixo-api.ibs.team", + "provider": "Inter Blockchain Services" + } + ], + "grpc": [ + { + "address": "grpc-ixo-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "impacthub-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/impacthub/ibc.ts b/packages/chain-registry/src/mainnet/impacthub/ibc.ts new file mode 100644 index 000000000..4e873e46a --- /dev/null +++ b/packages/chain-registry/src/mainnet/impacthub/ibc.ts @@ -0,0 +1,154 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-114", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "impacthub", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1451", + "connection_id": "connection-1137" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-39", + "connection_id": "connection-18" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/impacthub/ibc_chain1.ts b/packages/chain-registry/src/mainnet/impacthub/ibc_chain1.ts new file mode 100644 index 000000000..ef8e7cf9a --- /dev/null +++ b/packages/chain-registry/src/mainnet/impacthub/ibc_chain1.ts @@ -0,0 +1,95 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1451", + "connection_id": "connection-1137" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-39", + "connection_id": "connection-18" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/impacthub/index.ts b/packages/chain-registry/src/mainnet/impacthub/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/impacthub/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/imversed/assets.ts b/packages/chain-registry/src/mainnet/imversed/assets.ts new file mode 100644 index 000000000..18807f0a7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/imversed/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "imversed", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Imversed", + "denom_units": [ + { + "denom": "aimv", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/imversed/chain.ts b/packages/chain-registry/src/mainnet/imversed/chain.ts new file mode 100644 index 000000000..204a4363f --- /dev/null +++ b/packages/chain-registry/src/mainnet/imversed/chain.ts @@ -0,0 +1,73 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://jsonrpc.imversed.network:443", + "provider": "imversed" + } + ] + }, + "explorers": [ + { + "kind": "blockscout", + "url": "https://txe.imversed.network/", + "tx_page": "https://txe.imversed.network/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/imversed/ibc.ts b/packages/chain-registry/src/mainnet/imversed/ibc.ts new file mode 100644 index 000000000..70f7e8cc8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/imversed/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-517", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/imversed/ibc_chain1.ts b/packages/chain-registry/src/mainnet/imversed/ibc_chain1.ts new file mode 100644 index 000000000..70f7e8cc8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/imversed/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "imversed", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2366", + "connection_id": "connection-1866" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-517", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/imversed/index.ts b/packages/chain-registry/src/mainnet/imversed/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/imversed/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/index.ts b/packages/chain-registry/src/mainnet/index.ts new file mode 100644 index 000000000..512cb52fa --- /dev/null +++ b/packages/chain-registry/src/mainnet/index.ts @@ -0,0 +1,144 @@ +export * as _8ball from './8ball'; +export * as acrechain from './acrechain'; +export * as agoric from './agoric'; +export * as aioz from './aioz'; +export * as akash from './akash'; +export * as andromeda from './andromeda'; +export * as archway from './archway'; +export * as arkh from './arkh'; +export * as assetmantle from './assetmantle'; +export * as aura from './aura'; +export * as axelar from './axelar'; +export * as bandchain from './bandchain'; +export * as beezee from './beezee'; +export * as bitcanna from './bitcanna'; +export * as bitsong from './bitsong'; +export * as bluzelle from './bluzelle'; +export * as bostrom from './bostrom'; +export * as canto from './canto'; +export * as carbon from './carbon'; +export * as celestia from './celestia'; +export * as cerberus from './cerberus'; +export * as chain4energy from './chain4energy'; +export * as cheqd from './cheqd'; +export * as chihuahua from './chihuahua'; +export * as chimba from './chimba'; +export * as chronicnetwork from './chronicnetwork'; +export * as comdex from './comdex'; +export * as commercionetwork from './commercionetwork'; +export * as composable from './composable'; +export * as conscious from './conscious'; +export * as coreum from './coreum'; +export * as cosmoshub from './cosmoshub'; +export * as coss from './coss'; +export * as crescent from './crescent'; +export * as cronos from './cronos'; +export * as cryptoorgchain from './cryptoorgchain'; +export * as cudos from './cudos'; +export * as decentr from './decentr'; +export * as desmos from './desmos'; +export * as dig from './dig'; +export * as doravota from './doravota'; +export * as dydx from './dydx'; +export * as dyson from './dyson'; +export * as echelon from './echelon'; +export * as emoney from './emoney'; +export * as empowerchain from './empowerchain'; +export * as ethos from './ethos'; +export * as evmos from './evmos'; +export * as fetchhub from './fetchhub'; +export * as firmachain from './firmachain'; +export * as furya from './furya'; +export * as fxcore from './fxcore'; +export * as galaxy from './galaxy'; +export * as gateway from './gateway'; +export * as genesisl1 from './genesisl1'; +export * as gitopia from './gitopia'; +export * as gravitybridge from './gravitybridge'; +export * as haqq from './haqq'; +export * as highbury from './highbury'; +export * as humans from './humans'; +export * as idep from './idep'; +export * as impacthub from './impacthub'; +export * as imversed from './imversed'; +export * as injective from './injective'; +export * as irisnet from './irisnet'; +export * as jackal from './jackal'; +export * as juno from './juno'; +export * as kava from './kava'; +export * as kichain from './kichain'; +export * as konstellation from './konstellation'; +export * as kujira from './kujira'; +export * as kyve from './kyve'; +export * as lambda from './lambda'; +export * as likecoin from './likecoin'; +export * as logos from './logos'; +export * as loyal from './loyal'; +export * as lumenx from './lumenx'; +export * as lumnetwork from './lumnetwork'; +export * as mars from './mars'; +export * as mayachain from './mayachain'; +export * as medasdigital from './medasdigital'; +export * as meme from './meme'; +export * as microtick from './microtick'; +export * as migaloo from './migaloo'; +export * as mises from './mises'; +export * as mun from './mun'; +export * as mythos from './mythos'; +export * as neutron from './neutron'; +export * as nibiru from './nibiru'; +export * as noble from './noble'; +export * as nois from './nois'; +export * as nolus from './nolus'; +export * as nomic from './nomic'; +export * as nyx from './nyx'; +export * as octa from './octa'; +export * as odin from './odin'; +export * as okexchain from './okexchain'; +export * as omniflixhub from './omniflixhub'; +export * as onomy from './onomy'; +export * as oraichain from './oraichain'; +export * as osmosis from './osmosis'; +export * as panacea from './panacea'; +export * as passage from './passage'; +export * as passage1 from './passage1'; +export * as persistence from './persistence'; +export * as planq from './planq'; +export * as point from './point'; +export * as provenance from './provenance'; +export * as pundix from './pundix'; +export * as quasar from './quasar'; +export * as quicksilver from './quicksilver'; +export * as qwoyn from './qwoyn'; +export * as realio from './realio'; +export * as rebus from './rebus'; +export * as regen from './regen'; +export * as rizon from './rizon'; +export * as secretnetwork from './secretnetwork'; +export * as sei from './sei'; +export * as sentinel from './sentinel'; +export * as sge from './sge'; +export * as shareledger from './shareledger'; +export * as shentu from './shentu'; +export * as sifchain from './sifchain'; +export * as six from './six'; +export * as sommelier from './sommelier'; +export * as source from './source'; +export * as stafihub from './stafihub'; +export * as stargaze from './stargaze'; +export * as starname from './starname'; +export * as stratos from './stratos'; +export * as stride from './stride'; +export * as tenet from './tenet'; +export * as teritori from './teritori'; +export * as terpnetwork from './terpnetwork'; +export * as terra from './terra'; +export * as terra2 from './terra2'; +export * as tgrade from './tgrade'; +export * as thorchain from './thorchain'; +export * as umee from './umee'; +export * as unification from './unification'; +export * as ununifi from './ununifi'; +export * as uptick from './uptick'; +export * as vidulum from './vidulum'; +export * as xpla from './xpla' \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/injective/assets.ts b/packages/chain-registry/src/mainnet/injective/assets.ts new file mode 100644 index 000000000..518b11948 --- /dev/null +++ b/packages/chain-registry/src/mainnet/injective/assets.ts @@ -0,0 +1,182 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "injective", + "assets": [ + { + "description": "The INJ token is the native governance token for the Injective chain.", + "denom_units": [ + { + "denom": "inj", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Tether USDt on Injective", + "denom_units": [ + { + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-143", + "path": "transfer/channel-143/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + }, + { + "description": "ERIS liquid staked INJ", + "denom_units": [ + { + "denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "autism", + "images": [ + { + "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": [ + { + "denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "dog-wif-nuchucks", + "images": [ + { + "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": [ + { + "denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/injective/chain.ts b/packages/chain-registry/src/mainnet/injective/chain.ts new file mode 100644 index 000000000..d0e011fc4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/injective/chain.ts @@ -0,0 +1,221 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://rpc-injective.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://injective-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://injective-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-injective-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "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.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://rpc-injective-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://injective-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://injective-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://injective-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + } + ], + "rest": [ + { + "address": "https://injective-lcd.quickapi.com:443", + "provider": "Chainlayer" + }, + { + "address": "https://api-injective-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://injective-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://injective-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rest.injective.posthuman.digital:443", + "provider": "POSTHUMAN ꝏ DVS" + }, + { + "address": "https://lcd-injective.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api-injective-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://rest-injective.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://injective-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://injective-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://injective-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + } + ], + "grpc": [ + { + "address": "grpc-injective-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "injective-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "injective-grpc.polkachu.com:14390", + "provider": "Polkachu" + }, + { + "address": "injective-mainnet-grpc.autostake.com:443", + "provider": "AutoStake.com" + }, + { + "address": "grpc-injective.cosmos-spaces.cloud:9900", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc.injective.posthuman.digital:80", + "provider": "POSTHUMAN ꝏ DVS" + }, + { + "address": "grpc-injective.architectnodes.com:1443", + "provider": "Architect Nodes" + }, + { + "address": "grpc-injective-01.stakeflow.io:2102", + "provider": "Stakeflow" + }, + { + "address": "injective-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "injective-grpc.w3coins.io:14390", + "provider": "w3coins" + }, + { + "address": "grpc-injective.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ] + }, + "explorers": [ + { + "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": "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": "Stakeflow", + "url": "https://stakeflow.io/injective", + "account_page": "https://stakeflow.io/injective/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/injective/ibc.ts b/packages/chain-registry/src/mainnet/injective/ibc.ts new file mode 100644 index 000000000..eac793704 --- /dev/null +++ b/packages/chain-registry/src/mainnet/injective/ibc.ts @@ -0,0 +1,647 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-84", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-152", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-207", + "connection_id": "connection-191" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-145", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-220", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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-26", + "connection_id": "connection-29" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-132", + "connection_id": "connection-105" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-90", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-182", + "port_id": "transfer" + }, + "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-19", + "connection_id": "connection-13" + }, + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-112", + "connection_id": "connection-92" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-205", + "connection_id": "connection-189" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-130", + "connection_id": "connection-166" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-143", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-144", + "connection_id": "connection-116" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-77", + "connection_id": "connection-53" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-54", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-154", + "connection_id": "connection-123" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-5", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-223", + "connection_id": "connection-220" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-78", + "connection_id": "connection-58" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-177", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-210", + "connection_id": "connection-193" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-15", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-138", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "wasm.inj1w9g3sk7lk8k0pdtctygupt6f3te7x4thvzz57a" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1703", + "connection_id": "connection-1298" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-57", + "connection_id": "connection-53" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-22", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-4", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-93", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-131", + "connection_id": "connection-103" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-89", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-216", + "connection_id": "connection-202" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-369", + "connection_id": "connection-311" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-151", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-255", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-197", + "connection_id": "connection-182" + }, + "chain_2": { + "chain_name": "xpla", + "client_id": "07-tendermint-6", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts b/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts new file mode 100644 index 000000000..6bb53482f --- /dev/null +++ b/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts @@ -0,0 +1,426 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-143", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-144", + "connection_id": "connection-116" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-77", + "connection_id": "connection-53" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-54", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-154", + "connection_id": "connection-123" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-5", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-223", + "connection_id": "connection-220" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-78", + "connection_id": "connection-58" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-177", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-210", + "connection_id": "connection-193" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-15", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-138", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "wasm.inj1w9g3sk7lk8k0pdtctygupt6f3te7x4thvzz57a" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1703", + "connection_id": "connection-1298" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-57", + "connection_id": "connection-53" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-22", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-4", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-93", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-131", + "connection_id": "connection-103" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-89", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-216", + "connection_id": "connection-202" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-369", + "connection_id": "connection-311" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-151", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-255", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-197", + "connection_id": "connection-182" + }, + "chain_2": { + "chain_name": "xpla", + "client_id": "07-tendermint-6", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/injective/index.ts b/packages/chain-registry/src/mainnet/injective/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/injective/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/irisnet/assets.ts b/packages/chain-registry/src/mainnet/irisnet/assets.ts new file mode 100644 index 000000000..22544c021 --- /dev/null +++ b/packages/chain-registry/src/mainnet/irisnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "irisnet", + "assets": [ + { + "description": "The IRIS token is the native governance token for the IrisNet chain.", + "denom_units": [ + { + "denom": "uiris", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/irisnet/chain.ts b/packages/chain-registry/src/mainnet/irisnet/chain.ts new file mode 100644 index 000000000..299cceb85 --- /dev/null +++ b/packages/chain-registry/src/mainnet/irisnet/chain.ts @@ -0,0 +1,196 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uiris" + } + ] + }, + "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": [ + { + "address": "https://rpc-irisnet-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc-irisnet-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://irisnet-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://iris-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://iris-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://iris-mainnet.rpc.l0vd.com:443", + "provider": "L0vd.com ❤️" + }, + { + "address": "https://mainnet-iris-rpc.konsortech.xyz", + "provider": "KonsorTech" + } + ], + "rest": [ + { + "address": "https://api-irisnet-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://api-irisnet-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://irisnet-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://iris-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://iris-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://iris-mainnet.api.l0vd.com:443", + "provider": "L0vd.com ❤️" + }, + { + "address": "https://mainnet-iris-api.konsortech.xyz", + "provider": "KonsorTech" + } + ], + "grpc": [ + { + "address": "grpc-irisnet-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "grpc-irisnet-01.stakeflow.io:1902", + "provider": "Stakeflow" + }, + { + "address": "irisnet-grpc.w3coins.io:22690", + "provider": "w3coins" + }, + { + "address": "iris-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "iris.grpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "https://grpc-irisnet.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "iris-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com ❤️" + }, + { + "address": "mainnet-iris.konsortech.xyz:30090", + "provider": "KonsorTech" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://iris-evm.publicnode.com", + "provider": "Allnodes.com ⚡️ Nodes & Staking" + }, + { + "address": "https://mainnet-iris-evm.konsortech.xyz", + "provider": "KonsorTech" + } + ] + }, + "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": "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": "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": "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": "KonsorTech", + "url": "https://explorer.konsortech.xyz/iris", + "tx_page": "https://explorer.konsortech.xyz/iris/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/irisnet/ibc.ts b/packages/chain-registry/src/mainnet/irisnet/ibc.ts new file mode 100644 index 000000000..ca3a2a2a0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/irisnet/ibc.ts @@ -0,0 +1,410 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-182", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-31", + "connection_id": "connection-25" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-25", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-54", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-19", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-41", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "uptick", + "client_id": "07-tendermint-8", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/irisnet/ibc_chain1.ts b/packages/chain-registry/src/mainnet/irisnet/ibc_chain1.ts new file mode 100644 index 000000000..69f003b53 --- /dev/null +++ b/packages/chain-registry/src/mainnet/irisnet/ibc_chain1.ts @@ -0,0 +1,234 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-31", + "connection_id": "connection-25" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-25", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-54", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-19", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-41", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "uptick", + "client_id": "07-tendermint-8", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/irisnet/index.ts b/packages/chain-registry/src/mainnet/irisnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/irisnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/jackal/assets.ts b/packages/chain-registry/src/mainnet/jackal/assets.ts new file mode 100644 index 000000000..15ccf1e88 --- /dev/null +++ b/packages/chain-registry/src/mainnet/jackal/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "jackal", + "assets": [ + { + "description": "The native staking and governance token of Jackal.", + "denom_units": [ + { + "denom": "ujkl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/jackal/chain.ts b/packages/chain-registry/src/mainnet/jackal/chain.ts new file mode 100644 index 000000000..3c109b46d --- /dev/null +++ b/packages/chain-registry/src/mainnet/jackal/chain.ts @@ -0,0 +1,248 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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" + } + ], + "rpc": [ + { + "address": "https://rpc.jackalprotocol.com", + "provider": "Jackal Labs" + }, + { + "address": "https://jackal-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "http://jkl.rpc.m.stavr.tech:11127", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://jackal.rpc.bccnodes.com", + "provider": "BccNodes" + }, + { + "address": "https://rpc.jackal.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc-jackal.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://jackal-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://m-jackal.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://rpc-jackal.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://jackal-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "http://jackal.rpc.nodersteam.com:31657", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://jackal.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://jackal.rpc.silknodes.io", + "provider": "Silk Nodes" + }, + { + "address": "https://jackal.rpc.skynodejs.net", + "provider": "skynodejs" + } + ], + "rest": [ + { + "address": "https://api.jackalprotocol.com", + "provider": "Jackal Labs" + }, + { + "address": "https://jackal-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://jkl.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api.jackal.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "http://jackal.api.nodersteam.com:2917", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://api-jackal.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://jackal-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://m-jackal.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://jackal-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://lcd-jackal.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://jackal.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://jackal.api.silknodes.io", + "provider": "Silk Nodes" + }, + { + "address": "https://jackal.api.skynodejs.net", + "provider": "skynodejs" + } + ], + "grpc": [ + { + "address": "grpc.jackalprotocol.com:443", + "provider": "Jackal Labs" + }, + { + "address": "jackal.grpc.bccnodes.com:9490", + "provider": "BccNodes" + }, + { + "address": "jackal.grpc.nodersteam.com:9990", + "provider": "[NODERS]TEAM" + }, + { + "address": "jackal-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc.jackal.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "jackal-grpc.polkachu.com:17590", + "provider": "Polkachu" + }, + { + "address": "http://jkl.grpc.m.stavr.tech:5013", + "provider": "🔥STAVR🔥" + }, + { + "address": "jackal-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "jackal.grpc.kjnodes.com:13790", + "provider": "kjnodes" + }, + { + "address": "https://jackal.grpc.skynodejs.net", + "provider": "skynodejs" + } + ] + }, + "explorers": [ + { + "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": "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": "🔥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": "Big Dipper", + "url": "https://bigdipper.live/jackal", + "tx_page": "https://bigdipper.live/jackal/transactions/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/jackal/ibc.ts b/packages/chain-registry/src/mainnet/jackal/ibc.ts new file mode 100644 index 000000000..89bdf8674 --- /dev/null +++ b/packages/chain-registry/src/mainnet/jackal/ibc.ts @@ -0,0 +1,216 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ], + "operators": [ + { + "chain_1": { + "address": "archway16l5ls4ajah6hethh374tpgn42r5q4sqeuw8udj" + }, + "chain_2": { + "address": "jkl134a4es94hjqqej732cymf0w3988zh3c4yuqtf8" + }, + "memo": "by AM Solutions | https://www.theamsolutions.info", + "name": "AM Solutions", + "discord_handle": "AlexeyM#5409" + }, + { + "chain_1": { + "address": "archway1nms20r7jzaa4ms9exv90ckl2xfn0rd3rmqh7zm" + }, + "chain_2": { + "address": "jkl1nms20r7jzaa4ms9exv90ckl2xfn0rd3rh49t3n" + }, + "memo": "Relayed by NodeStake", + "name": "NodeStake", + "discord_handle": "nodestake" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2273", + "connection_id": "connection-1762" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-412", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-124", + "connection_id": "connection-94" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/jackal/ibc_chain1.ts b/packages/chain-registry/src/mainnet/jackal/ibc_chain1.ts new file mode 100644 index 000000000..a2d0d5b48 --- /dev/null +++ b/packages/chain-registry/src/mainnet/jackal/ibc_chain1.ts @@ -0,0 +1,99 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2273", + "connection_id": "connection-1762" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-412", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-124", + "connection_id": "connection-94" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/jackal/index.ts b/packages/chain-registry/src/mainnet/jackal/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/jackal/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/juno/assets.ts b/packages/chain-registry/src/mainnet/juno/assets.ts new file mode 100644 index 000000000..94d8e68a0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/juno/assets.ts @@ -0,0 +1,1939 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "juno", + "assets": [ + { + "description": "The native token of JUNO Chain", + "denom_units": [ + { + "denom": "ujuno", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "exponent": 0 + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/uatom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + }, + { + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "denom_units": [ + { + "denom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for Marble DAO on Juno Chain", + "type_asset": "cw20", + "address": "juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", + "denom_units": [ + { + "denom": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "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" + } + ] + }, + { + "description": "The native token of Marble DEX on Juno Chain", + "type_asset": "cw20", + "address": "juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", + "denom_units": [ + { + "denom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg" + } + ] + }, + { + "description": "The DAO token to build consensus among Hong Kong People", + "type_asset": "cw20", + "address": "juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", + "denom_units": [ + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg" + } + ] + }, + { + "description": "Token governance for Junoswap", + "type_asset": "cw20", + "address": "juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", + "denom_units": [ + { + "denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "DeFi gaming platform built on Juno", + "type_asset": "cw20", + "address": "juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", + "denom_units": [ + { + "denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg" + } + ] + }, + { + "description": "Gelotto Year 1 Grand Prize Token", + "type_asset": "cw20", + "address": "juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", + "denom_units": [ + { + "denom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg" + } + ] + }, + { + "description": "The native token cw20 for BlackHole on Juno Chain", + "type_asset": "cw20", + "address": "juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", + "denom_units": [ + { + "denom": "cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Staking derivative seJUNO for staked JUNO", + "type_asset": "cw20", + "address": "juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "denom_units": [ + { + "denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Staking derivative bJUNO for staked JUNO", + "type_asset": "cw20", + "address": "juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", + "denom_units": [ + { + "denom": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg" + } + ] + }, + { + "description": "StakeEasy governance token", + "type_asset": "cw20", + "address": "juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", + "denom_units": [ + { + "denom": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg" + } + ] + }, + { + "description": "The native token cw20 for MuseDAO on Juno Chain", + "type_asset": "cw20", + "address": "juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", + "denom_units": [ + { + "denom": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "loop", + "images": [ + { + "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": [ + { + "denom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "fanfury", + "images": [ + { + "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": [ + { + "denom": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for Hopers on Juno Chain", + "type_asset": "cw20", + "address": "juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", + "denom_units": [ + { + "denom": "cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "RED", + "type_asset": "cw20", + "address": "juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za", + "denom_units": [ + { + "denom": "cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png" + } + ] + }, + { + "description": "BLUE", + "type_asset": "cw20", + "address": "juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7", + "denom_units": [ + { + "denom": "cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "denom_units": [ + { + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + } + ] + }, + { + "description": "nRide Token", + "type_asset": "cw20", + "address": "juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", + "denom_units": [ + { + "denom": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg" + } + ] + }, + { + "description": "Signal Art and Gaming on Juno", + "type_asset": "cw20", + "address": "juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", + "denom_units": [ + { + "denom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png" + } + ] + }, + { + "description": "Mini Punks Token", + "type_asset": "cw20", + "address": "juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", + "denom_units": [ + { + "denom": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg" + } + ] + }, + { + "description": "Kleomedes Token", + "type_asset": "cw20", + "address": "juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", + "denom_units": [ + { + "denom": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png" + } + ] + }, + { + "description": "Sikoba Governance Token", + "type_asset": "cw20", + "address": "juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", + "denom_units": [ + { + "denom": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg" + } + ] + }, + { + "description": "Shiba Cosmos", + "type_asset": "cw20", + "address": "juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", + "denom_units": [ + { + "denom": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png" + } + ] + }, + { + "description": "Celestims", + "type_asset": "cw20", + "address": "juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", + "denom_units": [ + { + "denom": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png" + } + ] + }, + { + "description": "Apemos", + "type_asset": "cw20", + "address": "juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", + "denom_units": [ + { + "denom": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png" + } + ] + }, + { + "description": "Doge Apr", + "type_asset": "cw20", + "address": "juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", + "denom_units": [ + { + "denom": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png" + } + ] + }, + { + "description": "Osmo Pepe", + "type_asset": "cw20", + "address": "juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", + "denom_units": [ + { + "denom": "cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png" + } + ] + }, + { + "description": "Catmos", + "type_asset": "cw20", + "address": "juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", + "denom_units": [ + { + "denom": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png" + } + ] + }, + { + "description": "Spacer", + "type_asset": "cw20", + "address": "juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", + "denom_units": [ + { + "denom": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png" + } + ] + }, + { + "description": "Void", + "type_asset": "cw20", + "address": "juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", + "denom_units": [ + { + "denom": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png" + } + ] + }, + { + "description": "Silica", + "type_asset": "cw20", + "address": "juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", + "denom_units": [ + { + "denom": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png" + } + ] + }, + { + "description": "Pepec", + "type_asset": "cw20", + "address": "juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", + "denom_units": [ + { + "denom": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png" + } + ] + }, + { + "description": "Palantin", + "type_asset": "cw20", + "address": "juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", + "denom_units": [ + { + "denom": "cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png" + } + ] + }, + { + "description": "Propose. Vote. Build.", + "type_asset": "cw20", + "address": "juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", + "denom_units": [ + { + "denom": "cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "factory/juno195asgku87kxgu48s447z0ryhsyn5rl3yzvfw0d/uhava", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hava.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/juno/chain.ts b/packages/chain-registry/src/mainnet/juno/chain.ts new file mode 100644 index 000000000..53157b269 --- /dev/null +++ b/packages/chain-registry/src/mainnet/juno/chain.ts @@ -0,0 +1,381 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://rpc-juno.itastakers.com", + "provider": "itastakers" + }, + { + "address": "http://juno.rpc.m.stavr.tech:1067", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-juno.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://juno-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://juno-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-juno.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://rpc-juno.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://rpc-juno-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc.juno.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://juno-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://juno-rpc.icycro.org", + "provider": "IcyCRO 🧊" + }, + { + "address": "https://rpc.juno.bh.rocks", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://juno.kingnodes.com", + "provider": "kingnodes 👑" + }, + { + "address": "https://juno-rpc.reece.sh", + "provider": "Reecepbcups" + }, + { + "address": "https://juno-rpc.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" + }, + { + "address": "https://rpc-juno.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://rpc-juno-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://rpc-juno.validavia.me", + "provider": "Validavia" + }, + { + "address": "https://juno-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://juno-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://juno-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://rpc-juno.mainnet.validatrium.club:443", + "provider": "Validatrium" + }, + { + "address": "https://juno-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://rpc.juno.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://lcd-juno.itastakers.com", + "provider": "itastakers" + }, + { + "address": "https://rest-juno.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://juno-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://juno.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api-juno.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://api-juno-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://api.juno.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://juno-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api-juno.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://juno-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://api.juno.bh.rocks", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://juno.kingnodes.com", + "provider": "kingnodes 👑" + }, + { + "address": "https://juno-api.reece.sh", + "provider": "Reecepbcups" + }, + { + "address": "https://juno-api.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" + }, + { + "address": "https://rest-juno.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://rest-juno.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://api-juno-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://lcd-juno.validavia.me", + "provider": "Validavia" + }, + { + "address": "https://juno-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://juno-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://juno-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://lcd-juno.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://juno-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://lcd.juno.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "grpc-juno-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "juno-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "juno-grpc.polkachu.com:12690", + "provider": "Polkachu" + }, + { + "address": "http://juno.grpc.m.stavr.tech:504", + "provider": "🔥STAVR🔥" + }, + { + "address": "grpc-juno.kingnodes.com:443", + "provider": "kingnodes 👑" + }, + { + "address": "grpc-juno.cosmos-spaces.cloud:4830", + "provider": "Cosmos Spaces" + }, + { + "address": "http://juno-grpc.stakeandrelax.net:12690", + "provider": "Stake&Relax Validator 🦥" + }, + { + "address": "grpc-juno.architectnodes.com:1443", + "provider": "Architect Nodes" + }, + { + "address": "juno-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "http://167.235.211.168:9091", + "provider": "CommunityStaking" + }, + { + "address": "grpc-juno-01.stakeflow.io:2302", + "provider": "Stakeflow" + }, + { + "address": "juno-grpc.w3coins.io:12690", + "provider": "w3coins" + }, + { + "address": "juno-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "juno-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "138.201.21.121:24990", + "provider": "Validatrium" + }, + { + "address": "juno-grpc.stakeandrelax.net:12690", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://grpc.juno.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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": "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": "🔥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": "Stakeflow", + "url": "https://stakeflow.io/juno", + "account_page": "https://stakeflow.io/juno/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/juno/ibc.ts b/packages/chain-registry/src/mainnet/juno/ibc.ts new file mode 100644 index 000000000..e4ad50bfe --- /dev/null +++ b/packages/chain-registry/src/mainnet/juno/ibc.ts @@ -0,0 +1,989 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-150", + "connection_id": "connection-97" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-110", + "connection_id": "connection-70" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-33", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-79", + "connection_id": "connection-46" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-382", + "connection_id": "connection-376" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-280", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-207", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-5", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-160", + "connection_id": "connection-107" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-81", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-417", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-300", + "connection_id": "connection-270" + }, + "chain_2": { + "chain_name": "mars", + "client_id": "07-tendermint-11", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-209", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-210", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-334", + "connection_id": "connection-322" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-3", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-224", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-1", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-225", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-243", + "port_id": "wasm.juno1qr84ktm57q5t02u04ddk5r8s79axdzglad6tfdd9g2xgt4hkh6jsgeq9x2" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-122", + "connection_id": "connection-92" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-212", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1457", + "connection_id": "connection-1142" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-47", + "port_id": "wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn" + }, + "chain_2": { + "channel_id": "channel-169", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-49", + "connection_id": "connection-48" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-17", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-215", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-13", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-263", + "connection_id": "connection-205" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-31", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-139", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-202", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-143", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-142", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "icahost" + }, + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-3", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-86", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/juno/ibc_chain1.ts b/packages/chain-registry/src/mainnet/juno/ibc_chain1.ts new file mode 100644 index 000000000..532c2e35b --- /dev/null +++ b/packages/chain-registry/src/mainnet/juno/ibc_chain1.ts @@ -0,0 +1,585 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-300", + "connection_id": "connection-270" + }, + "chain_2": { + "chain_name": "mars", + "client_id": "07-tendermint-11", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-209", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-210", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-334", + "connection_id": "connection-322" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-3", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-224", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-1", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-225", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-243", + "port_id": "wasm.juno1qr84ktm57q5t02u04ddk5r8s79axdzglad6tfdd9g2xgt4hkh6jsgeq9x2" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-122", + "connection_id": "connection-92" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-212", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1457", + "connection_id": "connection-1142" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-47", + "port_id": "wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn" + }, + "chain_2": { + "channel_id": "channel-169", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-49", + "connection_id": "connection-48" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-17", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-215", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-13", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-263", + "connection_id": "connection-205" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-31", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-139", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-202", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-143", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-142", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "icahost" + }, + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-3", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-86", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/juno/index.ts b/packages/chain-registry/src/mainnet/juno/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/juno/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/kava/assets.ts b/packages/chain-registry/src/mainnet/kava/assets.ts new file mode 100644 index 000000000..9d1f7ccd7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kava/assets.ts @@ -0,0 +1,159 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "kava", + "assets": [ + { + "description": "The native staking and governance token of Kava", + "denom_units": [ + { + "denom": "ukava", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Governance token of Kava Lend Protocol", + "denom_units": [ + { + "denom": "hard", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Governance token of Kava Swap Protocol", + "denom_units": [ + { + "denom": "swp", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native stablecoin of Kava", + "denom_units": [ + { + "denom": "usdx", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "erc20/tether/usdt", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "provider": "Tether" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kava/chain.ts b/packages/chain-registry/src/mainnet/kava/chain.ts new file mode 100644 index 000000000..762508427 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kava/chain.ts @@ -0,0 +1,173 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ukava" + } + ] + }, + "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.", + "apis": { + "rpc": [ + { + "address": "https://rpc.data.kava.io", + "provider": "kava" + }, + { + "address": "https://kava-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-kava-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://kava-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://kava-rpc.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://rpc-kava-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://kava-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://api.data.kava.io/", + "provider": "kava" + }, + { + "address": "https://api-kava-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://kava-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://kava-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://kava-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://api-kava-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://kava-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc.data.kava.io:443", + "provider": "kava" + }, + { + "address": "grpc-kava-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "kava-grpc.polkachu.com:13990", + "provider": "Polkachu" + }, + { + "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" + } + ] + }, + "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": "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": "Stakeflow", + "url": "https://stakeflow.io/kava", + "account_page": "https://stakeflow.io/kava/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kava/ibc.ts b/packages/chain-registry/src/mainnet/kava/ibc.ts new file mode 100644 index 000000000..e1fe0e529 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kava/ibc.ts @@ -0,0 +1,531 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-49", + "connection_id": "connection-12" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-158", + "connection_id": "connection-198" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-140", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-160", + "connection_id": "connection-200" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-142", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-277", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cronos", + "client_id": "07-tendermint-33", + "connection_id": "connection-17" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-134", + "connection_id": "connection-169" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-125", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-120", + "connection_id": "connection-157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-117", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-149", + "connection_id": "connection-193" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-205", + "connection_id": "connection-189" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-130", + "connection_id": "connection-166" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-143", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-140", + "connection_id": "connection-106" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-95", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-90", + "connection_id": "connection-73" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-120", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-54", + "connection_id": "connection-37" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-136", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1735", + "connection_id": "connection-1328" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-143", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-156", + "connection_id": "connection-195" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-134", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-129", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-38", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-132", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-386", + "connection_id": "connection-362" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-138", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-272", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-229", + "connection_id": "connection-191" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-119", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kava/ibc_chain1.ts b/packages/chain-registry/src/mainnet/kava/ibc_chain1.ts new file mode 100644 index 000000000..6eb72e9ca --- /dev/null +++ b/packages/chain-registry/src/mainnet/kava/ibc_chain1.ts @@ -0,0 +1,252 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-95", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-90", + "connection_id": "connection-73" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-120", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-54", + "connection_id": "connection-37" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-136", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1735", + "connection_id": "connection-1328" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-143", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-156", + "connection_id": "connection-195" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-134", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-129", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-38", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-132", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-386", + "connection_id": "connection-362" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-138", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-272", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-229", + "connection_id": "connection-191" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-119", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kava/index.ts b/packages/chain-registry/src/mainnet/kava/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kava/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/kichain/assets.ts b/packages/chain-registry/src/mainnet/kichain/assets.ts new file mode 100644 index 000000000..ca6669821 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kichain/assets.ts @@ -0,0 +1,64 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "kichain", + "assets": [ + { + "description": "The native token of Ki Chain", + "denom_units": [ + { + "denom": "uxki", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "ELEVENPARIS loyalty token on KiChain", + "type_asset": "cw20", + "address": "ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", + "denom_units": [ + { + "denom": "cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "lvn", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kichain/chain.ts b/packages/chain-registry/src/mainnet/kichain/chain.ts new file mode 100644 index 000000000..d474b62e2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kichain/chain.ts @@ -0,0 +1,164 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uxki" + } + ] + }, + "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": [ + { + "address": "https://rpc-mainnet.blockchain.ki", + "provider": "kifoundation" + }, + { + "address": "https://kichain-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-kichain-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://kichain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc.kichain.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://kichain-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "http://ki-chain.statesync.nodersteam.com:14657", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://ki-rpc.ibs.team/", + "provider": "Inter Blockchain Services" + } + ], + "rest": [ + { + "address": "https://api-mainnet.blockchain.ki", + "provider": "kifoundation" + }, + { + "address": "https://api-kichain-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://api.kichain.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://kichain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "http://ki-chain.api.nodersteam.com:14017", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://kichain-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://kichain-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://ki-api.ibs.team/", + "provider": "Inter Blockchain Services" + } + ], + "grpc": [ + { + "address": "grpc-kichain-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "kichain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "ki-chain.grpc.nodersteam.com:9410", + "provider": "[NODERS]TEAM" + }, + { + "address": "kichain-grpc.polkachu.com:13590", + "provider": "Polkachu" + }, + { + "address": "kichain-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + } + ] + }, + "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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kichain/ibc.ts b/packages/chain-registry/src/mainnet/kichain/ibc.ts new file mode 100644 index 000000000..e2487dca9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kichain/ibc.ts @@ -0,0 +1,84 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-223", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kichain", + "client_id": "07-tendermint-4", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1564", + "connection_id": "connection-1225" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-77", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "wasm.ki1hzz0s0ucrhdp6tue2lxk3c03nj6f60qy463we7lgx0wudd72ctmsd9kgha" + }, + "chain_2": { + "channel_id": "channel-261", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kichain/ibc_chain1.ts b/packages/chain-registry/src/mainnet/kichain/ibc_chain1.ts new file mode 100644 index 000000000..18c1b3039 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kichain/ibc_chain1.ts @@ -0,0 +1,53 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-77", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "wasm.ki1hzz0s0ucrhdp6tue2lxk3c03nj6f60qy463we7lgx0wudd72ctmsd9kgha" + }, + "chain_2": { + "channel_id": "channel-261", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kichain/index.ts b/packages/chain-registry/src/mainnet/kichain/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kichain/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/konstellation/assets.ts b/packages/chain-registry/src/mainnet/konstellation/assets.ts new file mode 100644 index 000000000..f3c6ea25f --- /dev/null +++ b/packages/chain-registry/src/mainnet/konstellation/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "konstellation", + "assets": [ + { + "description": "The native token of Konstellation Network", + "denom_units": [ + { + "denom": "udarc", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/konstellation/chain.ts b/packages/chain-registry/src/mainnet/konstellation/chain.ts new file mode 100644 index 000000000..def2effe9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/konstellation/chain.ts @@ -0,0 +1,102 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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" + }, + "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": [ + { + "denom": "udarc" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://konstellation-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-konstellation-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://konstellation-rpc.stakerhouse.com", + "provider": "StakerHouse" + } + ], + "rest": [ + { + "address": "https://api-konstellation-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://konstellation-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://konstellation-rest.stakerhouse.com", + "provider": "StakerHouse" + } + ], + "grpc": [ + { + "address": "grpc-konstellation-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "konstellation-grpc.polkachu.com:13390", + "provider": "Polkachu" + }, + { + "address": "konstellation-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "konstellation-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + } + ] + }, + "explorers": [ + { + "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}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/Konstellation-dark.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/konstellation/ibc.ts b/packages/chain-registry/src/mainnet/konstellation/ibc.ts new file mode 100644 index 000000000..f6137111f --- /dev/null +++ b/packages/chain-registry/src/mainnet/konstellation/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-171", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/konstellation/ibc_chain1.ts b/packages/chain-registry/src/mainnet/konstellation/ibc_chain1.ts new file mode 100644 index 000000000..f6137111f --- /dev/null +++ b/packages/chain-registry/src/mainnet/konstellation/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "konstellation", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1778", + "connection_id": "connection-1384" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-171", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/konstellation/index.ts b/packages/chain-registry/src/mainnet/konstellation/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/konstellation/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/kujira/assets.ts b/packages/chain-registry/src/mainnet/kujira/assets.ts new file mode 100644 index 000000000..9c97e4059 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kujira/assets.ts @@ -0,0 +1,1034 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "kujira", + "assets": [ + { + "description": "The native staking and governance token of the Kujira chain.", + "denom_units": [ + { + "denom": "ukuji", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" + } + ] + }, + { + "description": "The native over-collateralized stablecoin from the Kujira chain.", + "denom_units": [ + { + "denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + } + ] + }, + { + "description": "Quark's auto-compounding KUJI derivative", + "denom_units": [ + { + "denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg" + } + ] + }, + { + "description": "ampKUJI", + "denom_units": [ + { + "denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "MantaDAO Governance Token", + "denom_units": [ + { + "denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Quark's auto-compounding MNTA derivative", + "denom_units": [ + { + "denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg" + } + ] + }, + { + "description": "ERIS Liquid Staked MNTA", + "denom_units": [ + { + "denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png" + } + ] + }, + { + "description": "The content house of Kujira", + "denom_units": [ + { + "denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Blend Token", + "denom_units": [ + { + "denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg" + } + ] + }, + { + "description": "Tether USDt on Kujira", + "denom_units": [ + { + "denom": "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-95", + "path": "transfer/channel-95/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + }, + { + "description": "The staking and governance token of Fuzion", + "denom_units": [ + { + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The receipt token of Fuzion", + "denom_units": [ + { + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png" + } + ] + }, + { + "description": "The yield token of Fuzion", + "denom_units": [ + { + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg" + } + ] + }, + { + "description": "Quark's auto-compounding FUZN derivative", + "denom_units": [ + { + "denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg" + } + ] + }, + { + "description": "The Revenue & Governance token of Unstake.fi", + "denom_units": [ + { + "denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "unstake-fi", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" + } + ] + }, + { + "description": "Local Money", + "denom_units": [ + { + "denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png" + } + ] + }, + { + "description": "Food for whales", + "denom_units": [ + { + "denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", + "exponent": 0 + }, + { + "denom": "sol", + "exponent": 8 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-113", + "path": "transfer/channel-113/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "exponent": 0 + }, + { + "denom": "evmos", + "exponent": 18 + } + ], + "base": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "name": "Evmos", + "display": "evmos", + "symbol": "EVMOS", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "evmos", + "base_denom": "aevmos", + "channel_id": "channel-18" + }, + "chain": { + "channel_id": "channel-23", + "path": "transfer/channel-23/aevmos" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "evmos", + "base_denom": "aevmos" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", + "exponent": 0 + }, + { + "denom": "avax", + "exponent": 18 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/wavax-wei" + } + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-62", + "path": "transfer/channel-62/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "exponent": 0 + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-3", + "path": "transfer/channel-3/uosmo" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "axelar", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "exponent": 0 + }, + { + "denom": "cmdx", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-18", + "path": "transfer/channel-18/ucmdx" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "comdex", + "base_denom": "ucmdx" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "exponent": 0 + }, + { + "denom": "juno", + "exponent": 6 + } + ], + "base": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "juno", + "base_denom": "ujuno", + "channel_id": "channel-87" + }, + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/ujuno" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "juno", + "base_denom": "ujuno" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "exponent": 0 + }, + { + "denom": "weth", + "exponent": 18 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/weth-wei" + } + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } + }, + { + "denom_units": [ + { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "exponent": 0 + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-343" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uatom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "exponent": 0 + }, + { + "denom": "luna", + "exponent": 6 + } + ], + "base": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "name": "Luna", + "display": "luna", + "symbol": "LUNA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "terra2", + "base_denom": "uluna", + "channel_id": "channel-10" + }, + "chain": { + "channel_id": "channel-5", + "path": "transfer/channel-5/uluna" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "luna", + "base_denom": "uluna" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "exponent": 0 + }, + { + "denom": "stars", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-7", + "path": "transfer/channel-7/ustars" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "stargaze", + "base_denom": "ustars" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "exponent": 0 + }, + { + "denom": "scrt", + "exponent": 6 + } + ], + "base": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "name": "Secret Network", + "display": "scrt", + "symbol": "SCRT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "secretnetwork", + "base_denom": "uscrt", + "channel_id": "channel-22" + }, + "chain": { + "channel_id": "channel-10", + "path": "transfer/channel-10/uscrt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "scrt", + "base_denom": "uscrt" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kujira/chain.ts b/packages/chain-registry/src/mainnet/kujira/chain.ts new file mode 100644 index 000000000..828b9fcce --- /dev/null +++ b/packages/chain-registry/src/mainnet/kujira/chain.ts @@ -0,0 +1,371 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + }, + { + "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": { + "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.kaiyo.kujira.setten.io", + "provider": "setten.io" + }, + { + "address": "https://kujira-rpc.polkachu.com", + "provider": "polkachu" + }, + { + "address": "https://rpc-kujira.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://kujira-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc.kujira.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://rpc-kujira-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://kujira-rpc.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://rpc-kujira.starsquid.io", + "provider": "Starsquid" + }, + { + "address": "https://kujira.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://kuji-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://rpc-kujira.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://kujira-mainnet-rpc.autostake.com:443", + "provider": "AutoStake ⚡️ 0% fee" + }, + { + "address": "https://rpc.kujira.rektdao.club", + "provider": "rektDAO" + }, + { + "address": "https://kujira-rpc.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://kujira-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc-kujira.mms.team", + "provider": "MMS" + }, + { + "address": "https://kujira-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://kujira.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" + } + ], + "rest": [ + { + "address": "https://lcd-kujira.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "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.polkachu.com/", + "provider": "polkachu" + }, + { + "address": "https://rest-kujira.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://api-kujira-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://kujira-lcd.wildsage.io/", + "provider": "WildSage Labs" + }, + { + "address": "https://kujira-api.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://api-kujira.starsquid.io", + "provider": "Starsquid" + }, + { + "address": "https://kujira.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://kuji-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://kujira-mainnet-lcd.autostake.com:443", + "provider": "AutoStake ⚡️ 0% fee" + }, + { + "address": "https://api.kujira.rektdao.club", + "provider": "rektDAO" + }, + { + "address": "https://kujira-api.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://kujira-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://api-kujira.mms.team", + "provider": "MMS" + }, + { + "address": "https://kujira-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://kujira-rest.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" + } + ], + "grpc": [ + { + "address": "kujira.grpcui.chaintools.host:443", + "provider": "ChainTools" + }, + { + "address": "grpc-kujira-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "kujira-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "kujira-grpc.polkachu.com:11890", + "provider": "Polkachu" + }, + { + "address": "kujira-mainnet-grpc.autostake.com:443", + "provider": "AutoStake ⚡️ 0% fee" + }, + { + "address": "kujira.grpc.kjnodes.com:11390", + "provider": "kjnodes" + }, + { + "address": "kujira-grpc.w3coins.io:11890", + "provider": "w3coins" + }, + { + "address": "grpc-kujira.mms.team:443", + "provider": "MMS" + }, + { + "address": "kujira-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "grpc-kujira.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ] + }, + "explorers": [ + { + "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": "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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kujira/ibc.ts b/packages/chain-registry/src/mainnet/kujira/ibc.ts new file mode 100644 index 000000000..94bc35890 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kujira/ibc.ts @@ -0,0 +1,1214 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-94", + "connection_id": "connection-64" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-103", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-164", + "connection_id": "connection-127" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-99", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-11", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-147", + "connection_id": "connection-112" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-101", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-163", + "connection_id": "connection-126" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-343", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-78", + "connection_id": "connection-68" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-105", + "connection_id": "connection-75" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-67", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-118", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-53", + "connection_id": "connection-21" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-25", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-160", + "connection_id": "connection-123" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-119", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-69", + "connection_id": "connection-45" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-107", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-144", + "connection_id": "connection-116" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-77", + "connection_id": "connection-53" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-54", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-119", + "connection_id": "connection-156" + }, + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-140", + "connection_id": "connection-106" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-95", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-55", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-82", + "connection_id": "connection-59" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-16", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-2", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-156", + "connection_id": "connection-120" + }, + "chain_2": { + "chain_name": "nomic", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-108", + "connection_id": "connection-78" + }, + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-43", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-70", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2017", + "connection_id": "connection-1559" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-259", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "realio", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-115", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-100", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-48", + "connection_id": "connection-29" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-178", + "connection_id": "connection-111" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-5", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-61", + "connection_id": "connection-38" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-89", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-11", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-28", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kujira/ibc_chain1.ts b/packages/chain-registry/src/mainnet/kujira/ibc_chain1.ts new file mode 100644 index 000000000..1b77e1022 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kujira/ibc_chain1.ts @@ -0,0 +1,531 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-55", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-82", + "connection_id": "connection-59" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-16", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-2", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-156", + "connection_id": "connection-120" + }, + "chain_2": { + "chain_name": "nomic", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-108", + "connection_id": "connection-78" + }, + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-43", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-70", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2017", + "connection_id": "connection-1559" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-259", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "realio", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-115", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-100", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-48", + "connection_id": "connection-29" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-178", + "connection_id": "connection-111" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-5", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-61", + "connection_id": "connection-38" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-89", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-11", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-28", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kujira/index.ts b/packages/chain-registry/src/mainnet/kujira/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kujira/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/kyve/assets.ts b/packages/chain-registry/src/mainnet/kyve/assets.ts new file mode 100644 index 000000000..75324c2f3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kyve/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "kyve", + "assets": [ + { + "description": "The native utility token of the KYVE network.", + "denom_units": [ + { + "denom": "ukyve", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kyve/chain.ts b/packages/chain-registry/src/mainnet/kyve/chain.ts new file mode 100644 index 000000000..0e36f08a8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kyve/chain.ts @@ -0,0 +1,192 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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-kyve.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://kyve-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "http://kyve.rpc.m.stavr.tech:12357", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-kyve.imperator.co", + "provider": "Imperator.co" + }, + { + "address": "https://kyve-rpc.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://rpc-kyve.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://rpc.kyve.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://kyve.rpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://rpc-kyve.mms.team", + "provider": "MMS" + } + ], + "rest": [ + { + "address": "https://api-eu-1.kyve.network", + "provider": "kyve" + }, + { + "address": "https://kyve-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rest-kyve.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://lcd-kyve.imperator.co", + "provider": "Imperator.co" + }, + { + "address": "https://kyve.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://kyve-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://api.kyve.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://api-kyve.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://kyve.api.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://api-kyve.mms.team", + "provider": "MMS" + } + ], + "grpc": [ + { + "address": "https://grpc.kyve.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://kyve-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc-kyve.cosmos-spaces.cloud:2590", + "provider": "Cosmos Spaces" + }, + { + "address": "https://grpc-kyve.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "http://kyve.grpc.stavr.tech:7106", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://kyve.grpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "grpc-kyve.mms.team:443", + "provider": "MMS" + } + ] + }, + "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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kyve/ibc.ts b/packages/chain-registry/src/mainnet/kyve/ibc.ts new file mode 100644 index 000000000..fa5220cd0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kyve/ibc.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kyve", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2757", + "connection_id": "connection-2274" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-767", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kyve/ibc_chain1.ts b/packages/chain-registry/src/mainnet/kyve/ibc_chain1.ts new file mode 100644 index 000000000..dabbe7e16 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kyve/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kyve", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2757", + "connection_id": "connection-2274" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-767", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/kyve/index.ts b/packages/chain-registry/src/mainnet/kyve/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/kyve/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/lambda/assets.ts b/packages/chain-registry/src/mainnet/lambda/assets.ts new file mode 100644 index 000000000..2846df58c --- /dev/null +++ b/packages/chain-registry/src/mainnet/lambda/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "lambda", + "assets": [ + { + "description": "The native token of Lambda", + "denom_units": [ + { + "denom": "ulamb", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lambda/chain.ts b/packages/chain-registry/src/mainnet/lambda/chain.ts new file mode 100644 index 000000000..485409ea3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lambda/chain.ts @@ -0,0 +1,111 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ulamb" + } + ] + }, + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.lambda.im", + "provider": "Lambda" + }, + { + "address": "http://lambda.rpc.m.stavr.tech:31327", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc.lambda.nodestake.top", + "provider": "NodeStake" + } + ], + "rest": [ + { + "address": "https://rest.lambda.im", + "provider": "Lambda" + }, + { + "address": "https://lambda.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api.lambda.nodestake.top", + "provider": "NodeStake" + } + ], + "grpc": [ + { + "address": "http://lambda.grpc.m.stavr.tech:2287", + "provider": "🔥STAVR🔥" + }, + { + "address": "grpc.lambda.nodestake.top:443", + "provider": "NodeStake" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://jsonrpc-lambda.d-stake.xyz", + "provider": "D-stake" + } + ] + }, + "explorers": [ + { + "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": "🔥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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lambda/ibc.ts b/packages/chain-registry/src/mainnet/lambda/ibc.ts new file mode 100644 index 000000000..dbdd9ff97 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lambda/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-378", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lambda/ibc_chain1.ts b/packages/chain-registry/src/mainnet/lambda/ibc_chain1.ts new file mode 100644 index 000000000..dbdd9ff97 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lambda/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "lambda", + "client_id": "07-tendermint-6", + "connection_id": "connection-5" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2217", + "connection_id": "connection-1733" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-378", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lambda/index.ts b/packages/chain-registry/src/mainnet/lambda/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lambda/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/likecoin/assets.ts b/packages/chain-registry/src/mainnet/likecoin/assets.ts new file mode 100644 index 000000000..52dc27eff --- /dev/null +++ b/packages/chain-registry/src/mainnet/likecoin/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "nanolike", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/likecoin/chain.ts b/packages/chain-registry/src/mainnet/likecoin/chain.ts new file mode 100644 index 000000000..47cf52de7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/likecoin/chain.ts @@ -0,0 +1,138 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": false + }, + "apis": { + "rpc": [ + { + "address": "https://mainnet-node.like.co/rpc/", + "provider": "like.co" + }, + { + "address": "https://likecoin-node.oldcat.io:443/rpc/", + "provider": "Oldcat" + }, + { + "address": "https://rpc-likecoin-mainnet.pikaser.net", + "provider": "PikaSer" + }, + { + "address": "http://51.159.223.25:28657", + "provider": "Citizen Web3" + } + ], + "rest": [ + { + "address": "https://mainnet-node.like.co", + "provider": "like.co" + }, + { + "address": "https://likecoin-node.oldcat.io:443/api/", + "provider": "Oldcat" + }, + { + "address": "https://rest-likecoin-mainnet.pikaser.net", + "provider": "PikaSer" + } + ], + "grpc": [ + { + "address": "mainnet-node-grpc.like.co:80", + "provider": "like.co" + }, + { + "address": "https://likecoin-node.oldcat.io:443/grpc/", + "provider": "Oldcat" + }, + { + "address": "grpc-likecoin-mainnet.pikaser.net:443", + "provider": "PikaSer" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/likecoin/ibc.ts b/packages/chain-registry/src/mainnet/likecoin/ibc.ts new file mode 100644 index 000000000..b52f136a9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/likecoin/ibc.ts @@ -0,0 +1,64 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-217", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/likecoin/ibc_chain1.ts b/packages/chain-registry/src/mainnet/likecoin/ibc_chain1.ts new file mode 100644 index 000000000..1e621103d --- /dev/null +++ b/packages/chain-registry/src/mainnet/likecoin/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "likecoin", + "client_id": "07-tendermint-16", + "connection_id": "connection-9" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1507", + "connection_id": "connection-1173" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/likecoin/index.ts b/packages/chain-registry/src/mainnet/likecoin/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/likecoin/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/logos/assets.ts b/packages/chain-registry/src/mainnet/logos/assets.ts new file mode 100644 index 000000000..47555e42b --- /dev/null +++ b/packages/chain-registry/src/mainnet/logos/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "logos", + "assets": [ + { + "description": "The native token of Logos", + "denom_units": [ + { + "denom": "aLYT", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/logos/chain.ts b/packages/chain-registry/src/mainnet/logos/chain.ts new file mode 100644 index 000000000..202eee97c --- /dev/null +++ b/packages/chain-registry/src/mainnet/logos/chain.ts @@ -0,0 +1,65 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://logos-rpc.provable.dev:443/", + "provider": "laurel.provable" + } + ], + "rest": [ + { + "address": "https://logos.provable.dev/rest/", + "provider": "laurel.provable" + } + ], + "grpc": [ + { + "address": "logos-grpc.provable.dev:443", + "provider": "laurel.provable" + } + ], + "evm-http-jsonrpc": [ + { + "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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/logos/index.ts b/packages/chain-registry/src/mainnet/logos/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/logos/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/loyal/assets.ts b/packages/chain-registry/src/mainnet/loyal/assets.ts new file mode 100644 index 000000000..c6bd68a35 --- /dev/null +++ b/packages/chain-registry/src/mainnet/loyal/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "loyal", + "assets": [ + { + "description": "The native token of Loyal", + "denom_units": [ + { + "denom": "ulyl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/loyal/chain.ts b/packages/chain-registry/src/mainnet/loyal/chain.ts new file mode 100644 index 000000000..325bedfcd --- /dev/null +++ b/packages/chain-registry/src/mainnet/loyal/chain.ts @@ -0,0 +1,87 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ulyl" + } + ] + }, + "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": [ + { + "address": "https://rpc-main.joinloyal.io/" + }, + { + "address": "https://loyal-rpc.polkachu.com", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://lcd-main.joinloyal.io/" + }, + { + "address": "https://loyal-api.polkachu.com", + "provider": "Polkachu" + } + ], + "grpc": [ + { + "address": "https://grpc.loyal.nodestake.top", + "provider": "NodeStake" + } + ] + }, + "explorers": [ + { + "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": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/loyal", + "tx_page": "https://explorer.nodestake.top/loyal/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/loyal/index.ts b/packages/chain-registry/src/mainnet/loyal/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/loyal/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/lumenx/assets.ts b/packages/chain-registry/src/mainnet/lumenx/assets.ts new file mode 100644 index 000000000..5cff8a024 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumenx/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "lumenx", + "assets": [ + { + "description": "The native token of LumenX Network", + "denom_units": [ + { + "denom": "ulumen", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lumenx/chain.ts b/packages/chain-registry/src/mainnet/lumenx/chain.ts new file mode 100644 index 000000000..6d5fdc80c --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumenx/chain.ts @@ -0,0 +1,119 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ulumen" + } + ] + }, + "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": [ + { + "address": "https://rpc-lumenx.cryptonet.pl/", + "provider": "CryptoNet" + }, + { + "address": "https://lumenx-rpc.kynraze.com/", + "provider": "Kynraze" + } + ], + "rest": [ + { + "address": "https://api-lumenx.cryptonet.pl/", + "provider": "CryptoNet" + }, + { + "address": "https://api-lumenx.nodine.id/", + "provider": "Nodine.ID" + }, + { + "address": "https://lcd.lumenx.hexnodes.co/", + "provider": "Hexnodes" + } + ], + "grpc": [ + { + "address": "https://lumenx-grpc.kynraze.com", + "provider": "Kynraze" + }, + { + "address": "https://grpc-lumenx.nodine.id", + "provider": "Nodine.ID" + }, + { + "address": "https://grpc.lumenx.hexnodes.co", + "provider": "Hexnodes" + } + ] + }, + "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.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": "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": "atomscan", + "url": "https://atomscan.com/lumenx", + "tx_page": "https://atomscan.com/lumenx/transactions/${txHash}", + "account_page": "https://atomscan.com/lumenx/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lumenx/ibc.ts b/packages/chain-registry/src/mainnet/lumenx/ibc.ts new file mode 100644 index 000000000..f2af9c0d1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumenx/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-286", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lumenx/ibc_chain1.ts b/packages/chain-registry/src/mainnet/lumenx/ibc_chain1.ts new file mode 100644 index 000000000..f2af9c0d1 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumenx/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "lumenx", + "client_id": "07-tendermint-0", + "connection_id": "connection-6" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2079", + "connection_id": "connection-1620" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-286", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lumenx/index.ts b/packages/chain-registry/src/mainnet/lumenx/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumenx/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/lumnetwork/assets.ts b/packages/chain-registry/src/mainnet/lumnetwork/assets.ts new file mode 100644 index 000000000..183f53b10 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumnetwork/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "lumnetwork", + "assets": [ + { + "description": "Native token of the Lum Network", + "denom_units": [ + { + "denom": "ulum", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lumnetwork/chain.ts b/packages/chain-registry/src/mainnet/lumnetwork/chain.ts new file mode 100644 index 000000000..b560767a5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumnetwork/chain.ts @@ -0,0 +1,131 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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://lumnetwork-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://lum-rpc.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://lum-rpc.stakerhouse.com", + "provider": "StakerHouse" + } + ], + "rest": [ + { + "address": "https://node0.mainnet.lum.network/rest", + "provider": "Lum Foundation" + }, + { + "address": "https://lumnetwork-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://lum-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://lum-rest.stakerhouse.com", + "provider": "StakerHouse" + } + ], + "grpc": [ + { + "address": "lumnetwork-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "lum-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "lum-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lumnetwork/ibc.ts b/packages/chain-registry/src/mainnet/lumnetwork/ibc.ts new file mode 100644 index 000000000..65593295e --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumnetwork/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-566", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-115", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lumnetwork/ibc_chain1.ts b/packages/chain-registry/src/mainnet/lumnetwork/ibc_chain1.ts new file mode 100644 index 000000000..0423a8892 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumnetwork/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "lumnetwork", + "client_id": "07-tendermint-7", + "connection_id": "connection-5" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1668", + "connection_id": "connection-1280" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-115", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/lumnetwork/index.ts b/packages/chain-registry/src/mainnet/lumnetwork/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lumnetwork/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/mars/assets.ts b/packages/chain-registry/src/mainnet/mars/assets.ts new file mode 100644 index 000000000..ca76fe564 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mars/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "mars", + "assets": [ + { + "description": "Mars protocol token", + "denom_units": [ + { + "denom": "umars", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mars/chain.ts b/packages/chain-registry/src/mainnet/mars/chain.ts new file mode 100644 index 000000000..5c2ea9bc2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mars/chain.ts @@ -0,0 +1,203 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "umars" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.46.7", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30.0" + }, + "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://mars-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://mars-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://mars-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc.expedition-mars.com", + "provider": "Expedition Mars" + }, + { + "address": "https://mars-rpc.genznodes.dev:443", + "provider": "genznodes" + }, + { + "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.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + } + ], + "rest": [ + { + "address": "https://rest.marsprotocol.io:443", + "provider": "Delphi Labs" + }, + { + "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-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://lcd.expedition-mars.com:443", + "provider": "Expedition Mars" + }, + { + "address": "https://mars-api.genznodes.dev:443", + "provider": "genznodes" + }, + { + "address": "https://mars-api.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" + }, + { + "address": "https://mars-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://mars-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + } + ], + "grpc": [ + { + "address": "grpc.marsprotocol.io:443", + "provider": "Delphi Labs" + }, + { + "address": "mars-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "mars-grpc.polkachu.com:18590", + "provider": "Polkachu" + }, + { + "address": "mars-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "mars-grpc.genznodes.dev:26090", + "provider": "genznodes" + }, + { + "address": "mars.grpc.kjnodes.com:14590", + "provider": "kjnodes" + }, + { + "address": "grpc.mars.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "mars-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "mars-grpc.stakeandrelax.net:18590", + "provider": "Stake&Relax 🦥" + } + ] + }, + "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": "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": "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}" + } + ], + "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mars/ibc.ts b/packages/chain-registry/src/mainnet/mars/ibc.ts new file mode 100644 index 000000000..0d593a8b4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mars/ibc.ts @@ -0,0 +1,191 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-209", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-55", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "mars", + "client_id": "07-tendermint-64", + "connection_id": "connection-50" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-21", + "connection_id": "connection-21" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2602", + "connection_id": "connection-2114" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-557", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-104", + "connection_id": "connection-91" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-78", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mars/ibc_chain1.ts b/packages/chain-registry/src/mainnet/mars/ibc_chain1.ts new file mode 100644 index 000000000..fb4b94ef6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mars/ibc_chain1.ts @@ -0,0 +1,97 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2602", + "connection_id": "connection-2114" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-557", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-104", + "connection_id": "connection-91" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-78", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mars/index.ts b/packages/chain-registry/src/mainnet/mars/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mars/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/mayachain/assets.ts b/packages/chain-registry/src/mainnet/mayachain/assets.ts new file mode 100644 index 000000000..69e394b0b --- /dev/null +++ b/packages/chain-registry/src/mainnet/mayachain/assets.ts @@ -0,0 +1,62 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "mayachain", + "assets": [ + { + "description": "The native token of Maya Protocol", + "denom_units": [ + { + "denom": "cacao", + "exponent": 0 + }, + { + "denom": "CACAO", + "exponent": 10 + } + ], + "base": "cacao", + "name": "Cacao", + "display": "CACAO", + "symbol": "CACAO", + "images": [ + { + "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": [ + { + "denom": "maya", + "exponent": 0 + }, + { + "denom": "MAYA", + "exponent": 4 + } + ], + "base": "maya", + "name": "Maya", + "display": "MAYA", + "symbol": "MAYA", + "images": [ + { + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mayachain/chain.ts b/packages/chain-registry/src/mainnet/mayachain/chain.ts new file mode 100644 index 000000000..4ed4057ea --- /dev/null +++ b/packages/chain-registry/src/mainnet/mayachain/chain.ts @@ -0,0 +1,37 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "address": "https://mayanode.mayachain.info", + "provider": "mayanode" + } + ] + }, + "explorers": [ + { + "kind": "Maya Protocol explorer", + "url": "https://www.explorer.mayachain.info", + "tx_page": "https://www.explorer.mayachain.info/#/txs/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mayachain/index.ts b/packages/chain-registry/src/mainnet/mayachain/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/mayachain/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/medasdigital/assets.ts b/packages/chain-registry/src/mainnet/medasdigital/assets.ts new file mode 100644 index 000000000..fdfd161fd --- /dev/null +++ b/packages/chain-registry/src/mainnet/medasdigital/assets.ts @@ -0,0 +1,38 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "medasdigital", + "assets": [ + { + "description": "The native token of Medas Digital Network", + "denom_units": [ + { + "denom": "umedas", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/medasdigital/chain.ts b/packages/chain-registry/src/mainnet/medasdigital/chain.ts new file mode 100644 index 000000000..419a1cf3e --- /dev/null +++ b/packages/chain-registry/src/mainnet/medasdigital/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "umedas", + "low_gas_price": 0.1, + "average_gas_price": 0.25, + "high_gas_price": 0.4 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "umedas" + } + ] + }, + "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://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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/medasdigital/ibc.ts b/packages/chain-registry/src/mainnet/medasdigital/ibc.ts new file mode 100644 index 000000000..34cd54665 --- /dev/null +++ b/packages/chain-registry/src/mainnet/medasdigital/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-519", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-110", + "connection_id": "connection-87" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/medasdigital/ibc_chain1.ts b/packages/chain-registry/src/mainnet/medasdigital/ibc_chain1.ts new file mode 100644 index 000000000..34cd54665 --- /dev/null +++ b/packages/chain-registry/src/mainnet/medasdigital/ibc_chain1.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-519", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-110", + "connection_id": "connection-87" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/medasdigital/index.ts b/packages/chain-registry/src/mainnet/medasdigital/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/medasdigital/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/meme/assets.ts b/packages/chain-registry/src/mainnet/meme/assets.ts new file mode 100644 index 000000000..dea3c152d --- /dev/null +++ b/packages/chain-registry/src/mainnet/meme/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "meme", + "assets": [ + { + "description": "MEME Token (MEME) is the native staking token of the MEME Chain", + "denom_units": [ + { + "denom": "umeme", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/meme/chain.ts b/packages/chain-registry/src/mainnet/meme/chain.ts new file mode 100644 index 000000000..ac534f779 --- /dev/null +++ b/packages/chain-registry/src/mainnet/meme/chain.ts @@ -0,0 +1,125 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": [ + { + "address": "https://rpc-meme-1.meme.sx/", + "provider": "MEME Foundation" + }, + { + "address": "https://meme-rpc.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://rpc-meme.pupmos.network/", + "provider": "PUPMØS" + }, + { + "address": "https://meme.rpc.m.anode.team", + "provider": "ANODE TEAM" + } + ], + "rest": [ + { + "address": "https://api-meme-1.meme.sx/", + "provider": "MEME Foundation" + }, + { + "address": "https://meme-api.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://api-meme.pupmos.network/", + "provider": "PUPMØS" + }, + { + "address": "https://meme.api.m.anode.team", + "provider": "ANODE TEAM" + } + ], + "grpc": [ + { + "address": "meme-grpc.polkachu.com:14790", + "provider": "Polkachu" + } + ] + }, + "explorers": [ + { + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/meme/ibc.ts b/packages/chain-registry/src/mainnet/meme/ibc.ts new file mode 100644 index 000000000..abff00039 --- /dev/null +++ b/packages/chain-registry/src/mainnet/meme/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-238", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/meme/ibc_chain1.ts b/packages/chain-registry/src/mainnet/meme/ibc_chain1.ts new file mode 100644 index 000000000..abff00039 --- /dev/null +++ b/packages/chain-registry/src/mainnet/meme/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "meme", + "client_id": "07-tendermint-0", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1931", + "connection_id": "connection-1502" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-238", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/meme/index.ts b/packages/chain-registry/src/mainnet/meme/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/meme/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/microtick/assets.ts b/packages/chain-registry/src/mainnet/microtick/assets.ts new file mode 100644 index 000000000..f35ed32e4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/microtick/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "microtick", + "assets": [ + { + "description": "TICK coin is the token for the Microtick Price Discovery & Oracle App", + "denom_units": [ + { + "denom": "utick", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/microtick/chain.ts b/packages/chain-registry/src/mainnet/microtick/chain.ts new file mode 100644 index 000000000..b51fd4433 --- /dev/null +++ b/packages/chain-registry/src/mainnet/microtick/chain.ts @@ -0,0 +1,48 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "utick" + } + ] + }, + "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": [ + { + "kind": "ping.pub", + "url": "https://ping.pub/microtick", + "tx_page": "https://ping.pub/microtick/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/microtick/ibc.ts b/packages/chain-registry/src/mainnet/microtick/ibc.ts new file mode 100644 index 000000000..51c51cb85 --- /dev/null +++ b/packages/chain-registry/src/mainnet/microtick/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/microtick/ibc_chain1.ts b/packages/chain-registry/src/mainnet/microtick/ibc_chain1.ts new file mode 100644 index 000000000..51c51cb85 --- /dev/null +++ b/packages/chain-registry/src/mainnet/microtick/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "microtick", + "client_id": "07-tendermint-99", + "connection_id": "connection-92" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1453", + "connection_id": "connection-1139" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/microtick/index.ts b/packages/chain-registry/src/mainnet/microtick/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/microtick/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/migaloo/assets.ts b/packages/chain-registry/src/mainnet/migaloo/assets.ts new file mode 100644 index 000000000..a2fdb0e88 --- /dev/null +++ b/packages/chain-registry/src/mainnet/migaloo/assets.ts @@ -0,0 +1,330 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "migaloo", + "assets": [ + { + "description": "The native token of Migaloo Chain", + "denom_units": [ + { + "denom": "uwhale", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "ampWHALE", + "denom_units": [ + { + "denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg" + } + ] + }, + { + "description": "boneWHALE", + "denom_units": [ + { + "denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "FABLE", + "denom_units": [ + { + "denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg" + } + ] + }, + { + "description": "boneLUNA are autocompounding LUNA tokens", + "denom_units": [ + { + "denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", + "exponent": 0 + }, + { + "denom": "bluna", + "exponent": 6 + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" + } + ] + }, + { + "description": "RAC", + "denom_units": [ + { + "denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg" + } + ] + }, + { + "description": "ASH", + "denom_units": [ + { + "denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg" + } + ] + }, + { + "description": "Tether USDt on Migaloo", + "denom_units": [ + { + "denom": "ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-48", + "path": "transfer/channel-48/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + }, + { + "description": "Auto componded USDC despoited into Ginkou on Migaloo chain", + "denom_units": [ + { + "denom": "cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/mUSDC.svg" + } + ] + }, + { + "description": "GUPPY", + "denom_units": [ + { + "denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/migaloo/chain.ts b/packages/chain-registry/src/mainnet/migaloo/chain.ts new file mode 100644 index 000000000..582ad273b --- /dev/null +++ b/packages/chain-registry/src/mainnet/migaloo/chain.ts @@ -0,0 +1,168 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-migaloo.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://migaloo-rpc.kleomedes.network:443", + "provider": "Kleomedes" + }, + { + "address": "https://rpc.whitewhale.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://migaloo.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://migaloo-rpc.cosmosrescue.com", + "provider": "cosmosrescue" + } + ], + "rest": [ + { + "address": "https://migaloo-api.polkachu.com:443", + "provider": "Polkachu" + }, + { + "address": "https://migaloo-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-migaloo.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://migaloo-api.kleomedes.network:443", + "provider": "Kleomedes" + }, + { + "address": "https://api.whitewhale.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://migaloo.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://migaloo-api.cosmosrescue.com", + "provider": "cosmosrescue" + } + ], + "grpc": [ + { + "address": "migaloo-grpc.polkachu.com:20790", + "provider": "Polkachu" + }, + { + "address": "migaloo-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "whitewhale-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-migaloo.cosmos-spaces.cloud:4810", + "provider": "Cosmos Spaces" + }, + { + "address": "https://grpc.whitewhale.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "migaloo.grpc.kjnodes.com:14990", + "provider": "kjnodes" + }, + { + "address": "migaloo-grpc.cosmosrescue.com:9090", + "provider": "cosmosrescue" + } + ] + }, + "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": "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": "atomscan", + "url": "https://atomscan.com/migaloo", + "tx_page": "https://atomscan.com/migaloo/transactions/${txHash}", + "account_page": "https://atomscan.com/migaloo/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/migaloo/ibc.ts b/packages/chain-registry/src/mainnet/migaloo/ibc.ts new file mode 100644 index 000000000..a5f34c081 --- /dev/null +++ b/packages/chain-registry/src/mainnet/migaloo/ibc.ts @@ -0,0 +1,454 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-121", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-21", + "connection_id": "connection-21" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-154", + "connection_id": "connection-123" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-5", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-210", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-125", + "connection_id": "connection-162" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-90", + "connection_id": "connection-73" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-120", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-16", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2669", + "connection_id": "connection-2171" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-642", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-116", + "connection_id": "connection-87" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-22", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-352", + "connection_id": "connection-287" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-269", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-105", + "connection_id": "connection-93" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-86", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-234", + "connection_id": "connection-195" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-56", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/migaloo/ibc_chain1.ts b/packages/chain-registry/src/mainnet/migaloo/ibc_chain1.ts new file mode 100644 index 000000000..d06e93a9f --- /dev/null +++ b/packages/chain-registry/src/mainnet/migaloo/ibc_chain1.ts @@ -0,0 +1,237 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2669", + "connection_id": "connection-2171" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-642", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-116", + "connection_id": "connection-87" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-22", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-352", + "connection_id": "connection-287" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-269", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-105", + "connection_id": "connection-93" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-86", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-234", + "connection_id": "connection-195" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-56", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/migaloo/index.ts b/packages/chain-registry/src/mainnet/migaloo/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/migaloo/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/mises/assets.ts b/packages/chain-registry/src/mainnet/mises/assets.ts new file mode 100644 index 000000000..91e88cdb2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mises/assets.ts @@ -0,0 +1,45 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "mises", + "assets": [ + { + "description": "The native staking and gov token of the Mises Network.", + "denom_units": [ + { + "denom": "umis", + "exponent": 0, + "aliases": [ + "micromis" + ] + }, + { + "denom": "mmis", + "exponent": 3, + "aliases": [ + "millimis" + ] + }, + { + "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" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mises/chain.ts b/packages/chain-registry/src/mainnet/mises/chain.ts new file mode 100644 index 000000000..bbb30b284 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mises/chain.ts @@ -0,0 +1,72 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "umis" + } + ] + }, + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.gw.mises.site:443", + "provider": "Mises-1" + }, + { + "address": "https://e2.mises.site:443", + "provider": "Mises-3" + }, + { + "address": "https://w2.mises.site:443", + "provider": "Mises-5" + } + ], + "rest": [], + "grpc": [] + }, + "explorers": [ + { + "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}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mises/index.ts b/packages/chain-registry/src/mainnet/mises/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/mises/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/mun/assets.ts b/packages/chain-registry/src/mainnet/mun/assets.ts new file mode 100644 index 000000000..db6eea917 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mun/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "mun", + "assets": [ + { + "description": "The native token of Mun", + "denom_units": [ + { + "denom": "umun", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mun/chain.ts b/packages/chain-registry/src/mainnet/mun/chain.ts new file mode 100644 index 000000000..09889b61d --- /dev/null +++ b/packages/chain-registry/src/mainnet/mun/chain.ts @@ -0,0 +1,99 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "umun" + } + ] + }, + "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": [ + { + "address": "https://mainnet1rpc.mun.money", + "provider": "Mun" + }, + { + "address": "https://mainnet-mun-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://rpc.mun.tcnetwork.io", + "provider": "TC Network" + } + ], + "rest": [ + { + "address": "https://mainnet1.mun.money", + "provider": "Mun" + }, + { + "address": "https://mainnet-mun-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://rest.mun.tcnetwork.io", + "provider": "TC Network" + } + ], + "grpc": [] + }, + "explorers": [ + { + "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.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": "TC Network", + "url": "https://explorer.tcnetwork.io/mun", + "tx_page": "https://explorer.tcnetwork.io/mun/transaction/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mun/index.ts b/packages/chain-registry/src/mainnet/mun/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/mun/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/mythos/assets.ts b/packages/chain-registry/src/mainnet/mythos/assets.ts new file mode 100644 index 000000000..9f1f95c99 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mythos/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "mythos", + "assets": [ + { + "description": "The native token of Mythos", + "denom_units": [ + { + "denom": "aMYT", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mythos/chain.ts b/packages/chain-registry/src/mainnet/mythos/chain.ts new file mode 100644 index 000000000..4758b8691 --- /dev/null +++ b/packages/chain-registry/src/mainnet/mythos/chain.ts @@ -0,0 +1,60 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://mythos-rpc.provable.dev:443/", + "provider": "laurel.provable" + } + ], + "rest": [ + { + "address": "https://mythos.provable.dev/rest/", + "provider": "laurel.provable" + } + ], + "grpc": [ + { + "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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/mythos/index.ts b/packages/chain-registry/src/mainnet/mythos/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/mythos/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/neutron/assets.ts b/packages/chain-registry/src/mainnet/neutron/assets.ts new file mode 100644 index 000000000..a4b04ed1f --- /dev/null +++ b/packages/chain-registry/src/mainnet/neutron/assets.ts @@ -0,0 +1,754 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "neutron", + "assets": [ + { + "description": "The native token of Neutron chain.", + "denom_units": [ + { + "denom": "untrn", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "IBC uatom through cosmoshub-4 transfer/channel-1", + "denom_units": [ + { + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/uatom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + }, + { + "description": "IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2", + "denom_units": [ + { + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "axelar", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + }, + { + "description": "Tia on Neutron", + "denom_units": [ + { + "denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "exponent": 0, + "aliases": [ + "utia" + ] + }, + { + "denom": "tia", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-35", + "path": "transfer/channel-35" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "celestia", + "base_denom": "utia" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" + } + }, + { + "description": "Astropepe meme coin", + "denom_units": [ + { + "denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png" + } + ] + }, + { + "description": "wstETH on Neutron", + "denom_units": [ + { + "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "exponent": 0 + }, + { + "denom": "wstETH", + "exponent": 18 + } + ], + "base": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "name": "wstETH", + "display": "wstETH", + "symbol": "wstETH", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + }, + "provider": "Lido" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + } + }, + { + "description": "NBTC on Neutron", + "denom_units": [ + { + "denom": "ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920", + "exponent": 0, + "aliases": [ + "usat" + ] + }, + { + "denom": "sat", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-42", + "path": "transfer/channel-42/usat" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nomic", + "base_denom": "usat" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" + } + }, + { + "description": "DYDX on Neutron", + "denom_units": [ + { + "denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "exponent": 0, + "aliases": [ + "adydx" + ] + }, + { + "denom": "dydx", + "exponent": 18 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-48", + "path": "transfer/channel-48/adydx" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "dydx", + "base_denom": "adydx" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + } + }, + { + "description": "The cutest NEWT token on Neutron chain.", + "denom_units": [ + { + "denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "exponent": 0, + "aliases": [ + "unewt" + ] + }, + { + "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" + }, + "coingecko_id": "newt", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png" + } + ] + }, + { + "description": "ASTRO on Neutron", + "denom_units": [ + { + "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "exponent": 0, + "aliases": [ + "uastro" + ] + }, + { + "denom": "astro", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-5", + "path": "transfer/channel-5/cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "port": "transfer" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg" + } + }, + { + "description": "Baby Corgi is the real doggo of Neutron!", + "denom_units": [ + { + "denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "exponent": 0, + "aliases": [ + "ucorgi" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png" + } + ] + }, + { + "description": "clownmaxxed store of value", + "denom_units": [ + { + "denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "exponent": 0, + "aliases": [ + "ucircus" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png" + } + ] + }, + { + "description": "Jimmy Neutron Finance", + "denom_units": [ + { + "denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "exponent": 0, + "aliases": [ + "ujimmy" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png" + } + ] + }, + { + "description": "Baddest coin on Cosmos", + "denom_units": [ + { + "denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "exponent": 0, + "aliases": [ + "ubad" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png" + } + ] + }, + { + "description": "BITCOSMOS", + "denom_units": [ + { + "denom": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", + "exponent": 0, + "aliases": [ + "ubitcosmos" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png" + } + ] + }, + { + "description": "What the Fuck", + "denom_units": [ + { + "denom": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + "exponent": 0, + "aliases": [ + "uwtf" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png" + } + ] + }, + { + "description": "NLS on Neutron", + "denom_units": [ + { + "denom": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "exponent": 0, + "aliases": [ + "unls" + ] + }, + { + "denom": "nls", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-44", + "path": "transfer/channel-44/unls" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nolus", + "base_denom": "unls" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" + } + }, + { + "description": "A Mechanical Canine", + "denom_units": [ + { + "denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "exponent": 0, + "aliases": [ + "ugoddard" + ] + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "exponent": 0, + "aliases": [ + "uapollo" + ] + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg" + } + ] + }, + { + "description": "NEWTROLL", + "denom_units": [ + { + "denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "exponent": 0, + "aliases": [ + "unewtroll" + ] + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg" + } + ] + }, + { + "description": "Retro Game", + "denom_units": [ + { + "denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "exponent": 0, + "aliases": [ + "uretro" + ] + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/neutron/chain.ts b/packages/chain-registry/src/mainnet/neutron/chain.ts new file mode 100644 index 000000000..9b6e2791a --- /dev/null +++ b/packages/chain-registry/src/mainnet/neutron/chain.ts @@ -0,0 +1,209 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.novel.remedy.tm.p2p.org", + "provider": "P2P" + }, + { + "address": "https://neutron-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-neutron.whispernode.com", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://rpc-neutron.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "http://rpc.neutron.nodestake.top", + "provider": "NodeStake" + }, + { + "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://rpc-neutron.in3s.com:443", + "provider": "in3s.com" + }, + { + "address": "https://rpc.neutron.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://rest-lb.neutron.org", + "provider": "Neutron" + }, + { + "address": "https://api.novel.remedy.tm.p2p.org", + "provider": "P2P" + }, + { + "address": "https://neutron-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://lcd-neutron.whispernode.com", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api-neutron.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "http://api.neutron.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://neutron-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://community.nuxian-node.ch:6797/neutron/crpc", + "provider": "PRO Delegators" + }, + { + "address": "https://lcd.neutron.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "grpc-kralum.neutron-1.neutron.org:80", + "provider": "Neutron" + }, + { + "address": "https://grpc.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": "grpc-neutron.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "grpc-neutron.cosmos-spaces.cloud:3090", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc.neutron.nodestake.top:9090", + "provider": "NodeStake" + }, + { + "address": "neutron-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://grpc.neutron.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/neutron/ibc.ts b/packages/chain-registry/src/mainnet/neutron/ibc.ts new file mode 100644 index 000000000..3474eb74f --- /dev/null +++ b/packages/chain-registry/src/mainnet/neutron/ibc.ts @@ -0,0 +1,703 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-78", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-29", + "connection_id": "connection-7" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-48", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-35", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-74", + "connection_id": "connection-53" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-76", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-77", + "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" + }, + "chain_2": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-29", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-569", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-11", + "connection_id": "connection-17" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-72", + "connection_id": "connection-51" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-223", + "connection_id": "connection-220" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-78", + "connection_id": "connection-58" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-177", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-54", + "connection_id": "connection-37" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-136", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-25", + "connection_id": "connection-34" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nolus", + "client_id": "07-tendermint-13", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3839", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nomic", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-19", + "connection_id": "connection-18" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2823", + "connection_id": "connection-2338" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-874", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-161", + "connection_id": "connection-199" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-136", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-19", + "connection_id": "connection-139" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-27", + "connection_id": "connection-16" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-283", + "connection_id": "connection-211" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-191", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-125", + "connection_id": "connection-113" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-274", + "connection_id": "connection-192" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-167", + "port_id": "wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07" + }, + "chain_2": { + "channel_id": "channel-168", + "port_id": "wasm.terra1fkuhmq52pj08qqffp0elrvmzel8zz857x0pjjuuaar54mgcpe35s9km660" + }, + "ordering": "unordered", + "version": "astroport-ibc-v1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts b/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts new file mode 100644 index 000000000..b8c1fc1fd --- /dev/null +++ b/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts @@ -0,0 +1,346 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nolus", + "client_id": "07-tendermint-13", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3839", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "nomic", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-19", + "connection_id": "connection-18" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2823", + "connection_id": "connection-2338" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-874", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-161", + "connection_id": "connection-199" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-136", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-19", + "connection_id": "connection-139" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-27", + "connection_id": "connection-16" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-283", + "connection_id": "connection-211" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-191", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-125", + "connection_id": "connection-113" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-274", + "connection_id": "connection-192" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-167", + "port_id": "wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07" + }, + "chain_2": { + "channel_id": "channel-168", + "port_id": "wasm.terra1fkuhmq52pj08qqffp0elrvmzel8zz857x0pjjuuaar54mgcpe35s9km660" + }, + "ordering": "unordered", + "version": "astroport-ibc-v1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/neutron/index.ts b/packages/chain-registry/src/mainnet/neutron/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/neutron/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/nibiru/assets.ts b/packages/chain-registry/src/mainnet/nibiru/assets.ts new file mode 100644 index 000000000..ae8871e23 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nibiru/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "nibiru", + "assets": [ + { + "description": "The native token of Nibiru network", + "denom_units": [ + { + "denom": "unibi", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nibiru/chain.ts b/packages/chain-registry/src/mainnet/nibiru/chain.ts new file mode 100644 index 000000000..81b5ce31f --- /dev/null +++ b/packages/chain-registry/src/mainnet/nibiru/chain.ts @@ -0,0 +1,83 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "unibi" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmos_sdk_version": "v0.45.5", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.44.0" + }, + "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" + }, + "description": "A Web3 hub ushering in the next era of money", + "apis": { + "rpc": [ + { + "address": "https://rpc.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "rest": [ + { + "address": "https://lcd.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "grpc": [ + { + "address": "grpc.nibiru.fi:443", + "provider": "Nibiru Foundation" + } + ] + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nibiru/index.ts b/packages/chain-registry/src/mainnet/nibiru/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/nibiru/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/noble/assets.ts b/packages/chain-registry/src/mainnet/noble/assets.ts new file mode 100644 index 000000000..59314610e --- /dev/null +++ b/packages/chain-registry/src/mainnet/noble/assets.ts @@ -0,0 +1,154 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "noble", + "assets": [ + { + "description": "The permissioned staking asset for Noble Chain", + "denom_units": [ + { + "denom": "ustake", + "exponent": 0, + "aliases": [ + "microstake" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" + } + ] + }, + { + "description": "ATOM token on Noble", + "denom_units": [ + { + "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "exponent": 0 + }, + { + "denom": "atom", + "exponent": 6, + "aliases": [ + "ATOM" + ] + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ] + }, + { + "description": "USD Coin", + "denom_units": [ + { + "denom": "uusdc", + "exponent": 0, + "aliases": [ + "microusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "base": "uusdc", + "display": "usdc", + "name": "USD Coin", + "symbol": "USDC", + "coingecko_id": "usd-coin", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/noble/chain.ts b/packages/chain-registry/src/mainnet/noble/chain.ts new file mode 100644 index 000000000..add7034e2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/noble/chain.ts @@ -0,0 +1,111 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "v0.45.16", + "cosmwasm_enabled": false + }, + "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.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + } + ], + "rest": [ + { + "address": "https://noble-api.polkachu.com", + "provider": "polkachu" + }, + { + "address": "https://noble-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + } + ], + "grpc": [ + { + "address": "noble-grpc.polkachu.com:21590", + "provider": "polkachu" + }, + { + "address": "https://noble-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + } + ] + }, + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/noble/ibc.ts b/packages/chain-registry/src/mainnet/noble/ibc.ts new file mode 100644 index 000000000..70fbf70ce --- /dev/null +++ b/packages/chain-registry/src/mainnet/noble/ibc.ts @@ -0,0 +1,719 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-17", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-71", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-4", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-536", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-59", + "connection_id": "connection-57" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-12", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-58", + "connection_id": "connection-56" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-210", + "connection_id": "connection-193" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-15", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-224", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-2", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-113", + "connection_id": "connection-89" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-19", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-25", + "connection_id": "connection-34" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2704", + "connection_id": "connection-2241" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-750", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-160", + "connection_id": "connection-198" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-132", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-170", + "connection_id": "connection-127" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-45", + "connection_id": "connection-77" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-45", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-287", + "connection_id": "connection-214" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-97", + "connection_id": "connection-97" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-54", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-367", + "connection_id": "connection-302" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-253", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts b/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts new file mode 100644 index 000000000..c1b63d8fd --- /dev/null +++ b/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts @@ -0,0 +1,255 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2704", + "connection_id": "connection-2241" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-750", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-160", + "connection_id": "connection-198" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-132", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-170", + "connection_id": "connection-127" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-45", + "connection_id": "connection-77" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-45", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-287", + "connection_id": "connection-214" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-97", + "connection_id": "connection-97" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-54", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-367", + "connection_id": "connection-302" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-253", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/noble/index.ts b/packages/chain-registry/src/mainnet/noble/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/noble/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/nois/assets.ts b/packages/chain-registry/src/mainnet/nois/assets.ts new file mode 100644 index 000000000..72a2bfc26 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nois/assets.ts @@ -0,0 +1,41 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "nois", + "assets": [ + { + "description": "The native token of Nois", + "denom_units": [ + { + "denom": "unois", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nois/chain.ts b/packages/chain-registry/src/mainnet/nois/chain.ts new file mode 100644 index 000000000..2fbec11b0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nois/chain.ts @@ -0,0 +1,291 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "unois" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmos_sdk_version": "v0.45.15", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.31.0" + }, + "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", + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://nois-rpc.nysa.network", + "provider": "nysa.network" + }, + { + "address": "https://nois.rpc.bccnodes.com", + "provider": "BccNodes" + }, + { + "address": "https://nois-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-nois.mib.tech/", + "provider": "MadeInBlock" + }, + { + "address": "https://m-nois.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "http://nois.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-nois.ezstaking.dev", + "provider": "EZStaking" + }, + { + "address": "https://nois-mainnet-rpc.itrocket.net", + "provider": "itrocket" + }, + { + "address": "https://rpc.nois.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc-nois.d-stake.xyz", + "provider": "D-Stake" + }, + { + "address": "https://rpc-nois.sr20de.xyz", + "provider": "SR20DE" + }, + { + "address": "https://nois-mainnet-rpc.autostake.com", + "provider": "AutoStake" + }, + { + "address": "https://nois-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://nois.kingnodes.com", + "provider": "Kingnodes" + }, + { + "address": "https://nois.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc.nois.silentvalidator.com", + "provider": "silent" + }, + { + "address": "https://nois-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + } + ], + "grpc": [ + { + "address": "https://nois-grpc.nysa.network", + "provider": "nysa.network" + }, + { + "address": "nois.grpc.bccnodes.com:443", + "provider": "BccNodes" + }, + { + "address": "https://nois-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://grpc.noismain.mcbnode.online", + "provider": "mcbnode" + }, + { + "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": "https://grpc.nois.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://grpc-nois.d-stake.xyz", + "provider": "D-Stake" + }, + { + "address": "https://grpc.nois.hexnodes.co", + "provider": "HexNodes" + }, + { + "address": "https://grpc-nois.sr20de.xyz", + "provider": "SR20DE" + }, + { + "address": "https://nois-testnet-grpc.autostake.com", + "provider": "AutoStake" + }, + { + "address": "nois-grpc.polkachu.com:17390", + "provider": "Polkachu" + }, + { + "address": "https://grpc-nois.kingnodes.com", + "provider": "Kingnodes" + }, + { + "address": "nois.grpc.kjnodes.com:15190", + "provider": "kjnodes" + }, + { + "address": "grpc.nois.silentvalidator.com:443", + "provider": "silent" + }, + { + "address": "nois-grpc.stakeandrelax.net:17390", + "provider": "Stake&Relax 🦥" + } + ], + "rest": [ + { + "address": "https://m-nois.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://nois-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://lcd-nois.ezstaking.dev", + "provider": "EZStaking" + }, + { + "address": "https://lcd-nois.mib.tech/", + "provider": "MadeInBlock" + }, + { + "address": "https://nois.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://nois-mainnet-api.itrocket.net", + "provider": "itrocket" + }, + { + "address": "https://api.nois.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://api-nois.d-stake.xyz", + "provider": "D-Stake" + }, + { + "address": "https://api-nois.sr20de.xyz", + "provider": "SR20DE" + }, + { + "address": "https://nois-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://nois.kingnodes.com", + "provider": "Kingnodes" + }, + { + "address": "https://nois.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://api.nois.silentvalidator.com", + "provider": "silent" + }, + { + "address": "https://nois-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + } + ] + }, + "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": "🔥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": "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" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nois/ibc.ts b/packages/chain-registry/src/mainnet/nois/ibc.ts new file mode 100644 index 000000000..2d79c9a8c --- /dev/null +++ b/packages/chain-registry/src/mainnet/nois/ibc.ts @@ -0,0 +1,335 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "wasm.archway10f3aasgsnpv84ymjyld50jayc4ecu267sdpjamauwm8nvxlzex9qj4dkwr" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "wasm.aura1r3zgdsn3dcze07a4r60rxxx7ppvkxfshn9np0pwtkgarrld0786s72jtjt" + }, + "chain_2": { + "channel_id": "channel-35", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-138", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "wasm.inj1w9g3sk7lk8k0pdtctygupt6f3te7x4thvzz57a" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-225", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-243", + "port_id": "wasm.juno1qr84ktm57q5t02u04ddk5r8s79axdzglad6tfdd9g2xgt4hkh6jsgeq9x2" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8277", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-11319", + "port_id": "wasm.osmo1tvzr8ur0ynjhqftxpkl4qwel8ly7erhy6cu6ks426xmzf92vk6eqfp9wcl" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-106", + "connection_id": "connection-144" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "chain_2": { + "channel_id": "channel-59", + "port_id": "wasm.sei1vxlzhn6qvf95syha2tgr0ct23sk5359s2vqzylgthuyy7kd7ql5qcxa4r0" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-237", + "connection_id": "connection-171" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-238", + "port_id": "wasm.stars1mw5y55f53mnara7g3pn2pylxl8dpauscyn83c68442hz9nwktzrq8tjzyf" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nois/ibc_chain1.ts b/packages/chain-registry/src/mainnet/nois/ibc_chain1.ts new file mode 100644 index 000000000..f04c14441 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nois/ibc_chain1.ts @@ -0,0 +1,147 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8277", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-11319", + "port_id": "wasm.osmo1tvzr8ur0ynjhqftxpkl4qwel8ly7erhy6cu6ks426xmzf92vk6eqfp9wcl" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-106", + "connection_id": "connection-144" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "chain_2": { + "channel_id": "channel-59", + "port_id": "wasm.sei1vxlzhn6qvf95syha2tgr0ct23sk5359s2vqzylgthuyy7kd7ql5qcxa4r0" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-237", + "connection_id": "connection-171" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-238", + "port_id": "wasm.stars1mw5y55f53mnara7g3pn2pylxl8dpauscyn83c68442hz9nwktzrq8tjzyf" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nois/index.ts b/packages/chain-registry/src/mainnet/nois/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nois/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/nolus/assets.ts b/packages/chain-registry/src/mainnet/nolus/assets.ts new file mode 100644 index 000000000..af99b087c --- /dev/null +++ b/packages/chain-registry/src/mainnet/nolus/assets.ts @@ -0,0 +1,944 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "nolus", + "assets": [ + { + "description": "The native token of Nolus chain", + "denom_units": [ + { + "denom": "unls", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "axlUSDC transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ + { + "denom": "ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911", + "name": "axlUSDC", + "display": "usdc", + "symbol": "axlUSDC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-208/uusdc" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uosmo" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + }, + { + "description": "stOSMO transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ + { + "denom": "ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1", + "exponent": 0, + "aliases": [ + "stuosmo" + ] + }, + { + "denom": "stosmo", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1", + "name": "Osmosis", + "display": "stosmo", + "symbol": "stOSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-326/stuosmo" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388", + "name": "Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-0/uatom" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8", + "exponent": 0, + "aliases": [ + "ustatom" + ] + }, + { + "denom": "statom", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-326/stuatom" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C", + "exponent": 0, + "aliases": [ + "weth-wei" + ] + }, + { + "denom": "weth", + "exponent": 18, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C", + "name": "WETH", + "display": "weth", + "symbol": "WETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-208/weth-wei" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5" + }, + "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": [ + { + "denom": "ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] + }, + { + "denom": "wbtc", + "exponent": 8, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221", + "name": "WBTC", + "display": "wbtc", + "symbol": "WBTC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-208/wbtc-satoshi" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F" + }, + "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": [ + { + "denom": "ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459", + "exponent": 0, + "aliases": [ + "uakt" + ] + }, + { + "denom": "akt", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-1/uakt" + } + } + ], + "images": [ + { + "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": [ + { + "denom": "ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717", + "exponent": 0, + "aliases": [ + "uaxl" + ] + }, + { + "denom": "axl", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-208/uaxl" + } + } + ], + "images": [ + { + "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": [ + { + "denom": "ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C", + "exponent": 0, + "aliases": [ + "ujuno" + ] + }, + { + "denom": "juno", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-42/ujuno" + } + } + ], + "images": [ + { + "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": [ + { + "denom": "ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE", + "exponent": 0, + "aliases": [ + "aevmos" + ] + }, + { + "denom": "evmos", + "exponent": 18, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-204/aevmos" + } + } + ], + "images": [ + { + "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": [ + { + "denom": "ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865", + "exponent": 0, + "aliases": [ + "stk/uatom" + ] + }, + { + "denom": "stk/atom", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-4/stk/uatom" + } + } + ], + "images": [ + { + "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": [ + { + "denom": "ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107", + "exponent": 0, + "aliases": [ + "uscrt" + ] + }, + { + "denom": "scrt", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-88/uscrt" + } + } + ], + "images": [ + { + "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": [ + { + "denom": "ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48", + "exponent": 0, + "aliases": [ + "basecro" + ] + }, + { + "denom": "cro", + "exponent": 8, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-5/basecro" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1" + }, + "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": [ + { + "denom": "ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5", + "exponent": 0, + "aliases": [ + "ustars" + ] + }, + { + "denom": "stars", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-75/ustars" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5", + "exponent": 0, + "aliases": [ + "utia" + ] + }, + { + "denom": "tia", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-6994/utia" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B", + "exponent": 0, + "aliases": [ + "ustrd" + ] + }, + { + "denom": "strd", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-326/ustrd" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09", + "exponent": 0, + "aliases": [ + "untrn" + ] + }, + { + "denom": "ntrn", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-3839", + "path": "transfer/channel-3839/untrn" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4", + "exponent": 0, + "aliases": [ + "adydx" + ] + }, + { + "denom": "dydx", + "exponent": 18, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-3839", + "path": "transfer/channel-3839/transfer/channel-48/adydx" + } + } + ], + "images": [ + { + "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" + } + ], + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nolus/chain.ts b/packages/chain-registry/src/mainnet/nolus/chain.ts new file mode 100644 index 000000000..8ba5a6f6a --- /dev/null +++ b/packages/chain-registry/src/mainnet/nolus/chain.ts @@ -0,0 +1,228 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "v0.47.6-nolus", + "cosmwasm_enabled": true, + "cosmwasm_version": "neutron-org/wasmd v0.45.0" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" + }, + "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://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.sphincs.plus", + "provider": "Sphincs.plus 🔅" + }, + { + "address": "https://nolus.rpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://rpc-nolus.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://nolus.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://nolus-rpc.enigma-validator.com/", + "provider": "Enigma" + }, + { + "address": "https://nolus-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "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.ibs.team", + "provider": "Inter Blockchain Services" + } + ], + "rest": [ + { + "address": "https://pirin-cl.nolus.network:1317", + "provider": "NolusProtocol" + }, + { + "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-lcd.sphincs.plus", + "provider": "Sphincs.plus 🔅" + }, + { + "address": "https://api-nolus.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://nolus.api.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://rest-nolus.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://nolus.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://nolus-lcd.enigma-validator.com/", + "provider": "Enigma" + }, + { + "address": "https://nolus-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://nolus-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://nolus-api.ibs.team", + "provider": "Inter Blockchain Services" + } + ], + "grpc": [ + { + "address": "https://pirin-cl.nolus.network:9090", + "provider": "NolusProtocol" + }, + { + "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.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "grpc-nolus.architectnodes.com:1443", + "provider": "Architect Nodes" + }, + { + "address": "grpc-nolus.cosmos-spaces.cloud:1190", + "provider": "Cosmos Spaces" + }, + { + "address": "nolus.grpc.kjnodes.com:14390", + "provider": "kjnodes" + }, + { + "address": "nolus-grpc.w3coins.io:19790", + "provider": "w3coins" + }, + { + "address": "nolus-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nolus/ibc.ts b/packages/chain-registry/src/mainnet/nolus/ibc.ts new file mode 100644 index 000000000..4ae23608d --- /dev/null +++ b/packages/chain-registry/src/mainnet/nolus/ibc.ts @@ -0,0 +1,99 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4092", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3839", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-783", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nolus/ibc_chain1.ts b/packages/chain-registry/src/mainnet/nolus/ibc_chain1.ts new file mode 100644 index 000000000..9f97c16d7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nolus/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nolus", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2791", + "connection_id": "connection-2289" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-783", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nolus/index.ts b/packages/chain-registry/src/mainnet/nolus/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nolus/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/nomic/assets.ts b/packages/chain-registry/src/mainnet/nomic/assets.ts new file mode 100644 index 000000000..382ad4832 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nomic/assets.ts @@ -0,0 +1,72 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "nomic", + "assets": [ + { + "description": "Nomic's native token.", + "denom_units": [ + { + "denom": "unom", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Bitcoin. On Cosmos.", + "denom_units": [ + { + "denom": "usat", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Nomic" + } + ], + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nomic/chain.ts b/packages/chain-registry/src/mainnet/nomic/chain.ts new file mode 100644 index 000000000..6f45031df --- /dev/null +++ b/packages/chain-registry/src/mainnet/nomic/chain.ts @@ -0,0 +1,108 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "unom" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "codebase": { + "cosmos_sdk_version": "cosmos-sdk-proto 0.19.0" + }, + "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" + }, + "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://nomic-rpc.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://rpc-nomic.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://rpc.nomic.basementnodes.ca:443", + "provider": "Basement Nodes ⚡️" + }, + { + "address": "https://rpc.nomic.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://app.nomic.io:8443", + "provider": "nomic-io" + }, + { + "address": "https://rest.nomic.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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": [ + { + "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" + } +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nomic/ibc.ts b/packages/chain-registry/src/mainnet/nomic/ibc.ts new file mode 100644 index 000000000..e83286470 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nomic/ibc.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-64", + "connection_id": "connection-44" + }, + "chain_2": { + "chain_name": "nomic", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nomic", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3010", + "connection_id": "connection-2501" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6897", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nomic/ibc_chain1.ts b/packages/chain-registry/src/mainnet/nomic/ibc_chain1.ts new file mode 100644 index 000000000..bd6517ffe --- /dev/null +++ b/packages/chain-registry/src/mainnet/nomic/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nomic", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3010", + "connection_id": "connection-2501" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6897", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nomic/index.ts b/packages/chain-registry/src/mainnet/nomic/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nomic/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/nyx/assets.ts b/packages/chain-registry/src/mainnet/nyx/assets.ts new file mode 100644 index 000000000..7ca8e28f4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nyx/assets.ts @@ -0,0 +1,60 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "nyx", + "assets": [ + { + "description": "NYX Token (NYX) is the Nym Network's native token.", + "denom_units": [ + { + "denom": "unyx", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "images": [ + { + "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": [ + { + "denom": "unym", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "nym", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nyx/chain.ts b/packages/chain-registry/src/mainnet/nyx/chain.ts new file mode 100644 index 000000000..6f5767acd --- /dev/null +++ b/packages/chain-registry/src/mainnet/nyx/chain.ts @@ -0,0 +1,129 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmwasm_enabled": true + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png" + }, + "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" + } + ], + "rest": [ + { + "address": "https://nym-api.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://api.nyx.nodes.guru/", + "provider": "nodes guru" + }, + { + "address": "https://api.nymtech.net", + "provider": "Nym" + } + ], + "grpc": [ + { + "address": "nym-grpc.polkachu.com:15390", + "provider": "Polkachu" + }, + { + "address": "grpc.nymtech.net:443", + "provider": "Nym" + } + ] + }, + "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": "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": "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}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nyx/ibc.ts b/packages/chain-registry/src/mainnet/nyx/ibc.ts new file mode 100644 index 000000000..8a1cfbe22 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nyx/ibc.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nyx", + "client_id": "07-tendermint-17", + "connection_id": "connection-8" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3065", + "connection_id": "connection-2555" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15464", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nyx/ibc_chain1.ts b/packages/chain-registry/src/mainnet/nyx/ibc_chain1.ts new file mode 100644 index 000000000..ab271ea21 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nyx/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nyx", + "client_id": "07-tendermint-17", + "connection_id": "connection-8" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3065", + "connection_id": "connection-2555" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15464", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/nyx/index.ts b/packages/chain-registry/src/mainnet/nyx/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nyx/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/octa/assets.ts b/packages/chain-registry/src/mainnet/octa/assets.ts new file mode 100644 index 000000000..4666ad2f7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/octa/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "octa", + "assets": [ + { + "description": "The native token of Octa Chain", + "denom_units": [ + { + "denom": "uocta", + "exponent": 0, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/octa/chain.ts b/packages/chain-registry/src/mainnet/octa/chain.ts new file mode 100644 index 000000000..fb1c08c08 --- /dev/null +++ b/packages/chain-registry/src/mainnet/octa/chain.ts @@ -0,0 +1,47 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "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" + }, + "apis": { + "rpc": [], + "rest": [] + }, + "explorers": [ + { + "kind": "Octa explorer", + "url": "http://explorer.octa-coin.com/", + "tx_page": "http://explorer.octa-coin.com/txs/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/octa/index.ts b/packages/chain-registry/src/mainnet/octa/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/octa/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/odin/assets.ts b/packages/chain-registry/src/mainnet/odin/assets.ts new file mode 100644 index 000000000..3a3632b9f --- /dev/null +++ b/packages/chain-registry/src/mainnet/odin/assets.ts @@ -0,0 +1,90 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "odin", + "assets": [ + { + "description": "Staking and governance token for ODIN Protocol", + "denom_units": [ + { + "denom": "loki", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "GEO token for ODIN Protocol", + "denom_units": [ + { + "denom": "mGeo", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "O9W token for ODIN Protocol", + "denom_units": [ + { + "denom": "mO9W", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/odin/chain.ts b/packages/chain-registry/src/mainnet/odin/chain.ts new file mode 100644 index 000000000..179afe1a3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/odin/chain.ts @@ -0,0 +1,99 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "loki" + } + ] + }, + "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": [ + { + "address": "http://34.79.179.216:26657", + "provider": "Odin Protocol" + }, + { + "address": "https://odin-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://odin-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "rest": [ + { + "address": "http://34.79.179.216:1317/", + "provider": "Odin Protocol" + }, + { + "address": "https://odin-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://odin-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "grpc": [ + { + "address": "odin-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "odin-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ] + }, + "explorers": [ + { + "kind": "odin web", + "url": "https://mainnet.odinprotocol.io/", + "tx_page": "https://mainnet.odinprotocol.io/transactions/${txHash}" + }, + { + "kind": "ping.pub", + "url": "https://ping.pub/odin", + "tx_page": "https://ping.pub/odin/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/odin/ibc.ts b/packages/chain-registry/src/mainnet/odin/ibc.ts new file mode 100644 index 000000000..0843f9db8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/odin/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-150", + "connection_id": "connection-135" + }, + "chain_2": { + "chain_name": "odin", + "client_id": "07-tendermint-66", + "connection_id": "connection-151" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2007", + "connection_id": "connection-1551" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-258", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/odin/ibc_chain1.ts b/packages/chain-registry/src/mainnet/odin/ibc_chain1.ts new file mode 100644 index 000000000..aba368821 --- /dev/null +++ b/packages/chain-registry/src/mainnet/odin/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "odin", + "client_id": "07-tendermint-10", + "connection_id": "connection-9" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2007", + "connection_id": "connection-1551" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-258", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/odin/index.ts b/packages/chain-registry/src/mainnet/odin/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/odin/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/okexchain/assets.ts b/packages/chain-registry/src/mainnet/okexchain/assets.ts new file mode 100644 index 000000000..d67930805 --- /dev/null +++ b/packages/chain-registry/src/mainnet/okexchain/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "okexchain", + "assets": [ + { + "description": "The native token of OKExChain", + "denom_units": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "oec-token", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/okexchain/chain.ts b/packages/chain-registry/src/mainnet/okexchain/chain.ts new file mode 100644 index 000000000..54aa1ae20 --- /dev/null +++ b/packages/chain-registry/src/mainnet/okexchain/chain.ts @@ -0,0 +1,50 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" + }, + "apis": { + "rpc": [ + { + "address": "https://exchaintmrpc.okex.org", + "provider": "okx chain" + } + ], + "rest": [] + }, + "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}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/okexchain/ibc.ts b/packages/chain-registry/src/mainnet/okexchain/ibc.ts new file mode 100644 index 000000000..e86408065 --- /dev/null +++ b/packages/chain-registry/src/mainnet/okexchain/ibc.ts @@ -0,0 +1,160 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-5", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-44", + "connection_id": "connection-46" + }, + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-116", + "connection_id": "connection-78" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-31", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-212", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/okexchain/ibc_chain1.ts b/packages/chain-registry/src/mainnet/okexchain/ibc_chain1.ts new file mode 100644 index 000000000..eda848599 --- /dev/null +++ b/packages/chain-registry/src/mainnet/okexchain/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "okexchain", + "client_id": "07-tendermint-100", + "connection_id": "connection-44" + }, + "chain_2": { + "chain_name": "vidulum", + "client_id": "07-tendermint-5", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/okexchain/index.ts b/packages/chain-registry/src/mainnet/okexchain/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/okexchain/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/omniflixhub/assets.ts b/packages/chain-registry/src/mainnet/omniflixhub/assets.ts new file mode 100644 index 000000000..a7a5597fc --- /dev/null +++ b/packages/chain-registry/src/mainnet/omniflixhub/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "omniflixhub", + "assets": [ + { + "description": "The native staking token of OmniFlix Hub.", + "denom_units": [ + { + "denom": "uflix", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/omniflixhub/chain.ts b/packages/chain-registry/src/mainnet/omniflixhub/chain.ts new file mode 100644 index 000000000..7fb17c668 --- /dev/null +++ b/packages/chain-registry/src/mainnet/omniflixhub/chain.ts @@ -0,0 +1,227 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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" + }, + "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" + }, + "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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uflix" + } + ] + }, + "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://rpc.omniflix.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc.omniflix.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://rpc-omniflixhub-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://omniflixhub-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc.omniflix.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://omniflixhub-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc-omniflix.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://omniflix-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://rpc-omniflixhub.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://omniflix-rpc.dakshavalidator.in", + "provider": "Daksha Validator" + }, + { + "address": "https://rpc-omniflix.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "https://rpc.omniflix.stakeup.tech:443", + "provider": "StakeUp" + }, + { + "address": "https://rpc.omniflix.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://api.omniflix.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://api-omniflixhub-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://omniflixhub-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-omniflixhub.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://api.omniflix.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://omniflix.kingnodes.com", + "provider": "kingnodes" + }, + { + "address": "https://omniflixhub-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rest-omniflix.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://omniflix-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://omniflix-api.dakshavalidator.in", + "provider": "Daksha Validator" + }, + { + "address": "http://omniflix.api.staking-explorer.com", + "provider": "Daily $FLIX DROP 💰" + }, + { + "address": "https://api.omniflix.stakeup.tech", + "provider": "StakeUp" + }, + { + "address": "https://lcd.omniflix.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "grpc-omniflix.kingnodes.com:443", + "provider": "kingnodes" + }, + { + "address": "grpc.omniflix.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "grpc-omniflixhub-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "omniflixhub-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc-omniflixhub.cosmos-spaces.cloud:2230", + "provider": "Cosmos Spaces" + }, + { + "address": "omniflixhub-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-omniflix.architectnodes.com:1443", + "provider": "Architect Nodes" + }, + { + "address": "services.staketab.com:9015", + "provider": "Staketab" + }, + { + "address": "grpc-omniflix.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "grpc.omniflix.stakeup.tech:443", + "provider": "StakeUp" + }, + { + "address": "https://grpc.omniflix.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/omniflixhub/ibc.ts b/packages/chain-registry/src/mainnet/omniflixhub/ibc.ts new file mode 100644 index 000000000..65728463d --- /dev/null +++ b/packages/chain-registry/src/mainnet/omniflixhub/ibc.ts @@ -0,0 +1,156 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-306", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-43", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-70", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1829", + "connection_id": "connection-1431" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-199", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/omniflixhub/ibc_chain1.ts b/packages/chain-registry/src/mainnet/omniflixhub/ibc_chain1.ts new file mode 100644 index 000000000..5f18edcfd --- /dev/null +++ b/packages/chain-registry/src/mainnet/omniflixhub/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-8", + "connection_id": "connection-8" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1829", + "connection_id": "connection-1431" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-199", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/omniflixhub/index.ts b/packages/chain-registry/src/mainnet/omniflixhub/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/omniflixhub/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/onomy/assets.ts b/packages/chain-registry/src/mainnet/onomy/assets.ts new file mode 100644 index 000000000..c1a5b2c31 --- /dev/null +++ b/packages/chain-registry/src/mainnet/onomy/assets.ts @@ -0,0 +1,42 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "onomy", + "assets": [ + { + "description": "The native token of Onomy Protocol", + "denom_units": [ + { + "denom": "anom", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/onomy/chain.ts b/packages/chain-registry/src/mainnet/onomy/chain.ts new file mode 100644 index 000000000..45f5f5fda --- /dev/null +++ b/packages/chain-registry/src/mainnet/onomy/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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" + } + ], + "rest": [ + { + "address": "https://rest-mainnet.onomy.io", + "provider": "onomy" + } + ], + "grpc": [] + }, + "explorers": [ + { + "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}" + } + ], + "keywords": [ + "dex", + "stablecoin", + "bridge", + "staking" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/onomy/ibc.ts b/packages/chain-registry/src/mainnet/onomy/ibc.ts new file mode 100644 index 000000000..191ea5872 --- /dev/null +++ b/packages/chain-registry/src/mainnet/onomy/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-525", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/onomy/ibc_chain1.ts b/packages/chain-registry/src/mainnet/onomy/ibc_chain1.ts new file mode 100644 index 000000000..191ea5872 --- /dev/null +++ b/packages/chain-registry/src/mainnet/onomy/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "onomy", + "client_id": "07-tendermint-0", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2405", + "connection_id": "connection-1892" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-525", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/onomy/index.ts b/packages/chain-registry/src/mainnet/onomy/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/onomy/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/oraichain/assets.ts b/packages/chain-registry/src/mainnet/oraichain/assets.ts new file mode 100644 index 000000000..32d093096 --- /dev/null +++ b/packages/chain-registry/src/mainnet/oraichain/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "oraichain", + "assets": [ + { + "description": "The native token of Oraichain", + "denom_units": [ + { + "denom": "orai", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/oraichain/chain.ts b/packages/chain-registry/src/mainnet/oraichain/chain.ts new file mode 100644 index 000000000..f034c538a --- /dev/null +++ b/packages/chain-registry/src/mainnet/oraichain/chain.ts @@ -0,0 +1,126 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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.nodine.id/", + "provider": "Nodine.ID" + }, + { + "address": "https://oraichain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc-oraichain.mms.team", + "provider": "MMS" + }, + { + "address": "https://rpc-orai.blockval.io/", + "provider": "Blockval" + } + ], + "rest": [ + { + "address": "http://lcd.orai.io", + "provider": "oraichain-team" + }, + { + "address": "https://oraichain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://api-oraichain.mms.team", + "provider": "MMS" + }, + { + "address": "https://api-orai.blockval.io", + "provider": "Blockval" + } + ], + "grpc": [ + { + "address": "grpc-oraichain.mms.team:443", + "provider": "MMS" + }, + { + "address": "oraichain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-orai.blockval.io:9390", + "provider": "Blockval" + } + ] + }, + "explorers": [ + { + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/oraichain/ibc.ts b/packages/chain-registry/src/mainnet/oraichain/ibc.ts new file mode 100644 index 000000000..8d8fb8d77 --- /dev/null +++ b/packages/chain-registry/src/mainnet/oraichain/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1882", + "connection_id": "connection-1464" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-216", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/oraichain/ibc_chain1.ts b/packages/chain-registry/src/mainnet/oraichain/ibc_chain1.ts new file mode 100644 index 000000000..bc6cf5395 --- /dev/null +++ b/packages/chain-registry/src/mainnet/oraichain/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "oraichain", + "client_id": "07-tendermint-49", + "connection_id": "connection-21" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1882", + "connection_id": "connection-1464" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-216", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/oraichain/index.ts b/packages/chain-registry/src/mainnet/oraichain/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/oraichain/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/osmosis/assets.ts b/packages/chain-registry/src/mainnet/osmosis/assets.ts new file mode 100644 index 000000000..25eb371d9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/osmosis/assets.ts @@ -0,0 +1,1677 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "osmosis", + "assets": [ + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "uosmo", + "exponent": 0 + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "base": "uosmo", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "uion", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "ibc-index", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-208", + "path": "transfer/channel-208/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "axelar", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "exponent": 0, + "aliases": [ + "avalanche-uusdc" + ] + }, + { + "denom": "avalanche-usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-2186", + "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4" + } + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-750", + "path": "transfer/channel-750/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "exponent": 0, + "aliases": [ + "stuosmo" + ] + }, + { + "denom": "stosmo", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "name": "stOSMO", + "display": "stosmo", + "symbol": "stOSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuosmo", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/stuosmo" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "stride", + "base_denom": "stuosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-141" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uatom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "exponent": 0, + "aliases": [ + "stuatom" + ] + }, + { + "denom": "statom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuatom", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/stuatom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "stride", + "base_denom": "stuatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" + } + ], + "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": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "exponent": 0, + "aliases": [ + "weth-wei" + ] + }, + { + "denom": "weth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "ETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "weth-wei", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-208", + "path": "transfer/channel-208/weth-wei" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "axelar", + "base_denom": "weth-wei" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } + }, + { + "denom_units": [ + { + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] + }, + { + "denom": "wbtc", + "exponent": 8 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-208", + "path": "transfer/channel-208/wbtc-satoshi" + } + } + ], + "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" + }, + { + "image_sync": { + "chain_name": "axelar", + "base_denom": "wbtc-satoshi" + }, + "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" + } + }, + { + "description": "ERIS liquid staked OSMO", + "denom_units": [ + { + "denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png" + } + ] + }, + { + "description": "Tether USDT on Osmosis", + "denom_units": [ + { + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-143", + "path": "transfer/channel-143/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + }, + { + "description": "Membrane's CDP-style stablecoin called CDT", + "denom_units": [ + { + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "collateralized-debt-token", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg" + } + ] + }, + { + "description": "Membrane's protocol token", + "denom_units": [ + { + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "membrane", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg" + } + ] + }, + { + "description": "TIA on Osmosis", + "denom_units": [ + { + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "exponent": 0, + "aliases": [ + "utia" + ] + }, + { + "denom": "tia", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-6994", + "path": "transfer/channel-6994/utia" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "celestia", + "base_denom": "utia" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" + } + }, + { + "description": "Margined Power Token sqOSMO", + "denom_units": [ + { + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg" + } + ] + }, + { + "description": "NOIS on Osmosis", + "denom_units": [ + { + "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "exponent": 0, + "aliases": [ + "unois" + ] + }, + { + "denom": "nois", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-8277", + "path": "transfer/channel-8277/unois" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nois", + "base_denom": "unois" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" + } + ], + "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": [ + { + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg" + } + ] + }, + { + "description": "Margined Power Token sqATOM", + "denom_units": [ + { + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "exponent": 0, + "aliases": [ + "basecro" + ] + }, + { + "denom": "cro", + "exponent": 8 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-5", + "path": "transfer/channel-5/basecro" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "cryptoorgchain", + "base_denom": "basecro" + }, + "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": [ + { + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "exponent": 0, + "aliases": [ + "ustars" + ] + }, + { + "denom": "stars", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-75", + "path": "transfer/channel-75/ustars" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "stargaze", + "base_denom": "ustars" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" + } + }, + { + "description": "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": "YieldETH", + "exponent": 18 + } + ], + "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" + }, + "provider": "Seven Seas & DeFine Logic Labs" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" + }, + "provider": "Axelar" + }, + { + "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" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "exponent": 0, + "aliases": [ + "adydx" + ] + }, + { + "denom": "dydx", + "exponent": 18 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-6787", + "path": "transfer/channel-6787/adydx" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "dydx", + "base_denom": "adydx" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + } + }, + { + "description": "The native token of Quasar", + "denom_units": [ + { + "denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "exponent": 0, + "aliases": [ + "uqsr" + ] + }, + { + "denom": "qsr", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-688", + "path": "transfer/channel-688/uqsr" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "quasar", + "base_denom": "uqsr" + }, + "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": [ + { + "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "MilkyWay's liquid staked TIA", + "denom_units": [ + { + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "exponent": 0 + }, + { + "denom": "milkTIA", + "exponent": 6 + } + ], + "base": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "name": "milkTIA", + "display": "milkTIA", + "symbol": "milkTIA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "celestia", + "base_denom": "utia" + }, + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", + "exponent": 0, + "aliases": [ + "stk/uosmo" + ] + }, + { + "denom": "stkosmo", + "exponent": 6, + "aliases": [ + "stk/osmo" + ] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-4", + "path": "transfer/channel-4/stk/uosmo" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "persistence", + "base_denom": "stk/uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" + } + ], + "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": [ + { + "denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", + "exponent": 0, + "aliases": [ + "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" + ] + }, + { + "denom": "page", + "exponent": 8 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-144", + "path": "transfer/channel-144/gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" + } + ], + "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": [ + { + "denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "exponent": 0, + "aliases": [ + "unom" + ] + }, + { + "denom": "nom", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-6897", + "path": "transfer/channel-6897/unom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nomic", + "base_denom": "unom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" + } + }, + { + "description": "Bitcoin. On Cosmos.", + "denom_units": [ + { + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "exponent": 0, + "aliases": [ + "usat" + ] + }, + { + "denom": "nbtc", + "exponent": 14 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-6897", + "path": "transfer/channel-6897/usat" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nomic", + "base_denom": "usat" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" + } + }, + { + "description": "AUTISM on Osmosis", + "denom_units": [ + { + "denom": "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", + "exponent": 0, + "aliases": [ + "uautism" + ] + }, + { + "denom": "autism", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-122", + "path": "transfer/channel-122/factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "injective", + "base_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism" + }, + "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": [ + { + "denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", + "exponent": 0, + "aliases": [ + "uwoof" + ] + }, + { + "denom": "WOOF", + "exponent": 6 + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" + } + ] + }, + { + "description": "The native coin of Sneaky Productions.", + "denom_units": [ + { + "denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", + "exponent": 0, + "aliases": [ + "usneaky" + ] + }, + { + "denom": "sneaky", + "exponent": 6 + } + ], + "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" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] + }, + { + "denom": "wbtc", + "exponent": 8 + } + ], + "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" + }, + "provider": "BitGo, Kyber, and Ren" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" + } + ], + "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": [ + { + "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" + } + ] + }, + { + "description": "NLS on Osmosis", + "denom_units": [ + { + "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "exponent": 0, + "aliases": [ + "unls" + ] + }, + { + "denom": "nls", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-783", + "path": "transfer/channel-783/unls" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nolus", + "base_denom": "unls" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" + } + }, + { + "description": "STRD on Osmosis", + "denom_units": [ + { + "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "exponent": 0, + "aliases": [ + "ustrd" + ] + }, + { + "denom": "strd", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/ustrd" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "stride", + "base_denom": "ustrd" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" + } + ], + "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": [ + { + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg" + } + ] + }, + { + "description": "Sail DAO Token", + "denom_units": [ + { + "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/osmosis/chain.ts b/packages/chain-registry/src/mainnet/osmosis/chain.ts new file mode 100644 index 000000000..da39a0083 --- /dev/null +++ b/packages/chain-registry/src/mainnet/osmosis/chain.ts @@ -0,0 +1,381 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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" + }, + "layout": "logo", + "text_position": "right" + }, + { + "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.", + "apis": { + "rpc": [ + { + "address": "https://rpc.osmosis.zone/", + "provider": "Osmosis Foundation" + }, + { + "address": "https://rpc-osmosis.blockapsis.com", + "provider": "chainapsis" + }, + { + "address": "https://osmosis-rpc.onivalidator.com", + "provider": "Oni Validator ⛩️" + }, + { + "address": "https://osmosis-rpc.quickapi.com:443", + "provider": "Chainlayer" + }, + { + "address": "https://rpc-osmosis.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://osmosis-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-osmosis.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://rpc-osmosis.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://osmosis-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-osmosis-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://osmosis.rpc.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://osmosis-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://osmosis.api.onfinality.io/public", + "provider": "OnFinality" + }, + { + "address": "https://rpc-osmosis-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://osmosis-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc-osmosis.mms.team", + "provider": "MMS" + }, + { + "address": "https://osmosis-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://community.nuxian-node.ch:6797/osmosis/trpc", + "provider": "PRO Delegators" + }, + { + "address": "http://rpc-osmosis.freshstaking.com:31657", + "provider": "FreshSTAKING" + }, + { + "address": "https://osmosis-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://osmosis-mainnet.rpc.l0vd.com:443", + "provider": "L0vd.com ❤️" + }, + { + "address": "https://osmosis-rpc.reece.sh", + "provider": "Reecepbcups" + }, + { + "address": "https://rpc.osmosis.validatus.com", + "provider": "Validatus" + }, + { + "address": "https://rpc.osmosis.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://lcd.osmosis.zone/", + "provider": "Osmosis Foundation" + }, + { + "address": "https://osmosis-lcd.quickapi.com:443", + "provider": "Chainlayer" + }, + { + "address": "https://lcd-osmosis.blockapsis.com", + "provider": "chainapsis" + }, + { + "address": "https://osmosis-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rest-osmosis.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://api-osmosis-ia.cosmosia.notional.ventures", + "provider": "Notional" + }, + { + "address": "https://api-osmosis.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://osmosis-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://osmosis.rest.stakin-nodes.com", + "provider": "Stakin" + }, + { + "address": "https://osmosis-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://api-osmosis-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://osmosis-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://lcd-osmosis.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api-osmosis.mms.team", + "provider": "MMS" + }, + { + "address": "https://osmosis-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://community.nuxian-node.ch:6797/osmosis/crpc", + "provider": "PRO Delegators" + }, + { + "address": "https://osmosis-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://osmosis-mainnet.api.l0vd.com:443", + "provider": "L0vd.com ❤️" + }, + { + "address": "https://osmosis-api.reece.sh", + "provider": "Reecepbcups" + }, + { + "address": "https://api.osmosis.validatus.com:443", + "provider": "Validatus" + }, + { + "address": "https://lcd.osmosis.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "osmosis-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc-osmosis-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "osmosis.grpc.stakin-nodes.com:443", + "provider": "Stakin" + }, + { + "address": "osmosis-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-osmosis.cosmos-spaces.cloud:1130", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc-osmosis-01.stakeflow.io:6754", + "provider": "Stakeflow" + }, + { + "address": "services.staketab.com:9010", + "provider": "Staketab" + }, + { + "address": "osmosis-grpc.w3coins.io:12590", + "provider": "w3coins" + }, + { + "address": "grpc-osmosis.mms.team:443", + "provider": "MMS" + }, + { + "address": "osmosis-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "osmosis-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "https://grpc-osmosis.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "osmosis-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com ❤️" + }, + { + "address": "grpc-osmosis.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "grpc.osmosis.validatus.com:443", + "provider": "Validatus" + }, + { + "address": "https://grpc.osmosis.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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": "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": "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": "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": "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}" + } + ], + "keywords": [ + "dex" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/osmosis/ibc.ts b/packages/chain-registry/src/mainnet/osmosis/ibc.ts new file mode 100644 index 000000000..1976ca61c --- /dev/null +++ b/packages/chain-registry/src/mainnet/osmosis/ibc.ts @@ -0,0 +1,3685 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-641", + "port_id": "transfer" + }, + "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-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2316", + "connection_id": "connection-1814" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-490", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-320", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2785", + "connection_id": "connection-2285" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-779", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-0", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1429", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2697", + "connection_id": "connection-2235" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-648", + "port_id": "transfer" + }, + "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-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1923", + "connection_id": "connection-1498" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-232", + "port_id": "transfer" + }, + "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-47", + "connection_id": "connection-33" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3054", + "connection_id": "connection-2551" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11304", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1862", + "connection_id": "connection-1453" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-208", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-148", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2154", + "connection_id": "connection-1672" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-340", + "port_id": "transfer" + }, + "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-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1499", + "connection_id": "connection-1167" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "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-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1551", + "connection_id": "connection-1216" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-73", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2754", + "connection_id": "connection-2273" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-763", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1597", + "connection_id": "connection-1255" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-95", + "port_id": "transfer" + }, + "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-9", + "connection_id": "connection-9" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2481", + "connection_id": "connection-2017" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-550", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "carbon", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1808", + "connection_id": "connection-1412" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-188", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6994", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1875", + "connection_id": "connection-1460" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-212", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cheqd", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1615", + "connection_id": "connection-1268" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-108", + "port_id": "transfer" + }, + "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-45", + "connection_id": "connection-25" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1666", + "connection_id": "connection-1278" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-113", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-73", + "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" + }, + "chain_2": { + "channel_id": "channel-11348", + "port_id": "transfer" + }, + "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-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1587", + "connection_id": "connection-1243" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1279", + "port_id": "transfer" + }, + "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-3", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2929", + "connection_id": "connection-2426" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2188", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-141", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-17", + "connection_id": "connection-12" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2083", + "connection_id": "connection-1624" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-297", + "port_id": "transfer" + }, + "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-33", + "connection_id": "connection-12" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-4", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-298", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1798", + "connection_id": "connection-1403" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-181", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "desmos", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1726", + "connection_id": "connection-1315" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "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-13", + "connection_id": "connection-8" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1714", + "connection_id": "connection-1304" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-128", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2959", + "connection_id": "connection-2454" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2694", + "port_id": "transfer" + }, + "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-3", + "connection_id": "connection-7" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3009", + "connection_id": "connection-2500" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6787", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-526", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2268", + "connection_id": "connection-1760" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-403", + "port_id": "transfer" + }, + "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-7", + "connection_id": "connection-2" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1447", + "connection_id": "connection-1132" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2848", + "connection_id": "connection-2360" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1411", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1840", + "connection_id": "connection-1440" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "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-4", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3029", + "connection_id": "connection-2515" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8690", + "port_id": "transfer" + }, + "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-23", + "connection_id": "connection-22" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2961", + "connection_id": "connection-2456" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2716", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "galaxy", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1928", + "connection_id": "connection-1500" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-236", + "port_id": "transfer" + }, + "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-8", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2927", + "connection_id": "connection-2424" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2186", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1983", + "connection_id": "connection-1539" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-253", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2787", + "connection_id": "connection-2287" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-781", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-13", + "connection_id": "connection-13" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1737", + "connection_id": "connection-1340" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-144", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1575", + "port_id": "transfer" + }, + "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-12", + "connection_id": "connection-12" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1451", + "connection_id": "connection-1137" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-517", + "port_id": "transfer" + }, + "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-19", + "connection_id": "connection-14" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1703", + "connection_id": "connection-1298" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-122", + "port_id": "transfer" + }, + "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-5", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-5", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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-2", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2273", + "connection_id": "connection-1762" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-412", + "port_id": "transfer" + }, + "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-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1457", + "connection_id": "connection-1142" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-47", + "port_id": "wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn" + }, + "chain_2": { + "channel_id": "channel-169", + "port_id": "transfer" + }, + "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-2", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1735", + "connection_id": "connection-1328" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-143", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kichain", + "client_id": "07-tendermint-4", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1564", + "connection_id": "connection-1225" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-77", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "wasm.ki1hzz0s0ucrhdp6tue2lxk3c03nj6f60qy463we7lgx0wudd72ctmsd9kgha" + }, + "chain_2": { + "channel_id": "channel-261", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1778", + "connection_id": "connection-1384" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-171", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2017", + "connection_id": "connection-1559" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-259", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-767", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2217", + "connection_id": "connection-1733" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-378", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1507", + "connection_id": "connection-1173" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2079", + "connection_id": "connection-1620" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-286", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1668", + "connection_id": "connection-1280" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-115", + "port_id": "transfer" + }, + "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-4", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2602", + "connection_id": "connection-2114" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-557", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2372", + "connection_id": "connection-1869" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-519", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "meme", + "client_id": "07-tendermint-0", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1931", + "connection_id": "connection-1502" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-238", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1453", + "connection_id": "connection-1139" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "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-3", + "connection_id": "connection-11" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2669", + "connection_id": "connection-2171" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-642", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2823", + "connection_id": "connection-2338" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-874", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2704", + "connection_id": "connection-2241" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-750", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8277", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-11319", + "port_id": "wasm.osmo1tvzr8ur0ynjhqftxpkl4qwel8ly7erhy6cu6ks426xmzf92vk6eqfp9wcl" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2791", + "connection_id": "connection-2289" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-783", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3010", + "connection_id": "connection-2501" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6897", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3065", + "connection_id": "connection-2555" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15464", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2007", + "connection_id": "connection-1551" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-258", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-199", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2405", + "connection_id": "connection-1892" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-525", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1882", + "connection_id": "connection-1464" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-216", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "panacea", + "client_id": "07-tendermint-6", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "passage", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2494", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-6", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-492", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "provenance", + "client_id": "07-tendermint-31", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-222", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "pundix", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12618", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quasar", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-688", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2400", + "connection_id": "connection-1889" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-6", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-522", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "qwoyn", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-880", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2849", + "connection_id": "connection-2361" + }, + "chain_2": { + "chain_name": "realio", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1424", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2173", + "connection_id": "connection-1692" + }, + "chain_2": { + "chain_name": "rebus", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-355", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-6", + "connection_id": "connection-7" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "rizon", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-221", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-476", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-44", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-2", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-782", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2972", + "connection_id": "connection-2468" + }, + "chain_2": { + "chain_name": "sge", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5485", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2680", + "connection_id": "connection-2182" + }, + "chain_2": { + "chain_name": "shareledger", + "client_id": "07-tendermint-1", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-647", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1741", + "connection_id": "connection-1342" + }, + "chain_2": { + "chain_name": "shentu", + "client_id": "07-tendermint-9", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-41", + "connection_id": "connection-20" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-165", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3035", + "connection_id": "connection-2524" + }, + "chain_2": { + "chain_name": "source", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8945", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2969", + "connection_id": "connection-2465" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-7", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5413", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-71", + "connection_id": "connection-42" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-1", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-326", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2192", + "connection_id": "connection-1710" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-362", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1215", + "connection_id": "connection-1549" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-12", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-72", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-251", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-559", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-85", + "port_id": "wasm.terra1d90p5lacfxnqgjxjupu234lxnxyeu8fdeef4d0e0nqy3p30r7gss4myn9x" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-341", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "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" + }, + "chain_2": { + "chain_name": "tgrade", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-263", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1805", + "connection_id": "connection-1410" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-6", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2229", + "connection_id": "connection-1746" + }, + "chain_2": { + "chain_name": "unification", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-382", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1705", + "connection_id": "connection-1300" + }, + "chain_2": { + "chain_name": "vidulum", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2875", + "connection_id": "connection-2389" + }, + "chain_2": { + "chain_name": "xpla", + "client_id": "07-tendermint-11", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1634", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts b/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts new file mode 100644 index 000000000..3b996e023 --- /dev/null +++ b/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts @@ -0,0 +1,1139 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "passage", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2494", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-6", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-492", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "provenance", + "client_id": "07-tendermint-31", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-222", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "pundix", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12618", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quasar", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-688", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2400", + "connection_id": "connection-1889" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-6", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-522", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "qwoyn", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-880", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2849", + "connection_id": "connection-2361" + }, + "chain_2": { + "chain_name": "realio", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1424", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2173", + "connection_id": "connection-1692" + }, + "chain_2": { + "chain_name": "rebus", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-355", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-6", + "connection_id": "connection-7" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "rizon", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-221", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-476", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-44", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-2", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-782", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2972", + "connection_id": "connection-2468" + }, + "chain_2": { + "chain_name": "sge", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5485", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2680", + "connection_id": "connection-2182" + }, + "chain_2": { + "chain_name": "shareledger", + "client_id": "07-tendermint-1", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-647", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1741", + "connection_id": "connection-1342" + }, + "chain_2": { + "chain_name": "shentu", + "client_id": "07-tendermint-9", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-41", + "connection_id": "connection-20" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-165", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3035", + "connection_id": "connection-2524" + }, + "chain_2": { + "chain_name": "source", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8945", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2969", + "connection_id": "connection-2465" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-7", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5413", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-71", + "connection_id": "connection-42" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-1", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-326", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2192", + "connection_id": "connection-1710" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-362", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1215", + "connection_id": "connection-1549" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-12", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-72", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-251", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-559", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-85", + "port_id": "wasm.terra1d90p5lacfxnqgjxjupu234lxnxyeu8fdeef4d0e0nqy3p30r7gss4myn9x" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-341", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "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" + }, + "chain_2": { + "chain_name": "tgrade", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-263", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1805", + "connection_id": "connection-1410" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-6", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2229", + "connection_id": "connection-1746" + }, + "chain_2": { + "chain_name": "unification", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-382", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1705", + "connection_id": "connection-1300" + }, + "chain_2": { + "chain_name": "vidulum", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2875", + "connection_id": "connection-2389" + }, + "chain_2": { + "chain_name": "xpla", + "client_id": "07-tendermint-11", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1634", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/osmosis/index.ts b/packages/chain-registry/src/mainnet/osmosis/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/osmosis/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/panacea/assets.ts b/packages/chain-registry/src/mainnet/panacea/assets.ts new file mode 100644 index 000000000..f2e3e942a --- /dev/null +++ b/packages/chain-registry/src/mainnet/panacea/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "umed", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/panacea/chain.ts b/packages/chain-registry/src/mainnet/panacea/chain.ts new file mode 100644 index 000000000..b5ddbf155 --- /dev/null +++ b/packages/chain-registry/src/mainnet/panacea/chain.ts @@ -0,0 +1,88 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "umed" + } + ] + }, + "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": [ + { + "address": "https://rpc.gopanacea.org", + "provider": "medibloc" + }, + { + "address": "https://panacea-rpc.staketab.org:443", + "provider": "Staketab" + } + ], + "rest": [ + { + "address": "https://api.gopanacea.org", + "provider": "medibloc" + }, + { + "address": "https://panacea-rest.staketab.org", + "provider": "Staketab" + } + ], + "grpc": [ + { + "address": "services.staketab.com:9400", + "provider": "Staketab" + } + ] + }, + "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": "bigdipper", + "url": "https://explorer.gopanacea.org", + "tx_page": "https://explorer.gopanacea.org/transactions/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/panacea/ibc.ts b/packages/chain-registry/src/mainnet/panacea/ibc.ts new file mode 100644 index 000000000..028648930 --- /dev/null +++ b/packages/chain-registry/src/mainnet/panacea/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1576", + "connection_id": "connection-1231" + }, + "chain_2": { + "chain_name": "panacea", + "client_id": "07-tendermint-6", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/panacea/index.ts b/packages/chain-registry/src/mainnet/panacea/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/panacea/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/passage/assets.ts b/packages/chain-registry/src/mainnet/passage/assets.ts new file mode 100644 index 000000000..904fc945d --- /dev/null +++ b/packages/chain-registry/src/mainnet/passage/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "passage", + "assets": [ + { + "description": "The native staking and governance token of the Passage chain.", + "denom_units": [ + { + "denom": "upasg", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/passage/chain.ts b/packages/chain-registry/src/mainnet/passage/chain.ts new file mode 100644 index 000000000..b72d8f710 --- /dev/null +++ b/packages/chain-registry/src/mainnet/passage/chain.ts @@ -0,0 +1,252 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.passage.vitwit.com", + "provider": "vitwit" + }, + { + "address": "https://passage-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://rpc-passage.ecostake.com", + "provider": "ecostake" + }, + { + "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.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://rpc.passage.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://passage-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://passage-rpc.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://rpc-passage.d-stake.xyz", + "provider": "D-stake" + }, + { + "address": "https://rpc-passage.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://passage-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://passage-rpc.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://passage-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://passage-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://rpc-passage.mainnet.validatrium.club", + "provider": "Validatrium" + } + ], + "rest": [ + { + "address": "https://api.passage.vitwit.com", + "provider": "vitwit" + }, + { + "address": "https://passage-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://rest-passage.ecostake.com", + "provider": "ecostake" + }, + { + "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-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://api.passage.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://passage-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://passage-api.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://api-passage.d-stake.xyz", + "provider": "D-stake" + }, + { + "address": "https://passage-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://lcd-passage.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://passage-rest.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://passage-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://passage-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://api-passage.mainnet.validatrium.club", + "provider": "Validatrium" + } + ], + "grpc": [ + { + "address": "grpc-passage-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "passage-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "passage-grpc.polkachu.com:15690", + "provider": "Polkachu" + }, + { + "address": "grpc-passage.cosmos-spaces.cloud:2320", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc.passage.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "passage-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "services.staketab.com:9023", + "provider": "Staketab" + }, + { + "address": "passage-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + }, + { + "address": "passage-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "passage-grpc.stakeandrelax.net:15690", + "provider": "Stake&Relax 🦥" + }, + { + "address": "grpc-passage.mainnet.validatrium.club:20590", + "provider": "Validatrium" + } + ] + }, + "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": "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": "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/passage/ibc.ts b/packages/chain-registry/src/mainnet/passage/ibc.ts new file mode 100644 index 000000000..198edc6cd --- /dev/null +++ b/packages/chain-registry/src/mainnet/passage/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2935", + "connection_id": "connection-2430" + }, + "chain_2": { + "chain_name": "passage", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2494", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/passage/index.ts b/packages/chain-registry/src/mainnet/passage/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/passage/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/passage1/assets.ts b/packages/chain-registry/src/mainnet/passage1/assets.ts new file mode 100644 index 000000000..7ade39916 --- /dev/null +++ b/packages/chain-registry/src/mainnet/passage1/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "passage1", + "assets": [ + { + "description": "The native staking and governance token of the Passage chain.", + "denom_units": [ + { + "denom": "upasg", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/passage1/chain.ts b/packages/chain-registry/src/mainnet/passage1/chain.ts new file mode 100644 index 000000000..4a4e2b58e --- /dev/null +++ b/packages/chain-registry/src/mainnet/passage1/chain.ts @@ -0,0 +1,62 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "upasg" + } + ] + }, + "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": "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}" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/passage1/index.ts b/packages/chain-registry/src/mainnet/passage1/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/passage1/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/persistence/assets.ts b/packages/chain-registry/src/mainnet/persistence/assets.ts new file mode 100644 index 000000000..40e749356 --- /dev/null +++ b/packages/chain-registry/src/mainnet/persistence/assets.ts @@ -0,0 +1,358 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "persistence", + "assets": [ + { + "description": "The XPRT token is primarily a governance token for the Persistence chain.", + "denom_units": [ + { + "denom": "uxprt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "PSTAKE Liquid-Staked ATOM", + "denom_units": [ + { + "denom": "stk/uatom", + "exponent": 0, + "aliases": [] + }, + { + "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" + }, + "coingecko_id": "stkatom", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" + } + ] + }, + { + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", + "denom_units": [ + { + "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", + "exponent": 0, + "aliases": [ + "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" + ] + }, + { + "denom": "pstake", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", + "name": "pSTAKE Finance", + "display": "pstake", + "symbol": "PSTAKE", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "persistence", + "base_denom": "uxprt" + }, + "provider": "Persistence" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" + }, + "provider": "Gravity Bridge" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "gravitybridge", + "base_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "channel_id": "channel-24" + }, + "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" + }, + "keywords": [ + "canon" + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-24", + "path": "transfer/channel-24/uatom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + }, + { + "description": "Tether USDT on Persistence", + "denom_units": [ + { + "denom": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-129", + "path": "transfer/channel-129/erc20/tether/usdt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-132", + "path": "transfer/channel-132/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + } + }, + { + "description": "dydx staking token", + "denom_units": [ + { + "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", + "exponent": 0, + "aliases": [ + "adydx" + ] + }, + { + "denom": "dydx", + "exponent": 18 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-131", + "path": "transfer/channel-131/adydx" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "dydx", + "base_denom": "adydx" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + } + }, + { + "description": "PSTAKE Liquid-Staked OSMO", + "denom_units": [ + { + "denom": "stk/uosmo", + "exponent": 0, + "aliases": [] + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/persistence/chain.ts b/packages/chain-registry/src/mainnet/persistence/chain.ts new file mode 100644 index 000000000..43b4881a2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/persistence/chain.ts @@ -0,0 +1,268 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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-persistent-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://persistence-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://persistence-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://rpc-persistence.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://rpc-persistence.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://persistence-mainnet-rpc.cosmonautstakes.com", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://persistence-rpc.quantnode.tech", + "provider": "QuantNode" + }, + { + "address": "https://persistence-rpc.zenscape.one", + "provider": "Zenscape" + }, + { + "address": "https://persistence-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://persistence-rpc.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" + }, + { + "address": "https://rpc.persistence.posthuman.digital:443", + "provider": "POSTHUMAN∞DVS" + }, + { + "address": "https://rpc-persistence-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "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.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + } + ], + "rest": [ + { + "address": "https://rest.core.persistence.one", + "provider": "Persistence" + }, + { + "address": "https://api-persistent-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://persistence-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api-persistence.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://persistence-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "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-rest.cosmonautstakes.com", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://persistence-lcd.quantnode.tech", + "provider": "QuantNode" + }, + { + "address": "https://persistence-rest.zenscape.one", + "provider": "Zenscape" + }, + { + "address": "https://persistence-api.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" + }, + { + "address": "https://rest.persistence.posthuman.digital:443", + "provider": "POSTHUMAN∞DVS" + }, + { + "address": "https://api-persistence-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://persistence-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://persistence-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://persistence-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + } + ], + "grpc": [ + { + "address": "grpc.core.persistence.one:443", + "provider": "Persistence" + }, + { + "address": "grpc-persistent-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "persistence-grpc.polkachu.com:15490", + "provider": "Polkachu" + }, + { + "address": "persistence-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc.persistence.posthuman.digital:80", + "provider": "POSTHUMAN∞DVS" + }, + { + "address": "grpc-persistence.cosmos-spaces.cloud:1180", + "provider": "Cosmos Spaces" + }, + { + "address": "141.95.33.97:9090", + "provider": "Stakewolle.com | Auto-compound" + }, + { + "address": "grpc-persistence-01.stakeflow.io:49090", + "provider": "Stakeflow" + }, + { + "address": "persistence-grpc.w3coins.io:15490", + "provider": "w3coins" + }, + { + "address": "persistence-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "persistence-grpc.stakeandrelax.net:15490", + "provider": "Stake&Relax 🦥" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/persistence/ibc.ts b/packages/chain-registry/src/mainnet/persistence/ibc.ts new file mode 100644 index 000000000..0d1419e69 --- /dev/null +++ b/packages/chain-registry/src/mainnet/persistence/ibc.ts @@ -0,0 +1,652 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-190", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-131", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-31", + "connection_id": "connection-25" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-134", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-129", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-161", + "connection_id": "connection-199" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-136", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-132", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-15", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-73", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-30", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-126", + "connection_id": "connection-98" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-61", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-18", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-44", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-54", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-67", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-179", + "connection_id": "connection-119" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-81", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts b/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts new file mode 100644 index 000000000..132916b87 --- /dev/null +++ b/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts @@ -0,0 +1,231 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-73", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-30", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-126", + "connection_id": "connection-98" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-61", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-18", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-44", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-54", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-67", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-179", + "connection_id": "connection-119" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-81", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/persistence/index.ts b/packages/chain-registry/src/mainnet/persistence/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/persistence/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/planq/assets.ts b/packages/chain-registry/src/mainnet/planq/assets.ts new file mode 100644 index 000000000..6f1e03adf --- /dev/null +++ b/packages/chain-registry/src/mainnet/planq/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "planq", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Planq Network", + "denom_units": [ + { + "denom": "aplanq", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/planq/chain.ts b/packages/chain-registry/src/mainnet/planq/chain.ts new file mode 100644 index 000000000..e98f4778a --- /dev/null +++ b/packages/chain-registry/src/mainnet/planq/chain.ts @@ -0,0 +1,253 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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://planq.rpc.bccnodes.com", + "provider": "BccNodes" + }, + { + "address": "https://rpc.planq.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://planq-rpc.kynraze.com", + "provider": "Kynraze" + }, + { + "address": "https://rpc.planq.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://rpc.planq.roomit.xyz", + "provider": "RoomIT" + }, + { + "address": "https://planq-rpc.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://rpc.planq.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://planq.rpc.skynodejs.net", + "provider": "skynodejs" + } + ], + "rest": [ + { + "address": "https://rest.planq.network", + "provider": "planq.network" + }, + { + "address": "https://api.planq.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://planq-api.kynraze.com", + "provider": "Kynraze" + }, + { + "address": "https://api.planq.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://api.planq.roomit.xyz", + "provider": "RoomIT" + }, + { + "address": "https://planq-api.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://api.planq.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://planq.api.skynodejs.net", + "provider": "skynodejs" + } + ], + "grpc": [ + { + "address": "grpc.planq.network:443", + "provider": "planq.network" + }, + { + "address": "planq.grpc.bccnodes.com:443", + "provider": "BccNodes" + }, + { + "address": "grpc.planq.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://grpc-planq.nodine.id", + "provider": "Nodine.id" + }, + { + "address": "https://grpc-planq.sxlzptprjkt.xyz:443", + "provider": "sxlzptprjkt | VALIDATOR" + }, + { + "address": "https://grpc.planq.nodexcapital.com:443", + "provider": "NodeX Validator" + }, + { + "address": "https://grpc.planq.roomit.xyz:8443", + "provider": "RoomIT" + }, + { + "address": "https://grpc.planq.hexnodes.co:33090", + "provider": "Hexnodes" + }, + { + "address": "planq-grpc.genznodes.dev:28090", + "provider": "genznodes" + }, + { + "address": "grpc.planq.safeblock.space:9090", + "provider": "Safe Block" + }, + { + "address": "https://planq.grpc.skynodejs.net", + "provider": "skynodejs" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://evm-rpc.planq.network", + "provider": "planq.network" + }, + { + "address": "https://jsonrpc.planq.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc-evm-planq.sxlzptprjkt.xyz", + "provider": "sxlzptprjkt | VALIDATOR" + }, + { + "address": "https://jsonrpc.planq.nodexcapital.com", + "provider": "NodeX Validator" + }, + { + "address": "https://planq-rpc-evm.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://evm.planq.safeblock.space", + "provider": "Safe Block" + } + ] + }, + "explorers": [ + { + "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": "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": "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": "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": "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": "Safe Block", + "url": "https://explorer.safeblock.space/planq", + "tx_page": "https://explorer.safeblock.space/planq/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/planq/ibc.ts b/packages/chain-registry/src/mainnet/planq/ibc.ts new file mode 100644 index 000000000..e0e223966 --- /dev/null +++ b/packages/chain-registry/src/mainnet/planq/ibc.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-446", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-195", + "connection_id": "connection-165" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-102", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2318", + "connection_id": "connection-1815" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-492", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-59", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/planq/ibc_chain1.ts b/packages/chain-registry/src/mainnet/planq/ibc_chain1.ts new file mode 100644 index 000000000..11dcef0ae --- /dev/null +++ b/packages/chain-registry/src/mainnet/planq/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "planq", + "client_id": "07-tendermint-545", + "connection_id": "connection-477" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-21", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-59", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/planq/index.ts b/packages/chain-registry/src/mainnet/planq/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/planq/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/point/assets.ts b/packages/chain-registry/src/mainnet/point/assets.ts new file mode 100644 index 000000000..000d577cd --- /dev/null +++ b/packages/chain-registry/src/mainnet/point/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "point", + "assets": [ + { + "description": "The native governance and staking token of the Point network", + "denom_units": [ + { + "denom": "apoint", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/point/chain.ts b/packages/chain-registry/src/mainnet/point/chain.ts new file mode 100644 index 000000000..6975d7772 --- /dev/null +++ b/packages/chain-registry/src/mainnet/point/chain.ts @@ -0,0 +1,119 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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.point.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc.point.indonode.net", + "provider": "Indonode" + } + ], + "rest": [ + { + "address": "https://rpc-mainnet-1.point.space:1317", + "provider": "Point Network" + }, + { + "address": "https://api.point.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://api.point.indonode.net", + "provider": "Indonode" + } + ], + "grpc": [ + { + "address": "grpc.point.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://grpc.point.nodexcapital.com", + "provider": "⚡NodeX Validator⚡" + }, + { + "address": "https://grpc.point.indonode.net:21090", + "provider": "Indonode" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://rpc-mainnet-1.point.space", + "provider": "Point Network" + }, + { + "address": "https://jsonrpc.point.nodestake.top", + "provider": "NodeStake" + } + ] + }, + "explorers": [ + { + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/point/ibc.ts b/packages/chain-registry/src/mainnet/point/ibc.ts new file mode 100644 index 000000000..1181c4e1a --- /dev/null +++ b/packages/chain-registry/src/mainnet/point/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-404", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/point/index.ts b/packages/chain-registry/src/mainnet/point/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/point/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/provenance/assets.ts b/packages/chain-registry/src/mainnet/provenance/assets.ts new file mode 100644 index 000000000..e6b0f9244 --- /dev/null +++ b/packages/chain-registry/src/mainnet/provenance/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "provenance", + "assets": [ + { + "description": "Hash is the staking token of the Provenance Blockchain", + "denom_units": [ + { + "denom": "nhash", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/provenance/chain.ts b/packages/chain-registry/src/mainnet/provenance/chain.ts new file mode 100644 index 000000000..1e409e03f --- /dev/null +++ b/packages/chain-registry/src/mainnet/provenance/chain.ts @@ -0,0 +1,166 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.io/", + "provider": "Figure" + }, + { + "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-rpc.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://provenance-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://rpc.provenance.blockval.io/", + "provider": "Blockval" + } + ], + "rest": [ + { + "address": "https://api-provenance.takeshi.team", + "provider": "TAKESHI" + }, + { + "address": "https://provenance-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://api.provenance.io", + "provider": "Figure" + }, + { + "address": "https://api-provenance-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://provenance-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://provenance-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://api.provenance.blockval.io", + "provider": "Blockval" + } + ], + "grpc": [ + { + "address": "grpc-provenance.takeshi.team:443", + "provider": "TAKESHI" + }, + { + "address": "provenance-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-provenance-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "grpc.provenance.blockval.io:9290", + "provider": "Blockval" + } + ] + }, + "explorers": [ + { + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/provenance/ibc.ts b/packages/chain-registry/src/mainnet/provenance/ibc.ts new file mode 100644 index 000000000..bb27dbb1a --- /dev/null +++ b/packages/chain-registry/src/mainnet/provenance/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1899", + "connection_id": "connection-1472" + }, + "chain_2": { + "chain_name": "provenance", + "client_id": "07-tendermint-31", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-222", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/provenance/index.ts b/packages/chain-registry/src/mainnet/provenance/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/provenance/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/pundix/assets.ts b/packages/chain-registry/src/mainnet/pundix/assets.ts new file mode 100644 index 000000000..04890bdaf --- /dev/null +++ b/packages/chain-registry/src/mainnet/pundix/assets.ts @@ -0,0 +1,95 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "pundix", + "assets": [ + { + "description": "Pundi X Token", + "denom_units": [ + { + "denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "fxcore", + "base_denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + } + } + ], + "images": [ + { + "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" + } + ] + }, + { + "description": "PURSE Token", + "denom_units": [ + { + "denom": "bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "exponent": 0 + }, + { + "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" + }, + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "contract": "0x84238c00c8313920826D798e3cF6793Ef4F610ad" + }, + "provider": "Function X" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "binancesmartchain", + "base_denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/pundix/chain.ts b/packages/chain-registry/src/mainnet/pundix/chain.ts new file mode 100644 index 000000000..1a8149739 --- /dev/null +++ b/packages/chain-registry/src/mainnet/pundix/chain.ts @@ -0,0 +1,76 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.45.11" + }, + "apis": { + "rpc": [ + { + "address": "https://px-json.pundix.com", + "provider": "Pundi X" + } + ], + "rest": [ + { + "address": "https://px-rest.pundix.com", + "provider": "Pundi X" + } + ], + "grpc": [ + { + "address": "https://px-grpc.pundix.com", + "provider": "Pundi X" + } + ] + }, + "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" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png" + }, + "explorers": [ + { + "kind": "starscan", + "url": "https://starscan.io", + "tx_page": "https://starscan.io/pundix/tx/${txHash}", + "account_page": "https://starscan.io/pundix/address/${accountAddress}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/pundix/ibc.ts b/packages/chain-registry/src/mainnet/pundix/ibc.ts new file mode 100644 index 000000000..e85f19450 --- /dev/null +++ b/packages/chain-registry/src/mainnet/pundix/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3059", + "connection_id": "connection-2554" + }, + "chain_2": { + "chain_name": "pundix", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12618", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/pundix/index.ts b/packages/chain-registry/src/mainnet/pundix/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/pundix/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/quasar/assets.ts b/packages/chain-registry/src/mainnet/quasar/assets.ts new file mode 100644 index 000000000..232a99eb5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/quasar/assets.ts @@ -0,0 +1,187 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "quasar", + "assets": [ + { + "description": "The native token of Quasar", + "denom_units": [ + { + "denom": "uqsr", + "exponent": 0, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" + } + ] + }, + { + "description": "OSMO from Osmosis", + "denom_units": [ + { + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/uosmo" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + }, + { + "description": "ATOM from Osmosis", + "denom_units": [ + { + "denom": "ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/transfer/channel-0/uatom" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6, + "aliases": [] + } + ], + "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" + }, + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/transfer/channel-208/uusdc" + } + } + ], + "images": [ + { + "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" + } + ], + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/quasar/chain.ts b/packages/chain-registry/src/mainnet/quasar/chain.ts new file mode 100644 index 000000000..2db8cbdce --- /dev/null +++ b/packages/chain-registry/src/mainnet/quasar/chain.ts @@ -0,0 +1,229 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.polkachu.com", + "provider": "polkachu" + }, + { + "address": "https://rpc-quasar.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://quasar-rpc.enigma-validator.com", + "provider": "Enigma" + }, + { + "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.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc-quasar.validavia.me", + "provider": "Validavia" + }, + { + "address": "https://quasar-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://quasar-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://quasar-rpc.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://quasar-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://quasar-rpc.genznodes.dev", + "provider": "genznodes" + } + ], + "rest": [ + { + "address": "https://quasar-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://quasar-api.polkachu.com", + "provider": "polkachu" + }, + { + "address": "https://lcd-quasar.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api-quasar.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://quasar-lcd.enigma-validator.com", + "provider": "Enigma" + }, + { + "address": "https://quasar-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://quasar.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://lcd-quasar.validavia.me", + "provider": "Validavia" + }, + { + "address": "https://quasar-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://quasar-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://quasar-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://quasar-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://quasar-api.genznodes.dev", + "provider": "genznodes" + } + ], + "grpc": [ + { + "address": "https://quasar-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "quasar-grpc.polkachu.com:18290", + "provider": "polkachu" + }, + { + "address": "grpc-quasar.cosmos-spaces.cloud:12890", + "provider": "Cosmos Spaces" + }, + { + "address": "quasar-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "quasar.grpc.kjnodes.com:14890", + "provider": "kjnodes" + }, + { + "address": "quasar-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "quasar-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "quasar-grpc.stakeandrelax.net:18290", + "provider": "Stake&Relax 🦥" + }, + { + "address": "quasar-grpc.genznodes.dev:29090", + "provider": "genznodes" + } + ] + }, + "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": "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": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/quasar/ibc.ts b/packages/chain-registry/src/mainnet/quasar/ibc.ts new file mode 100644 index 000000000..dfbf0a399 --- /dev/null +++ b/packages/chain-registry/src/mainnet/quasar/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-688", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/quasar/index.ts b/packages/chain-registry/src/mainnet/quasar/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/quasar/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/quicksilver/assets.ts b/packages/chain-registry/src/mainnet/quicksilver/assets.ts new file mode 100644 index 000000000..aa217a680 --- /dev/null +++ b/packages/chain-registry/src/mainnet/quicksilver/assets.ts @@ -0,0 +1,231 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "quicksilver", + "assets": [ + { + "description": "QCK - native token of Quicksilver", + "denom_units": [ + { + "denom": "uqck", + "exponent": 0, + "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" + }, + "coingecko_id": "quicksilver", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" + } + ] + }, + { + "description": "Quicksilver Liquid Staked STARS", + "denom_units": [ + { + "denom": "uqstars", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qstars", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqstars", + "name": "Quicksilver Liquid Staked STARS", + "display": "qstars", + "symbol": "qSTARS", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "stargaze", + "base_denom": "ustars" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked ATOM", + "denom_units": [ + { + "denom": "uqatom", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qatom", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqatom", + "name": "Quicksilver Liquid Staked ATOM", + "display": "qatom", + "symbol": "qATOM", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked REGEN", + "denom_units": [ + { + "denom": "uqregen", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qregen", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqregen", + "name": "Quicksilver Liquid Staked Regen", + "display": "qregen", + "symbol": "qREGEN", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "regen", + "base_denom": "uregen" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked OSMO", + "denom_units": [ + { + "denom": "uqosmo", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qosmo", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqosmo", + "name": "Quicksilver Liquid Staked OSMO", + "display": "qosmo", + "symbol": "qOSMO", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked SOMM", + "denom_units": [ + { + "denom": "uqsomm", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qsomm", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqsomm", + "name": "Quicksilver Liquid Staked SOMM", + "display": "qsomm", + "symbol": "qSOMM", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "sommelier", + "base_denom": "usomm" + }, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/quicksilver/chain.ts b/packages/chain-registry/src/mainnet/quicksilver/chain.ts new file mode 100644 index 000000000..e20a3457d --- /dev/null +++ b/packages/chain-registry/src/mainnet/quicksilver/chain.ts @@ -0,0 +1,332 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.zone:443", + "provider": "Quicksilver" + }, + { + "address": "http://quicksilver.statesync.nodersteam.com:16657", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc-quicksilver-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "https://quicksilver-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-quicksilver.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://m-quicksilver.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "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-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://quicksilver.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc-quicksilver.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://rpc.quicksilver.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://quicksilver-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://quicksilver-rpc.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://quicksilver-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc-quicksilver.mms.team/", + "provider": "MMS" + }, + { + "address": "https://quicksilver-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://quicksilver-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://mainnet-quicksilver-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://quicksilver.tdrsys.com:2053", + "provider": "TdrSys" + } + ], + "rest": [ + { + "address": "https://api-quicksilver.takeshi.team:443", + "provider": "TAKESHI" + }, + { + "address": "https://api-quicksilver-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "http://quicksilver.api.nodersteam.com:16017", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://quicksilver-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-quicksilver.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://quicksilver-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://m-quicksilver.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://quick.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://quicksilver.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rest-quicksilver.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://api.quicksilver.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://quicksilver-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://quicksilver-api.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://quicksilver-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://api-quicksilver.mms.team", + "provider": "MMS" + }, + { + "address": "https://quicksilver-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://quicksilver-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://mainnet-quicksilver-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://quicksilver.tdrsys.com", + "provider": "TdrSys" + } + ], + "grpc": [ + { + "address": "grpc-quicksilver.takeshi.team:443", + "provider": "TAKESHI" + }, + { + "address": "grpc-quicksilver-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "quicksilver-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "quicksilver.grpc.nodersteam.com:9161", + "provider": "[NODERS]TEAM" + }, + { + "address": "grpc-quicksilver.cosmos-spaces.cloud:3300", + "provider": "Cosmos Spaces" + }, + { + "address": "quicksilver-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "quicksilver.grpc.kjnodes.com:11190", + "provider": "kjnodes" + }, + { + "address": "quick.grpc.m.stavr.tech:9113", + "provider": "🔥STAVR🔥" + }, + { + "address": "grpc-quicksilver.architectnodes.com:1443", + "provider": "Architect Nodes" + }, + { + "address": "archive-grpc-quicksilver.huginn.tech:9090", + "provider": "Huginn" + }, + { + "address": "https://grpc.quicksilver.indonode.net:28090", + "provider": "Indonode" + }, + { + "address": "services.staketab.com:9034", + "provider": "Staketab" + }, + { + "address": "https://quicksilver-grpc.theamsolutions.info:9797", + "provider": "AM Solutions" + }, + { + "address": "quicksilver-grpc.w3coins.io:11190", + "provider": "w3coins" + }, + { + "address": "grpc-quicksilver.mms.team:443", + "provider": "MMS" + }, + { + "address": "quicksilver-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "quicksilver-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "mainnet-quicksilver.konsortech.xyz:46090", + "provider": "KonsorTech" + }, + { + "address": "https://quicksilver.tdrsys.com:2083", + "provider": "TdrSys" + } + ] + }, + "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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/quicksilver/ibc.ts b/packages/chain-registry/src/mainnet/quicksilver/ibc.ts new file mode 100644 index 000000000..05d6fdb97 --- /dev/null +++ b/packages/chain-registry/src/mainnet/quicksilver/ibc.ts @@ -0,0 +1,287 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-467", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-215", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-522", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-15", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-73", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/quicksilver/ibc_chain1.ts b/packages/chain-registry/src/mainnet/quicksilver/ibc_chain1.ts new file mode 100644 index 000000000..8b562c6d0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/quicksilver/ibc_chain1.ts @@ -0,0 +1,112 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/quicksilver/index.ts b/packages/chain-registry/src/mainnet/quicksilver/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/quicksilver/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/qwoyn/assets.ts b/packages/chain-registry/src/mainnet/qwoyn/assets.ts new file mode 100644 index 000000000..52101c254 --- /dev/null +++ b/packages/chain-registry/src/mainnet/qwoyn/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "qwoyn", + "assets": [ + { + "description": "QWOYN is the native governance token for Qwoyn Network", + "denom_units": [ + { + "denom": "uqwoyn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/qwoyn/chain.ts b/packages/chain-registry/src/mainnet/qwoyn/chain.ts new file mode 100644 index 000000000..cac4f5702 --- /dev/null +++ b/packages/chain-registry/src/mainnet/qwoyn/chain.ts @@ -0,0 +1,146 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.theamsolutions.info:443", + "provider": "AM Solutions" + }, + { + "address": "https://qwoyn-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://qwoyn-rpc-archive.staketab.org:443", + "provider": "Staketab archive" + }, + { + "address": "https://qwoyn-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc-qwoyn.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "https://rpc.qwoyn.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "services.staketab.com:9430", + "provider": "Staketab" + }, + { + "address": "services.staketab.com:2000", + "provider": "Staketab archive" + }, + { + "address": "https://grpc-qwoyn.theamsolutions.info:443", + "provider": "AM Solutions" + }, + { + "address": "https://qwoyn-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc-qwoyn.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "https://grpc.qwoyn.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://rest-qwoyn.theamsolutions.info:443", + "provider": "AM Solutions" + }, + { + "address": "https://qwoyn-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://qwoyn-rest-archive.staketab.org", + "provider": "Staketab archive" + }, + { + "address": "https://qwoyn-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-qwoyn.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://lcd.qwoyn.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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/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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/qwoyn/ibc.ts b/packages/chain-registry/src/mainnet/qwoyn/ibc.ts new file mode 100644 index 000000000..5c2c1cd34 --- /dev/null +++ b/packages/chain-registry/src/mainnet/qwoyn/ibc.ts @@ -0,0 +1,68 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "astrovault" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-880", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/qwoyn/index.ts b/packages/chain-registry/src/mainnet/qwoyn/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/qwoyn/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/realio/assets.ts b/packages/chain-registry/src/mainnet/realio/assets.ts new file mode 100644 index 000000000..7cd122d35 --- /dev/null +++ b/packages/chain-registry/src/mainnet/realio/assets.ts @@ -0,0 +1,62 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "realio", + "assets": [ + { + "description": "The native currency of the Realio Network.", + "denom_units": [ + { + "denom": "ario", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rst.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/realio/chain.ts b/packages/chain-registry/src/mainnet/realio/chain.ts new file mode 100644 index 000000000..6ce9cc808 --- /dev/null +++ b/packages/chain-registry/src/mainnet/realio/chain.ts @@ -0,0 +1,212 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.bccnodes.com/", + "provider": "BccNodes" + }, + { + "address": "https://rpc-realio-network.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "http://realio.rpc.m.stavr.tech:21097", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc.realio.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://rpc.realio.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://rpc-realio.vinjan.xyz", + "provider": "vinjan" + }, + { + "address": "https://api-realio.sr20de.xyz", + "provider": "Sr20de" + }, + { + "address": "https://rpc.realio.safeblock.space", + "provider": "Safe Block" + } + ], + "rest": [ + { + "address": "https://realio-api.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://realio.lcd.bccnodes.com/", + "provider": "BccNodes" + }, + { + "address": "https://api-realio-network.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://realio.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api.realio.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://api.realio.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://api-realio.vinjan.xyz", + "provider": "vinjan" + }, + { + "address": "https://rpc-realio.sr20de.xyz", + "provider": "Sr20de" + }, + { + "address": "https://api.realio.safeblock.space", + "provider": "Safe Block" + } + ], + "grpc": [ + { + "address": "realio-grpc.genznodes.dev:30090", + "provider": "genznodes" + }, + { + "address": "realio.grpc.bccnodes.com:10990", + "provider": "BccNodes" + }, + { + "address": "http://realio.grpc.m.stavr.tech:9062", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://grpc-realio.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://grpc.realio.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://grpc-realio.sr20de.xyz", + "provider": "Sr20de" + }, + { + "address": "grpc.realio.safeblock.space:9090", + "provider": "Safe Block" + }, + { + "address": "realio.grpc.skynodejs.net", + "provider": "skynodejs" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://realio-rpc-evm.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://jsonrpc.realio.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://evm-realio.sr20de.xyz", + "provider": "Sr20de" + }, + { + "address": "https://evm.realio.safeblock.space", + "provider": "Safe Block" + } + ] + }, + "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": "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": "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}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/realio/ibc.ts b/packages/chain-registry/src/mainnet/realio/ibc.ts new file mode 100644 index 000000000..249ce76df --- /dev/null +++ b/packages/chain-registry/src/mainnet/realio/ibc.ts @@ -0,0 +1,97 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-645", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-155", + "connection_id": "connection-119" + }, + "chain_2": { + "chain_name": "realio", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-115", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1424", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/realio/index.ts b/packages/chain-registry/src/mainnet/realio/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/realio/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/rebus/assets.ts b/packages/chain-registry/src/mainnet/rebus/assets.ts new file mode 100644 index 000000000..937299173 --- /dev/null +++ b/packages/chain-registry/src/mainnet/rebus/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "rebus", + "assets": [ + { + "description": "REBUS, the native coin of the Rebus chain.", + "denom_units": [ + { + "denom": "arebus", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/rebus/chain.ts b/packages/chain-registry/src/mainnet/rebus/chain.ts new file mode 100644 index 000000000..ca0fb5a57 --- /dev/null +++ b/packages/chain-registry/src/mainnet/rebus/chain.ts @@ -0,0 +1,229 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "arebus" + } + ] + }, + "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": [ + { + "address": "https://api.rebuschain.com:26657/", + "provider": "Rebuschain" + }, + { + "address": "https://rebus.rpc.bccnodes.com:443", + "provider": "BccNodes" + }, + { + "address": "https://rebus.rpc.manticore.team:443/", + "provider": "MantiCore" + }, + { + "address": "http://rebus.statesync.nodersteam.com:18657", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc.rebus.nodestake.top/", + "provider": "NodeStake" + }, + { + "address": "http://rebus.rpc.m.stavr.tech:40107", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-1.rebus.nodes.guru", + "provider": "Nodes.Guru" + }, + { + "address": "https://api.mainnet.rebus.money:26657", + "provider": "Rebuschain" + }, + { + "address": "https://rebus-rpc.brocha.in", + "provider": "Brochain" + }, + { + "address": "https://rebus-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://rebus-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rebus.rpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://rebus-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://api.rebuschain.com:1317/", + "provider": "Rebuschain" + }, + { + "address": "http://rebus.api.nodersteam.com:18017", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rebus.api.manticore.team:443/", + "provider": "MantiCore" + }, + { + "address": "https://api.rebus.nodestake.top/", + "provider": "NodeStake" + }, + { + "address": "https://rebus.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api-1.rebus.nodes.guru", + "provider": "Nodes.Guru" + }, + { + "address": "https://api.mainnet.rebus.money:1317", + "provider": "Rebuschain" + }, + { + "address": "https://rebus-rest.brocha.in", + "provider": "Brochain" + }, + { + "address": "https://rebus-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://rebus-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rebus.api.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://rebus-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "rebus.grpc.manticore.team:443", + "provider": "MantiCore" + }, + { + "address": "rebus.grpc.bccnodes.com:14090", + "provider": "BccNodes" + }, + { + "address": "grpc.rebus.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "rebus.grpc.nodersteam.com:9181", + "provider": "[NODERS]TEAM" + }, + { + "address": "http://rebus.grpc.m.stavr.tech:3211", + "provider": "🔥STAVR🔥" + }, + { + "address": "rebus-grpc.brocha.in:443", + "provider": "Brochain" + }, + { + "address": "rebus-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rebus.grpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "rebus-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "explorers": [ + { + "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": "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": "🔥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": "atomscan", + "url": "https://atomscan.com/rebus", + "tx_page": "https://atomscan.com/rebus/transactions/${txHash}", + "account_page": "https://atomscan.com/rebus/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/rebus/ibc.ts b/packages/chain-registry/src/mainnet/rebus/ibc.ts new file mode 100644 index 000000000..f342befc3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/rebus/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2173", + "connection_id": "connection-1692" + }, + "chain_2": { + "chain_name": "rebus", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-355", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/rebus/index.ts b/packages/chain-registry/src/mainnet/rebus/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/rebus/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/regen/assets.ts b/packages/chain-registry/src/mainnet/regen/assets.ts new file mode 100644 index 000000000..f3c3bebf4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/regen/assets.ts @@ -0,0 +1,64 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "regen", + "assets": [ + { + "description": "REGEN coin is the token for the Regen Network Platform", + "denom_units": [ + { + "denom": "uregen", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/regen/chain.ts b/packages/chain-registry/src/mainnet/regen/chain.ts new file mode 100644 index 000000000..99b68c6f6 --- /dev/null +++ b/packages/chain-registry/src/mainnet/regen/chain.ts @@ -0,0 +1,174 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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": "http://public-rpc.regen.vitwit.com:26657", + "provider": "vitwit" + }, + { + "address": "https://regen.stakesystems.io:2053", + "provider": "stakesystems" + }, + { + "address": "http://rpc.regen.forbole.com:80", + "provider": "forbole" + }, + { + "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-rpc.easy2stake.com", + "provider": "Easy 2 Stake" + }, + { + "address": "https://regen-rpc.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://regen-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://regen-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "http://public-rpc.regen.vitwit.com:1317", + "provider": "vitwit" + }, + { + "address": "https://regen.stakesystems.io", + "provider": "stakesystems" + }, + { + "address": "https://api-regen-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://regen-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rest-regen.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://regen-lcd.easy2stake.com", + "provider": "Easy 2 Stake" + }, + { + "address": "https://regen-api.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://regen-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://regen-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc-regen-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "regen-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "regen-grpc.w3coins.io:22790", + "provider": "w3coins" + }, + { + "address": "regen-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/regen/ibc.ts b/packages/chain-registry/src/mainnet/regen/ibc.ts new file mode 100644 index 000000000..086394947 --- /dev/null +++ b/packages/chain-registry/src/mainnet/regen/ibc.ts @@ -0,0 +1,315 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-386", + "connection_id": "connection-340" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-27", + "connection_id": "connection-24" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-185", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-28", + "connection_id": "connection-26" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-25", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-68", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-100", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "persistence", + "client_id": "07-tendermint-33", + "connection_id": "connection-27" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-30", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-31", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-45", + "connection_id": "connection-31" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/regen/ibc_chain1.ts b/packages/chain-registry/src/mainnet/regen/ibc_chain1.ts new file mode 100644 index 000000000..9fcb50677 --- /dev/null +++ b/packages/chain-registry/src/mainnet/regen/ibc_chain1.ts @@ -0,0 +1,88 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-31", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-45", + "connection_id": "connection-31" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/regen/index.ts b/packages/chain-registry/src/mainnet/regen/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/regen/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/rizon/assets.ts b/packages/chain-registry/src/mainnet/rizon/assets.ts new file mode 100644 index 000000000..e1b337faf --- /dev/null +++ b/packages/chain-registry/src/mainnet/rizon/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "rizon", + "assets": [ + { + "description": "Native token of Rizon Chain", + "denom_units": [ + { + "denom": "uatolo", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/rizon/chain.ts b/packages/chain-registry/src/mainnet/rizon/chain.ts new file mode 100644 index 000000000..cf16ec42a --- /dev/null +++ b/packages/chain-registry/src/mainnet/rizon/chain.ts @@ -0,0 +1,125 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uatolo" + } + ] + }, + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://rpcapi.rizon.world/", + "provider": "HDAC Technology AG" + }, + { + "address": "https://rpc.rizon.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://rizon-rpc.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://rizon-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://restapi.rizon.world/", + "provider": "HDAC Technology AG" + }, + { + "address": "https://api.rizon.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://rizon-api.ibs.team/", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://rizon-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc-rizon.mms.team:443", + "provider": "MMS" + }, + { + "address": "rizon-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/rizon/ibc.ts b/packages/chain-registry/src/mainnet/rizon/ibc.ts new file mode 100644 index 000000000..97ae44ee2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/rizon/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1898", + "connection_id": "connection-1471" + }, + "chain_2": { + "chain_name": "rizon", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-221", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/rizon/index.ts b/packages/chain-registry/src/mainnet/rizon/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/rizon/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/secretnetwork/assets.ts b/packages/chain-registry/src/mainnet/secretnetwork/assets.ts new file mode 100644 index 000000000..c830e6c39 --- /dev/null +++ b/packages/chain-registry/src/mainnet/secretnetwork/assets.ts @@ -0,0 +1,299 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "secretnetwork", + "assets": [ + { + "description": "The native token of Secret Network", + "denom_units": [ + { + "denom": "uscrt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for SIENNA on Secret Network", + "denom_units": [ + { + "denom": "cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for Shade on Secret Network", + "denom_units": [ + { + "denom": "cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for Silk on Secret Network", + "denom_units": [ + { + "denom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for SCRT Staking Derivatives on Secret Network", + "denom_units": [ + { + "denom": "cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for Button on Secret Network", + "denom_units": [ + { + "denom": "cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for Alter on Secret Network", + "denom_units": [ + { + "denom": "cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token cw20 for Amber on Secret Network", + "denom_units": [ + { + "denom": "cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg" + } + ] + }, + { + "description": "The native token cw20 for Shill on Secret Network", + "denom_units": [ + { + "denom": "cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/secretnetwork/chain.ts b/packages/chain-registry/src/mainnet/secretnetwork/chain.ts new file mode 100644 index 000000000..6f655b854 --- /dev/null +++ b/packages/chain-registry/src/mainnet/secretnetwork/chain.ts @@ -0,0 +1,147 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uscrt" + } + ] + }, + "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" + }, + "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" + } + ], + "rpc": [ + { + "address": "https://rpc.secret.express", + "provider": "Secret Community API - Secret Express" + }, + { + "address": "https://scrt.public-rpc.com", + "provider": "ANKR" + }, + { + "address": "https://secretnetwork-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://1rpc.io/scrt-rpc", + "provider": "1RPC - Automata Network" + }, + { + "address": "https://secretnetwork-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + } + ], + "rest": [ + { + "address": "https://lcd.secret.express", + "provider": "Secret Community API - Secret Express" + }, + { + "address": "https://secretnetwork-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "http://secretnetwork-mainnet-lcd.autostake.com:1317", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://1rpc.io/scrt-lcd", + "provider": "1RPC - Automata Network" + }, + { + "address": "https://secretnetwork-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + } + ], + "grpc": [ + { + "address": "secretnetwork-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "secretnetwork-mainnet-grpc.autostake.com:9090", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://grpc.secret.express", + "provider": "Secret Community API - Secret Express" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts b/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts new file mode 100644 index 000000000..ebfd91579 --- /dev/null +++ b/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts @@ -0,0 +1,1080 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-84", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-91", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "comdex", + "client_id": "07-tendermint-142", + "connection_id": "connection-74" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-125", + "connection_id": "connection-95" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-80", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-101", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-235", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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-140", + "connection_id": "connection-139" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-40", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-79", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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-97", + "connection_id": "connection-83" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-22", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "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-108", + "connection_id": "connection-68" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-23", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "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_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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-19", + "connection_id": "connection-139" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" + }, + "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" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-170", + "connection_id": "connection-127" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-88", + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-476", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-44", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis", + "properties": "privacy" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-171", + "connection_id": "connection-98" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-177", + "connection_id": "connection-110" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-37", + "connection_id": "connection-25" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-99", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-28", + "connection_id": "connection-29" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-4", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/secretnetwork/ibc_chain1.ts b/packages/chain-registry/src/mainnet/secretnetwork/ibc_chain1.ts new file mode 100644 index 000000000..d92e88004 --- /dev/null +++ b/packages/chain-registry/src/mainnet/secretnetwork/ibc_chain1.ts @@ -0,0 +1,228 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-171", + "connection_id": "connection-98" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-177", + "connection_id": "connection-110" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-37", + "connection_id": "connection-25" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-99", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-28", + "connection_id": "connection-29" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-4", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/secretnetwork/index.ts b/packages/chain-registry/src/mainnet/secretnetwork/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/secretnetwork/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/sei/assets.ts b/packages/chain-registry/src/mainnet/sei/assets.ts new file mode 100644 index 000000000..34fe3a1a0 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sei/assets.ts @@ -0,0 +1,138 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "sei", + "assets": [ + { + "description": "The native staking token of Sei.", + "denom_units": [ + { + "denom": "usei", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png" + } + ] + }, + { + "description": "ERIS liquid staked SEI", + "denom_units": [ + { + "denom": "factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg" + } + ] + }, + { + "description": "Popeye the Seilor", + "denom_units": [ + { + "denom": "factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/popeye.png" + } + ] + }, + { + "description": "A wise dog and a marshal arts master", + "denom_units": [ + { + "denom": "factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SenseiDog.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sei/chain.ts b/packages/chain-registry/src/mainnet/sei/chain.ts new file mode 100644 index 000000000..5f67a05de --- /dev/null +++ b/packages/chain-registry/src/mainnet/sei/chain.ts @@ -0,0 +1,148 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.polkachu.com/", + "provider": "polkachu.com" + }, + { + "address": "https://sei-rpc.brocha.in/", + "provider": "Brochain" + }, + { + "address": "https://rpc-sei.stingray.plus/", + "provider": "StingRay" + }, + { + "address": "https://rpc-sei.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://sei.rpc.kjnodes.com", + "provider": "kjnodes" + } + ], + "rest": [ + { + "address": "https://sei-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://sei-api.polkachu.com/", + "provider": "polkachu.com" + }, + { + "address": "https://sei-rest.brocha.in/", + "provider": "Brochain" + }, + { + "address": "https://api-sei.stingray.plus/", + "provider": "StingRay" + }, + { + "address": "https://lcd-sei.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://sei.api.kjnodes.com", + "provider": "kjnodes" + } + ], + "grpc": [ + { + "address": "https://sei-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://sei-grpc.polkachu.com:11990/", + "provider": "polkachu.com" + }, + { + "address": "sei-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://grpc-sei.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "sei.grpc.kjnodes.com:443", + "provider": "kjnodes" + } + ] + }, + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sei/ibc.ts b/packages/chain-registry/src/mainnet/sei/ibc.ts new file mode 100644 index 000000000..a659c5b5e --- /dev/null +++ b/packages/chain-registry/src/mainnet/sei/ibc.ts @@ -0,0 +1,364 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-103", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-41", + "connection_id": "connection-28" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-47", + "connection_id": "connection-79" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-584", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-132", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-22", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-27", + "connection_id": "connection-16" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-45", + "connection_id": "connection-77" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-45", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-43", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-44", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "chain_2": { + "channel_id": "channel-59", + "port_id": "wasm.sei1vxlzhn6qvf95syha2tgr0ct23sk5359s2vqzylgthuyy7kd7ql5qcxa4r0" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-782", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "planq", + "client_id": "07-tendermint-545", + "connection_id": "connection-477" + }, + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-21", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-59", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-149", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sei/ibc_chain1.ts b/packages/chain-registry/src/mainnet/sei/ibc_chain1.ts new file mode 100644 index 000000000..c5082dd9b --- /dev/null +++ b/packages/chain-registry/src/mainnet/sei/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "sei", + "client_id": "07-tendermint-18", + "connection_id": "connection-11" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-130", + "connection_id": "connection-119" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-149", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sei/index.ts b/packages/chain-registry/src/mainnet/sei/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sei/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/sentinel/assets.ts b/packages/chain-registry/src/mainnet/sentinel/assets.ts new file mode 100644 index 000000000..59cc210c4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sentinel/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "sentinel", + "assets": [ + { + "description": "DVPN is the native token of the Sentinel Hub.", + "denom_units": [ + { + "denom": "udvpn", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sentinel/chain.ts b/packages/chain-registry/src/mainnet/sentinel/chain.ts new file mode 100644 index 000000000..89f174fdb --- /dev/null +++ b/packages/chain-registry/src/mainnet/sentinel/chain.ts @@ -0,0 +1,172 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "udvpn" + } + ] + }, + "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" + }, + "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.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://rpc.sentinel.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://rpc.sentinel.quokkastake.io", + "provider": "🐹 Quokka Stake" + }, + { + "address": "https://rpc.dvpn.roomit.xyz", + "provider": "RoomIT" + }, + { + "address": "https://sentinel-rpc.badgerbite.io/", + "provider": "BadgerBite" + }, + { + "address": "https://sentinel-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://sentinel-rpc.validatornode.com/", + "provider": "ValidatorNode" + }, + { + "address": "https://rpc.trinityvalidator.com", + "provider": "Trinity Validator" + }, + { + "address": "https://rpc.sentinelgrowthdao.com", + "provider": "Sentinel Growth DAO" + } + ], + "rest": [ + { + "address": "https://api-sentinel-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://lcd-sentinel.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api.sentinel.quokkastake.io", + "provider": "🐹 Quokka Stake" + }, + { + "address": "https://api.dvpn.roomit.xyz", + "provider": "RoomIT" + }, + { + "address": "https://sentinel-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://sentinel-api.validatornode.com", + "provider": "ValidatorNode" + }, + { + "address": "https://api.trinityvalidator.com", + "provider": "Trinity Validator" + }, + { + "address": "https://api.sentinelgrowthdao.com", + "provider": "Sentinel Growth DAO" + } + ], + "grpc": [ + { + "address": "grpc-sentinel-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "sentinel.grpcui.chaintools.host:443", + "provider": "ChainTools" + }, + { + "address": "sentinel-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc.dvpn.roomit.xyz:8443", + "provider": "RoomIT" + }, + { + "address": "sentinel-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "ValidatorNode", + "url": "https://explorer.validatornode.com/sentinel", + "tx_page": "https://explorer.validatornode.com/sentinel/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sentinel/ibc.ts b/packages/chain-registry/src/mainnet/sentinel/ibc.ts new file mode 100644 index 000000000..6f07998d8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sentinel/ibc.ts @@ -0,0 +1,323 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-186", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-43", + "connection_id": "connection-28" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-54", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-60", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "persistence", + "client_id": "07-tendermint-34", + "connection_id": "connection-28" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-61", + "connection_id": "connection-36" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "regen", + "client_id": "07-tendermint-31", + "connection_id": "connection-29" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-56", + "connection_id": "connection-32" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-96", + "connection_id": "connection-75" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "sentinel", + "client_id": "07-tendermint-84", + "connection_id": "connection-58" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-9", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-46", + "connection_id": "connection-32" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sentinel/ibc_chain1.ts b/packages/chain-registry/src/mainnet/sentinel/ibc_chain1.ts new file mode 100644 index 000000000..7d32024e4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sentinel/ibc_chain1.ts @@ -0,0 +1,60 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-46", + "connection_id": "connection-32" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sentinel/index.ts b/packages/chain-registry/src/mainnet/sentinel/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sentinel/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/sge/assets.ts b/packages/chain-registry/src/mainnet/sge/assets.ts new file mode 100644 index 000000000..52dc0a017 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sge/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "sge", + "assets": [ + { + "description": "The native token of SGE Network", + "denom_units": [ + { + "denom": "usge", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sge/chain.ts b/packages/chain-registry/src/mainnet/sge/chain.ts new file mode 100644 index 000000000..59cf80547 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sge/chain.ts @@ -0,0 +1,247 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://rpc.sge.nodestake.top/", + "provider": "Nodestake" + }, + { + "address": "https://rpc.sge.roomit.xyz/", + "provider": "RoomIT" + }, + { + "address": "https://sge.rpc.m.stavr.tech:443", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-sge.nodeist.net/", + "provider": "Nodeist" + }, + { + "address": "https://sge-rpc.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://sge-rpc.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://rpc.sge.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://sge-rpc.sr20de.xyz", + "provider": "Sr20de" + }, + { + "address": "https://rpc.sge.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://mainnet-sge-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://sge-rpc.genznodes.dev", + "provider": "genznodes" + } + ], + "rest": [ + { + "address": "https://sge-api.lavenderfive.com/", + "provider": "Lavenderfive" + }, + { + "address": "https://sge-api.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://api.sge.nodestake.top/", + "provider": "Nostake" + }, + { + "address": "https://api-sge.nodeist.net/", + "provider": "Nodeist" + }, + { + "address": "https://sge.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://sge-api.ramuchi.tech/", + "provider": "ramuchi.tech" + }, + { + "address": "https://sge-rest.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://rest.sge.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://sge-api.sr20de.xyz", + "provider": "Sr20de" + }, + { + "address": "https://api.sge.safeblock.space", + "provider": "Safe Block" + }, + { + "address": "https://mainnet-sge-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://sge-api.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://api.sge.roomit.xyz/", + "provider": "RoomIT" + } + ], + "grpc": [ + { + "address": "sge-grpc.lavenderfive.com:443", + "provider": "Lavenderfive" + }, + { + "address": "https://grpc.sge.nodestake.top/", + "provider": "Nodestake" + }, + { + "address": "https://grpc-sge.nodeist.net/", + "provider": "Nodeist" + }, + { + "address": "https://sge-grpc.ramuchi.tech:443", + "provider": "ramuchi.tech" + }, + { + "address": "http://sge.grpc.m.stavr.tech:543", + "provider": "🔥STAVR🔥" + }, + { + "address": "sge-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + }, + { + "address": "https://sge-grpc.sr20de.xyz", + "provider": "Sr20de" + }, + { + "address": "mainnet-sge.konsortech.xyz:22090", + "provider": "KonsorTech" + }, + { + "address": "sge-grpc.genznodes.dev:5090", + "provider": "genznodes" + }, + { + "address": "grpc.sge.roomit.xyz:8443", + "provider": "RoomIT" + } + ] + }, + "explorers": [ + { + "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": "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sge/ibc.ts b/packages/chain-registry/src/mainnet/sge/ibc.ts new file mode 100644 index 000000000..4ec7c4572 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sge/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5485", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sge/index.ts b/packages/chain-registry/src/mainnet/sge/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sge/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/shareledger/assets.ts b/packages/chain-registry/src/mainnet/shareledger/assets.ts new file mode 100644 index 000000000..d7aafb4e2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/shareledger/assets.ts @@ -0,0 +1,39 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "shareledger", + "assets": [ + { + "description": "The native token of Shareledger", + "denom_units": [ + { + "denom": "nshr", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/shareledger/chain.ts b/packages/chain-registry/src/mainnet/shareledger/chain.ts new file mode 100644 index 000000000..d672d6bf2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/shareledger/chain.ts @@ -0,0 +1,82 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.27" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.explorer.shareri.ng", + "provider": "ShareRing" + } + ], + "rest": [ + { + "address": "https://lcd.explorer.shareri.ng/", + "provider": "ShareRing" + } + ], + "grpc": [ + { + "address": "rpc.explorer.shareri.ng:443", + "provider": "ShareRing" + } + ] + }, + "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}" + } + ], + "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/shareledger/ibc.ts b/packages/chain-registry/src/mainnet/shareledger/ibc.ts new file mode 100644 index 000000000..6c094f77a --- /dev/null +++ b/packages/chain-registry/src/mainnet/shareledger/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2680", + "connection_id": "connection-2182" + }, + "chain_2": { + "chain_name": "shareledger", + "client_id": "07-tendermint-1", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-647", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/shareledger/index.ts b/packages/chain-registry/src/mainnet/shareledger/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/shareledger/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/shentu/assets.ts b/packages/chain-registry/src/mainnet/shentu/assets.ts new file mode 100644 index 000000000..55350719d --- /dev/null +++ b/packages/chain-registry/src/mainnet/shentu/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "shentu", + "assets": [ + { + "description": "The native token of Shentu", + "denom_units": [ + { + "denom": "uctk", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/shentu/chain.ts b/packages/chain-registry/src/mainnet/shentu/chain.ts new file mode 100644 index 000000000..6b5177c4b --- /dev/null +++ b/packages/chain-registry/src/mainnet/shentu/chain.ts @@ -0,0 +1,171 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://shentu-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://shentu-rpc.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://rpc-shentu-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://shentu-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://shentu-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://shentu-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + } + ], + "rest": [ + { + "address": "https://rest.noopsbycertik.com/", + "provider": "Shentu" + }, + { + "address": "https://shentu-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://shentu-api.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://api-shentu-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://shentu-api.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://shentu-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://shentu-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + } + ], + "grpc": [ + { + "address": "shentu-grpc.polkachu.com:14090", + "provider": "Polkachu" + }, + { + "address": "https://shentu-grpc.ramuchi.tech:12090", + "provider": "ramuchi.tech" + }, + { + "address": "grpc-shentu-01.stakeflow.io:2402", + "provider": "Stakeflow" + }, + { + "address": "shentu-grpc.tienthuattoan.ventures:9490", + "provider": "TienThuatToan" + }, + { + "address": "shentu-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/shentu/ibc.ts b/packages/chain-registry/src/mainnet/shentu/ibc.ts new file mode 100644 index 000000000..600c17718 --- /dev/null +++ b/packages/chain-registry/src/mainnet/shentu/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1741", + "connection_id": "connection-1342" + }, + "chain_2": { + "chain_name": "shentu", + "client_id": "07-tendermint-9", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/shentu/index.ts b/packages/chain-registry/src/mainnet/shentu/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/shentu/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/sifchain/assets.ts b/packages/chain-registry/src/mainnet/sifchain/assets.ts new file mode 100644 index 000000000..4f313319b --- /dev/null +++ b/packages/chain-registry/src/mainnet/sifchain/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "sifchain", + "assets": [ + { + "description": "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "denom_units": [ + { + "denom": "rowan", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sifchain/chain.ts b/packages/chain-registry/src/mainnet/sifchain/chain.ts new file mode 100644 index 000000000..de7722e11 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sifchain/chain.ts @@ -0,0 +1,123 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://rpc-sifchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://sifchain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://sifchain-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://api-sifchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://sifchain-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://sifchain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://sifchain-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "grpc-sifchain-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "sifchain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "sifchain-grpc.polkachu.com:13290", + "provider": "Polkachu" + }, + { + "address": "sifchain-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "explorers": [ + { + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/sifchain", + "tx_page": "https://app.ezstaking.io/sifchain/txs/${txHash}", + "account_page": "https://app.ezstaking.io/sifchain/account/${accountAddress}" + }, + { + "kind": "ping.pub", + "url": "https://ping.pub/sifchain", + "tx_page": "https://ping.pub/sifchain/tx/${txHash}" + }, + { + "kind": "explorers.guru", + "url": "https://sifchain.explorers.guru", + "tx_page": "https://sifchain.explorers.guru/transaction/${txHash}" + }, + { + "kind": "atomscan", + "url": "https://atomscan.com/sifchain", + "tx_page": "https://atomscan.com/sifchain/transactions/${txHash}", + "account_page": "https://atomscan.com/sifchain/accounts/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sifchain/ibc.ts b/packages/chain-registry/src/mainnet/sifchain/ibc.ts new file mode 100644 index 000000000..33230e5a7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sifchain/ibc.ts @@ -0,0 +1,320 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-192", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-20", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-19", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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-38", + "connection_id": "connection-32" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-18", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-31", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-28", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-65", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "sentinel", + "client_id": "07-tendermint-84", + "connection_id": "connection-58" + }, + "chain_2": { + "chain_name": "sifchain", + "client_id": "07-tendermint-9", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sifchain/index.ts b/packages/chain-registry/src/mainnet/sifchain/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sifchain/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/six/assets.ts b/packages/chain-registry/src/mainnet/six/assets.ts new file mode 100644 index 000000000..f8290197e --- /dev/null +++ b/packages/chain-registry/src/mainnet/six/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "six", + "assets": [ + { + "description": "The native staking token of the SIX Protocol.", + "denom_units": [ + { + "denom": "usix", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/six/images/six.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/six/chain.ts b/packages/chain-registry/src/mainnet/six/chain.ts new file mode 100644 index 000000000..69a7c3cb7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/six/chain.ts @@ -0,0 +1,65 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.45" + }, + "apis": { + "rpc": [ + { + "address": "https://sixnet-rpc.sixprotocol.net:443", + "provider": "" + } + ], + "rest": [ + { + "address": "https://sixnet-api.sixprotocol.net:443", + "provider": "" + } + ] + }, + "explorers": [ + { + "kind": "sixscan", + "url": "https://sixscan.io/sixnet", + "tx_page": "https://sixscan.io/sixnet/tx/${txHash}" + } + ], + "keywords": [ + "sixprotocol", + "sixnetwork", + "sixnet", + "six" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/six/index.ts b/packages/chain-registry/src/mainnet/six/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/six/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/sommelier/assets.ts b/packages/chain-registry/src/mainnet/sommelier/assets.ts new file mode 100644 index 000000000..7e4e6b391 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sommelier/assets.ts @@ -0,0 +1,46 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "sommelier", + "assets": [ + { + "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", + "denom_units": [ + { + "denom": "usomm", + "exponent": 0, + "aliases": [ + "microsomm" + ] + }, + { + "denom": "msomm", + "exponent": 3, + "aliases": [ + "millisomm" + ] + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sommelier/chain.ts b/packages/chain-registry/src/mainnet/sommelier/chain.ts new file mode 100644 index 000000000..f9c03cd98 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sommelier/chain.ts @@ -0,0 +1,160 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://rpc-sommelier.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://sommelier-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://sommelier-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc-sommelier.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://somm-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://sommelier-rpc.w3coins.io", + "provider": "w3coins" + } + ], + "rest": [ + { + "address": "https://api-sommelier.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://sommelier-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://sommelier-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api-sommelier.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://sommelier-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://somm-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://sommelier-api.w3coins.io", + "provider": "w3coins" + } + ], + "grpc": [ + { + "address": "sommelier-grpc.polkachu.com:14190", + "provider": "Polkachu" + }, + { + "address": "sommelier-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "sommelier-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-sommelier.cosmos-spaces.cloud:2310", + "provider": "Cosmos Spaces" + }, + { + "address": "https://grpc.sommelier.nodexcapital.com", + "provider": "⚡NodeX Validator⚡" + }, + { + "address": "sommelier-grpc.w3coins.io:14190", + "provider": "w3coins" + } + ] + }, + "explorers": [ + { + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sommelier/ibc.ts b/packages/chain-registry/src/mainnet/sommelier/ibc.ts new file mode 100644 index 000000000..05e860f04 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sommelier/ibc.ts @@ -0,0 +1,157 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-72", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics-20", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-93", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-107", + "connection_id": "connection-77" + }, + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-12", + "connection_id": "connection-8" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-165", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "sommelier", + "client_id": "07-tendermint-60", + "connection_id": "connection-75" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-131", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-150", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sommelier/ibc_chain1.ts b/packages/chain-registry/src/mainnet/sommelier/ibc_chain1.ts new file mode 100644 index 000000000..98695fc79 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sommelier/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "sommelier", + "client_id": "07-tendermint-60", + "connection_id": "connection-75" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-131", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-150", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/sommelier/index.ts b/packages/chain-registry/src/mainnet/sommelier/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/sommelier/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/source/assets.ts b/packages/chain-registry/src/mainnet/source/assets.ts new file mode 100644 index 000000000..09d26520f --- /dev/null +++ b/packages/chain-registry/src/mainnet/source/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "source", + "assets": [ + { + "description": "The native token of SOURCE Chain", + "denom_units": [ + { + "denom": "usource", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/source/chain.ts b/packages/chain-registry/src/mainnet/source/chain.ts new file mode 100644 index 000000000..1cc14669e --- /dev/null +++ b/packages/chain-registry/src/mainnet/source/chain.ts @@ -0,0 +1,205 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "usource" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.source.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://source.rpc.moonbridge.team/", + "provider": "MoonBridge" + }, + { + "address": "https://source.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-source.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://source-mainnet-rpc.itrocket.net:443", + "provider": "ITRocket" + }, + { + "address": "https://rpc-source.sr20de.xyz:443", + "provider": "Sr20de" + }, + { + "address": "https://source-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://rpc.source.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://rpc.source.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://source.rpc.skynodejs.net/", + "provider": "skynodejs" + } + ], + "rest": [ + { + "address": "https://api.source.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://api-source.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://source.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://source-mainnet-api.itrocket.net:443", + "provider": "ITRocket" + }, + { + "address": "https://source.api.moonbridge.team/", + "provider": "MoonBridge" + }, + { + "address": "https://api-source.sr20de.xyz", + "provider": "Sr20de" + }, + { + "address": "https://source-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://rest.source.tcnetwork.io", + "provider": "TC Network" + }, + { + "address": "https://api.source.indonode.net", + "provider": "Indonode" + } + ], + "grpc": [ + { + "address": "source-mainnet-grpc.itrocket.net:32090", + "provider": "ITRocket" + }, + { + "address": "http://source.grpc.m.stavr.tech:9590", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://grpc-source.nodeist.net:443", + "provider": "Nodeist" + }, + { + "address": "https://grpc.source.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://grpc-source.sr20de.xyz:443", + "provider": "Sr20de" + }, + { + "address": "source-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "https://source.grpc.skynodejs.net", + "provider": "skynodejs" + } + ] + }, + "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": "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": "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": "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}" + } + ], + "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" + } + ], + "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" + } +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/source/ibc.ts b/packages/chain-registry/src/mainnet/source/ibc.ts new file mode 100644 index 000000000..4381906ac --- /dev/null +++ b/packages/chain-registry/src/mainnet/source/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8945", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/source/index.ts b/packages/chain-registry/src/mainnet/source/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/source/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/stafihub/assets.ts b/packages/chain-registry/src/mainnet/stafihub/assets.ts new file mode 100644 index 000000000..1781d46d3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stafihub/assets.ts @@ -0,0 +1,178 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "stafihub", + "assets": [ + { + "description": "The native staking and governance token of the StaFi Hub.", + "denom_units": [ + { + "denom": "ufis", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "stafi", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg" + } + ] + }, + { + "description": "A liquid staking representation of staked ATOMs", + "denom_units": [ + { + "denom": "uratom", + "exponent": 0 + }, + { + "denom": "ratom", + "exponent": 6 + } + ], + "base": "uratom", + "name": "rATOM", + "display": "ratom", + "symbol": "rATOM", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "provider": "StaFiHub" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg" + }, + "coingecko_id": "", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg" + } + ] + }, + { + "description": "A liquid staking representation of staked IRISs", + "denom_units": [ + { + "denom": "uriris", + "exponent": 0 + }, + { + "denom": "riris", + "exponent": 6 + } + ], + "base": "uriris", + "name": "rIRIS", + "display": "riris", + "symbol": "rIRIS", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "irisnet", + "base_denom": "uiris" + }, + "provider": "StaFiHub" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg" + }, + "coingecko_id": "", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg" + } + ] + }, + { + "description": "A liquid staking representation of staked HUAHUAs", + "denom_units": [ + { + "denom": "urhuahua", + "exponent": 0 + }, + { + "denom": "rhuahua", + "exponent": 6 + } + ], + "base": "urhuahua", + "name": "rHUAHUA", + "display": "rhuahua", + "symbol": "rHUAHUA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "chihuahua", + "base_denom": "uhuahua" + }, + "provider": "StaFiHub" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg" + }, + "coingecko_id": "", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg" + } + ] + }, + { + "description": "A liquid staking representation of staked SWTHs", + "denom_units": [ + { + "denom": "urswth", + "exponent": 0 + }, + { + "denom": "rswth", + "exponent": 8 + } + ], + "base": "urswth", + "name": "rSWTH", + "display": "rswth", + "symbol": "rSWTH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "carbon", + "base_denom": "uswth" + }, + "provider": "StaFiHub" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg" + }, + "coingecko_id": "", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stafihub/chain.ts b/packages/chain-registry/src/mainnet/stafihub/chain.ts new file mode 100644 index 000000000..6e41255b5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stafihub/chain.ts @@ -0,0 +1,120 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ufis" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "codebase": { + "cosmos_sdk_version": "0.46" + }, + "apis": { + "rpc": [ + { + "address": "https://public-rpc1.stafihub.io:443", + "provider": "StaFiHub" + }, + { + "address": "https://public-rpc2.stafihub.io:443", + "provider": "StaFiHub" + }, + { + "address": "https://rpc.stafihub.nodestake.top:443", + "provider": "NodeStake" + } + ], + "rest": [ + { + "address": "https://public-rest-rpc1.stafihub.io", + "provider": "StaFiHub" + }, + { + "address": "https://public-rest-rpc2.stafihub.io", + "provider": "StaFiHub" + }, + { + "address": "https://api.stafihub.nodestake.top", + "provider": "NodeStake" + } + ], + "grpc": [ + { + "address": "public-grpc-rpc1.stafihub.io:443", + "provider": "StaFiHub" + }, + { + "address": "public-grpc-rpc2.stafihub.io:443", + "provider": "StaFiHub" + }, + { + "address": "grpc.stafihub.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "stafihub.nodejumper.io:9090", + "provider": "NODEJUMPER" + } + ] + }, + "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": "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}" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png" + }, + "keywords": [ + "liquid staking" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stafihub/ibc.ts b/packages/chain-registry/src/mainnet/stafihub/ibc.ts new file mode 100644 index 000000000..7b93cfb3e --- /dev/null +++ b/packages/chain-registry/src/mainnet/stafihub/ibc.ts @@ -0,0 +1,191 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-369", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "irisnet", + "client_id": "07-tendermint-63", + "connection_id": "connection-44" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-7", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5413", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stafihub/ibc_chain1.ts b/packages/chain-registry/src/mainnet/stafihub/ibc_chain1.ts new file mode 100644 index 000000000..1a824127d --- /dev/null +++ b/packages/chain-registry/src/mainnet/stafihub/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "stafihub", + "client_id": "07-tendermint-5", + "connection_id": "connection-5" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-317", + "connection_id": "connection-233" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stafihub/index.ts b/packages/chain-registry/src/mainnet/stafihub/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stafihub/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/stargaze/assets.ts b/packages/chain-registry/src/mainnet/stargaze/assets.ts new file mode 100644 index 000000000..34cffb871 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stargaze/assets.ts @@ -0,0 +1,176 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "stargaze", + "assets": [ + { + "description": "The native token of Stargaze", + "denom_units": [ + { + "denom": "ustars", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token of ohhNFT.", + "denom_units": [ + { + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native meme token of stargaze.", + "denom_units": [ + { + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "ohhNFT LP token.", + "denom_units": [ + { + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Social token for the ohhVAULT.", + "denom_units": [ + { + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native coin of Sneaky Productions.", + "denom_units": [ + { + "denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stargaze/chain.ts b/packages/chain-registry/src/mainnet/stargaze/chain.ts new file mode 100644 index 000000000..51171212d --- /dev/null +++ b/packages/chain-registry/src/mainnet/stargaze/chain.ts @@ -0,0 +1,276 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ustars" + } + ] + }, + "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" + }, + "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.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://rpc-stargaze.ezstaking.dev", + "provider": "EZStaking.io" + }, + { + "address": "https://stargaze-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-stargaze-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://stargaze.c29r3.xyz:443/rpc/", + "provider": "c29r3" + }, + { + "address": "https://rpc-stargaze.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://stargaze-rpc.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://rpc-stargaze.d-stake.xyz", + "provider": "D-stake" + }, + { + "address": "https://rpc.stargaze.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://rpc-stargaze.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "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.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://stargaze-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://stargaze-rpc.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://stargaze-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://stargaze-rpc.reece.sh:443", + "provider": "Reecepbcups" + }, + { + "address": "https://rpc.stargaze.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://rest.stargaze-apis.com/", + "provider": "Stargaze Foundation" + }, + { + "address": "https://api-stargaze.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://api-stargaze.ezstaking.dev", + "provider": "EZStaking.io" + }, + { + "address": "https://api-stargaze-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://stargaze.c29r3.xyz:443/api/", + "provider": "c29r3" + }, + { + "address": "https://stargaze-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://stargaze-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://api-stargaze.d-stake.xyz", + "provider": "D-stake" + }, + { + "address": "https://api-stargaze.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://api.stargaze.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://stargaze-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://lcd-stargaze.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://stargaze-api.ramuchi.tech", + "provider": "ramuchi.tech" + }, + { + "address": "https://stargaze-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://stargaze-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://stargaze-rest.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://stargaze-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://stargaze-api.reece.sh:443", + "provider": "Reecepbcups" + }, + { + "address": "https://lcd.stargaze.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "grpc-stargaze-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "stargaze-grpc.polkachu.com:13790", + "provider": "Polkachu" + }, + { + "address": "stargaze-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-stargaze.cosmos-spaces.cloud:1150", + "provider": "Cosmos Spaces" + }, + { + "address": "https://stargaze-grpc.ramuchi.tech:9090", + "provider": "ramuchi.tech" + }, + { + "address": "services.staketab.com:9092", + "provider": "Staketab" + }, + { + "address": "stargaze-grpc.w3coins.io:13790", + "provider": "w3coins" + }, + { + "address": "stargaze-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "stargaze-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + }, + { + "address": "https://grpc.stargaze.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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": "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stargaze/ibc.ts b/packages/chain-registry/src/mainnet/stargaze/ibc.ts new file mode 100644 index 000000000..9331bcf03 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stargaze/ibc.ts @@ -0,0 +1,566 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-121", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-339", + "connection_id": "connection-288" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-270", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-24", + "port_id": "wasm.aura1y3244guwexyvn6yx6kqkj5s0f56lzfdnuja3culygnuwxgrxyuqsaz4xvv" + }, + "chain_2": { + "channel_id": "channel-271", + "port_id": "wasm.stars1r0a8ygvnjfaegy4n5z9325e0ew9uy2s7rn4vt7qf4ltv49fj4tnsk6pvtv" + }, + "ordering": "unordered", + "version": "ics721-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-9", + "connection_id": "connection-5" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-178", + "connection_id": "connection-111" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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-118", + "connection_id": "connection-90" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-352", + "connection_id": "connection-287" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-269", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-283", + "connection_id": "connection-211" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-18", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-191", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-238", + "port_id": "wasm.stars1mw5y55f53mnara7g3pn2pylxl8dpauscyn83c68442hz9nwktzrq8tjzyf" + }, + "chain_2": { + "channel_id": "channel-38", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-225", + "connection_id": "connection-159" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-106", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-405", + "connection_id": "connection-408" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-266", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-324", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stargaze/ibc_chain1.ts b/packages/chain-registry/src/mainnet/stargaze/ibc_chain1.ts new file mode 100644 index 000000000..2dd8ab66f --- /dev/null +++ b/packages/chain-registry/src/mainnet/stargaze/ibc_chain1.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "stargaze", + "client_id": "07-tendermint-195", + "connection_id": "connection-128" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-30", + "connection_id": "connection-18" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-106", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-405", + "connection_id": "connection-408" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-266", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-324", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stargaze/index.ts b/packages/chain-registry/src/mainnet/stargaze/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stargaze/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/starname/assets.ts b/packages/chain-registry/src/mainnet/starname/assets.ts new file mode 100644 index 000000000..129b7ece8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/starname/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "starname", + "assets": [ + { + "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", + "denom_units": [ + { + "denom": "uiov", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/starname/chain.ts b/packages/chain-registry/src/mainnet/starname/chain.ts new file mode 100644 index 000000000..937d1446b --- /dev/null +++ b/packages/chain-registry/src/mainnet/starname/chain.ts @@ -0,0 +1,94 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uiov" + } + ] + }, + "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" + }, + "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-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://rpc.starname.cosmos.iov.one", + "provider": "starname.me" + } + ], + "rest": [ + { + "address": "https://api.starname.cosmos.iov.one", + "provider": "Starname" + }, + { + "address": "https://api-starname-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://api.starname.cosmos.iov.one", + "provider": "starname.me" + } + ], + "grpc": [ + { + "address": "grpc-starname-ia.cosmosia.notional.ventures:443", + "provider": "starname" + } + ] + }, + "explorers": [ + { + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/starname/ibc.ts b/packages/chain-registry/src/mainnet/starname/ibc.ts new file mode 100644 index 000000000..40f059e8c --- /dev/null +++ b/packages/chain-registry/src/mainnet/starname/ibc.ts @@ -0,0 +1,232 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-326", + "connection_id": "connection-300" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-158", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-16", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "irisnet", + "client_id": "07-tendermint-44", + "connection_id": "connection-32" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-41", + "connection_id": "connection-27" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-21", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "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-39", + "connection_id": "connection-39" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-44", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-45", + "connection_id": "connection-31" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "starname", + "client_id": "07-tendermint-46", + "connection_id": "connection-32" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/starname/index.ts b/packages/chain-registry/src/mainnet/starname/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/starname/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/stratos/assets.ts b/packages/chain-registry/src/mainnet/stratos/assets.ts new file mode 100644 index 000000000..00a49eb60 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stratos/assets.ts @@ -0,0 +1,40 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "stratos", + "assets": [ + { + "description": "STOS coin is the token for the Stratos (STOS) cosmos based blockchain", + "denom_units": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "denom": "gwei", + "exponent": 9 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stratos/chain.ts b/packages/chain-registry/src/mainnet/stratos/chain.ts new file mode 100644 index 000000000..0b8d5d73a --- /dev/null +++ b/packages/chain-registry/src/mainnet/stratos/chain.ts @@ -0,0 +1,121 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": [ + { + "address": "https://rpc.thestratos.org", + "provider": "thestratos.org" + }, + { + "address": "https://rpc.stratos.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "http://stratos.rpc.nodersteam.com:26657/", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc-stratos.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ], + "rest": [ + { + "address": "https://rest.thestratos.org", + "provider": "thestratos.org" + }, + { + "address": "https://api.stratos.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://lcd-stratos.whispernode.com:443", + "provider": "WhisperNode 🤐" + } + ], + "grpc": [ + { + "address": "https://grpc.thestratos.org", + "provider": "thestratos.org" + }, + { + "address": "https://grpc.stratos.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "stratos.grpc.nodersteam.com:9090", + "provider": "[NODERS]TEAM" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://web3-rpc.thestratos.org", + "provider": "thestratos.org" + }, + { + "address": "https://jsonrpc.stratos.nodestake.top", + "provider": "NodeStake" + } + ] + }, + "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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stratos/index.ts b/packages/chain-registry/src/mainnet/stratos/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/stratos/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/stride/assets.ts b/packages/chain-registry/src/mainnet/stride/assets.ts new file mode 100644 index 000000000..9f8b94f20 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stride/assets.ts @@ -0,0 +1,404 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "stride", + "assets": [ + { + "description": "The native token of Stride", + "denom_units": [ + { + "denom": "ustrd", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "stride", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "stuatom", + "exponent": 0 + }, + { + "denom": "statom", + "exponent": 6 + } + ], + "base": "stuatom", + "name": "Stride Staked ATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "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" + }, + "coingecko_id": "stride-staked-atom", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "stustars", + "exponent": 0 + }, + { + "denom": "ststars", + "exponent": 6 + } + ], + "base": "stustars", + "name": "Stride Staked STARS", + "display": "ststars", + "symbol": "stSTARS", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "stargaze", + "base_denom": "ustars" + }, + "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" + }, + "coingecko_id": "stride-staked-stars", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "stuosmo", + "exponent": 0 + }, + { + "denom": "stosmo", + "exponent": 6 + } + ], + "base": "stuosmo", + "name": "Stride Staked OSMO", + "display": "stosmo", + "symbol": "stOSMO", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "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" + }, + "coingecko_id": "stride-staked-osmo", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "stujuno", + "exponent": 0 + }, + { + "denom": "stjuno", + "exponent": 6 + } + ], + "base": "stujuno", + "name": "Stride Staked JUNO", + "display": "stjuno", + "symbol": "stJUNO", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "juno", + "base_denom": "ujuno" + }, + "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" + }, + "coingecko_id": "stride-staked-juno", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "stuluna", + "exponent": 0 + }, + { + "denom": "stluna", + "exponent": 6 + } + ], + "base": "stuluna", + "name": "Stride Staked LUNA", + "display": "stluna", + "symbol": "stLUNA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "terra2", + "base_denom": "uluna" + }, + "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" + }, + "coingecko_id": "stride-staked-luna", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "stinj", + "exponent": 0 + }, + { + "denom": "stINJ", + "exponent": 18 + } + ], + "base": "stinj", + "name": "Stride Staked INJ", + "display": "stINJ", + "symbol": "stINJ", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "injective", + "base_denom": "inj" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "staevmos", + "exponent": 0 + }, + { + "denom": "stevmos", + "exponent": 18 + } + ], + "base": "staevmos", + "name": "Stride Staked EVMOS", + "display": "stevmos", + "symbol": "stEVMOS", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "evmos", + "base_denom": "uaevmos" + }, + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "stuumee", + "exponent": 0 + }, + { + "denom": "stumee", + "exponent": 6 + } + ], + "base": "stuumee", + "name": "Stride Staked UMEE", + "display": "stumee", + "symbol": "stUMEE", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "umee", + "base_denom": "uumee" + }, + "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" + }, + "coingecko_id": "stride-staked-umee", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "stucmdx", + "exponent": 0 + }, + { + "denom": "stcmdx", + "exponent": 6 + } + ], + "base": "stucmdx", + "name": "Stride Staked CMDX", + "display": "stcmdx", + "symbol": "stCMDX", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "comdex", + "base_denom": "ucmdx" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "stusomm", + "exponent": 0 + }, + { + "denom": "stsomm", + "exponent": 6 + } + ], + "base": "stusomm", + "name": "Stride Staked SOMM", + "display": "stsomm", + "symbol": "stSOMM", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "sommelier", + "base_denom": "usomm" + }, + "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" + }, + "coingecko_id": "stride-staked-sommelier", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stride/chain.ts b/packages/chain-registry/src/mainnet/stride/chain.ts new file mode 100644 index 000000000..a61a3ea2c --- /dev/null +++ b/packages/chain-registry/src/mainnet/stride/chain.ts @@ -0,0 +1,358 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.onivalidator.com", + "provider": "Oni Validator ⛩️" + }, + { + "address": "https://stride-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://rpc.stride.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://rpc-stride.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://stride.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc-stride.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://rpc-stride.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://rpc-stride.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://stride-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc-stride-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://stride-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "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://stride-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://rpc.stride.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://stride-api.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://api-stride.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://stride.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://stride-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://api.stride.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://stride.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://api-stride.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://stride-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rest-stride.architectnodes.com", + "provider": "Architect Nodes" + }, + { + "address": "https://lcd-stride.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://api-stride-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://stride-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://stride-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://community.nuxian-node.ch:6797/stride/crpc", + "provider": "PRO Delegators" + }, + { + "address": "https://stride-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://lcd.stride.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "stride.grpc.bccnodes.com:443", + "provider": "BccNodes" + }, + { + "address": "stride-grpc.polkachu.com:12290", + "provider": "Polkachu" + }, + { + "address": "stride-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "http://stride.grpc.m.stavr.tech:9986", + "provider": "🔥STAVR🔥" + }, + { + "address": "grpc-stride.cosmos-spaces.cloud:1140", + "provider": "Cosmos Spaces" + }, + { + "address": "stride-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "stride.grpc.kjnodes.com:11690", + "provider": "kjnodes" + }, + { + "address": "grpc-stride-01.stakeflow.io:1802", + "provider": "Stakeflow" + }, + { + "address": "stride-grpc.w3coins.io:12290", + "provider": "w3coins" + }, + { + "address": "stride-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "stride-grpc.stakeandrelax.net:12290", + "provider": "Stake&Relax 🦥" + }, + { + "address": "https://grpc.stride.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "explorers": [ + { + "kind": "BccNodes", + "url": "https://explorer.bccnodes.com/stride-M", + "tx_page": "https://explorer.bccnodes.com/stride-M/tx/${txHash}", + "account_page": "https://explorer.bccnodes.com/stride-M/account/${accountAddress}" + }, + { + "kind": "EZ Staking", + "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": "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": "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": "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": "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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stride/ibc.ts b/packages/chain-registry/src/mainnet/stride/ibc.ts new file mode 100644 index 000000000..7a00e9faa --- /dev/null +++ b/packages/chain-registry/src/mainnet/stride/ibc.ts @@ -0,0 +1,785 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-57", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-129", + "connection_id": "connection-118" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-59", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-148", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-64", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-162", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-45", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-126", + "connection_id": "connection-116" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-134", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-391", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-38", + "connection_id": "connection-39" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-44", + "connection_id": "connection-30" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-160", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-131", + "connection_id": "connection-103" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-89", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-31", + "connection_id": "connection-19" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-139", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-202", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-143", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-142", + "port_id": "icahost" + }, + "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" + } + }, + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "icahost" + }, + "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" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-32", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-125", + "connection_id": "connection-113" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-326", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "persistence", + "client_id": "07-tendermint-83", + "connection_id": "connection-71" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-54", + "connection_id": "connection-33" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-67", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-130", + "connection_id": "connection-119" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-149", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-150", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-30", + "connection_id": "connection-18" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-106", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-19", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-87", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-64", + "connection_id": "connection-45" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stride/ibc_chain1.ts b/packages/chain-registry/src/mainnet/stride/ibc_chain1.ts new file mode 100644 index 000000000..7a9537235 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stride/ibc_chain1.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "stride", + "client_id": "07-tendermint-51", + "connection_id": "connection-32" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-87", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-64", + "connection_id": "connection-45" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/stride/index.ts b/packages/chain-registry/src/mainnet/stride/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/stride/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/tenet/assets.ts b/packages/chain-registry/src/mainnet/tenet/assets.ts new file mode 100644 index 000000000..3275e56d7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/tenet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "tenet", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Tenet", + "denom_units": [ + { + "denom": "atenet", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/tenet/chain.ts b/packages/chain-registry/src/mainnet/tenet/chain.ts new file mode 100644 index 000000000..2bcc4d7e3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/tenet/chain.ts @@ -0,0 +1,120 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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://tenet-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://tenet-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://app.rpc.tenet.org", + "provider": "tenet" + }, + { + "address": "https://tenet-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://tenet-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "tenet-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "kichain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://rpc.tenet.org", + "provider": "tenet" + }, + { + "address": "https://tenet-evm.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "explorers": [ + { + "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/tenet/index.ts b/packages/chain-registry/src/mainnet/tenet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/tenet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/teritori/assets.ts b/packages/chain-registry/src/mainnet/teritori/assets.ts new file mode 100644 index 000000000..1c6ea23bf --- /dev/null +++ b/packages/chain-registry/src/mainnet/teritori/assets.ts @@ -0,0 +1,186 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "teritori", + "assets": [ + { + "description": "The native token of Teritori", + "denom_units": [ + { + "denom": "utori", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "teritori", + "images": [ + { + "image_sync": { + "chain_name": "teritori", + "base_denom": "utori" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg" + } + ] + }, + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "exponent": 0 + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "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" + }, + "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" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-10", + "path": "transfer/channel-10/uatom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + }, + { + "description": "The native staking and governance token of the Kujira chain.", + "denom_units": [ + { + "denom": "ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E", + "exponent": 0 + }, + { + "denom": "kuji", + "exponent": 6 + } + ], + "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" + }, + "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" + }, + "images": [ + { + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/teritori/chain.ts b/packages/chain-registry/src/mainnet/teritori/chain.ts new file mode 100644 index 000000000..95d33b523 --- /dev/null +++ b/packages/chain-registry/src/mainnet/teritori/chain.ts @@ -0,0 +1,261 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "utori" + } + ] + }, + "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": [ + { + "address": "https://teritori-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://teritori-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc.teritori.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://teritori.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc.teritori.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://teritori-rpc.brocha.in", + "provider": "Brochain" + }, + { + "address": "https://teritori-rpc.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://teritori.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc.tori.bh.rocks", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://teritori-rpc.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://m-teritori.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://teritori.rpc.silknodes.io", + "provider": "Silk Nodes" + }, + { + "address": "https://rpc-teritori.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://teritori-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc-teritori.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://teritori-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "rest": [ + { + "address": "https://teritori-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://teritori-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api.teritori.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://teritori.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api.teritori.silentvalidator.com/", + "provider": "silent" + }, + { + "address": "https://teritori-api.ibs.team", + "provider": "Inter Blockchain Services" + }, + { + "address": "https://teritori.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://api.tori.bh.rocks", + "provider": "BlockHunters 🎯" + }, + { + "address": "https://teritori-api.kleomedes.network", + "provider": "Kleomedes" + }, + { + "address": "https://m-teritori.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://teritori.api.silknodes.io", + "provider": "Silk Nodes" + }, + { + "address": "https://api-teritori.pupmos.network", + "provider": "PUPMØS" + }, + { + "address": "https://teritori-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rest-teritori.ecostake.com", + "provider": "ecostake" + }, + { + "address": "https://teritori-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "teritori-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc.teritori.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "teritori.grpc.m.stavr.tech:6705", + "provider": "🔥STAVR🔥" + }, + { + "address": "teritori-grpc.brocha.in:443", + "provider": "Brochain" + }, + { + "address": "teritori-grpc.polkachu.com:15990", + "provider": "Polkachu" + }, + { + "address": "teritori.grpc.silknodes.io:443", + "provider": "Silk Nodes" + }, + { + "address": "teritori-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "teritori.grpc.kjnodes.com:11990", + "provider": "kjnodes" + }, + { + "address": "teritori-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ] + }, + "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": "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": "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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀", + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/teritori/ibc.ts b/packages/chain-registry/src/mainnet/teritori/ibc.ts new file mode 100644 index 000000000..e712a5344 --- /dev/null +++ b/packages/chain-registry/src/mainnet/teritori/ibc.ts @@ -0,0 +1,161 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-431", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-89", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-54", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-62", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-362", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-192", + "connection_id": "connection-185" + }, + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-99", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/teritori/index.ts b/packages/chain-registry/src/mainnet/teritori/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/teritori/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/terpnetwork/assets.ts b/packages/chain-registry/src/mainnet/terpnetwork/assets.ts new file mode 100644 index 000000000..7a0f053a3 --- /dev/null +++ b/packages/chain-registry/src/mainnet/terpnetwork/assets.ts @@ -0,0 +1,58 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uterp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "uthiol", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terpnetwork/chain.ts b/packages/chain-registry/src/mainnet/terpnetwork/chain.ts new file mode 100644 index 000000000..0087f2aca --- /dev/null +++ b/packages/chain-registry/src/mainnet/terpnetwork/chain.ts @@ -0,0 +1,116 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "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" + }, + "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" + } + ], + "rest": [ + { + "address": "https://api-terp.zenchainlabs.io:443", + "provider": "ZenChainLabs" + }, + { + "address": "https://rpc.terp.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://terp-mainnet-api.itrocket.net:443", + "provider": "itrocket.net" + }, + { + "address": " https://terp.api.nodex.one:443", + "provider": "nodex.one" + } + ], + "grpc": [ + { + "address": "https://grpc.terp.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "terp-mainnet-grpc.itrocket.net:13090", + "provider": "itrocket.net" + }, + { + "address": " https://terp.grpc.nodex.one:443", + "provider": "nodex.one" + } + ] + }, + "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://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": "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": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/logo.png" + } + ], + "slip44": 118 +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terpnetwork/index.ts b/packages/chain-registry/src/mainnet/terpnetwork/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/terpnetwork/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/terra/assets.ts b/packages/chain-registry/src/mainnet/terra/assets.ts new file mode 100644 index 000000000..50e4ab5cc --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra/assets.ts @@ -0,0 +1,5723 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "terra", + "assets": [ + { + "description": "The native staking token of Terra Classic.", + "denom_units": [ + { + "denom": "uluna", + "exponent": 0, + "aliases": [ + "microluna" + ] + }, + { + "denom": "mluna", + "exponent": 3, + "aliases": [ + "milliluna" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The USD stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "uusd", + "exponent": 0, + "aliases": [ + "microusd" + ] + }, + { + "denom": "musd", + "exponent": 3, + "aliases": [ + "milliusd" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The KRW stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "ukrw", + "exponent": 0, + "aliases": [ + "microkrw" + ] + }, + { + "denom": "mkrw", + "exponent": 3, + "aliases": [ + "millikrw" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The governance token of the White Whale protocol on Terra.", + "type_asset": "cw20", + "address": "terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz", + "denom_units": [ + { + "denom": "cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "white-whale", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whale.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bluna.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/beth.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aust.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/anc.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mir.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maapl.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mabnb.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamc.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamd.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamzn.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/markk.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbaba.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbtc.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mcoin.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdis.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdot.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/meth.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mfb.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mglxy.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgme.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgoogl.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgs.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mhood.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mjnj.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mko.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mmsft.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnflx.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnio.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnke.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnvda.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mpypl.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mqqq.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msbux.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mslv.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mspy.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msq.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtsla.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtwtr.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/muso.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lota.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dph.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mine.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bpsidp-24m.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/spec.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loop.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loopr.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stt.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twd.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xtra.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miaw.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/psi.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nluna.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neth.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnluna.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cneth.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/navax.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/natom.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vkr.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orion.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tland.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vust.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eth.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wbtc.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sol.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticet.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bnb.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cake.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sushi.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/uni.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtet.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcet.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kuji.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/skuji.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsteth.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wstsol.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsbsol.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ldo.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webeth.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stluna.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", + "exponent": 0 + }, + { + "denom": "xdefi", + "exponent": 8 + } + ], + "type_asset": "cw20", + "address": "terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", + "base": "cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", + "name": "XDEFI (Portal)", + "display": "xdefi", + "symbol": "XDEFI" + }, + { + "denom_units": [ + { + "denom": "cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/btl.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lunax.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luni.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ply.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfloki.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tftic.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticii.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticiii.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/moon.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/halo.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pug.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orne.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tns.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xrune.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784", + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/alot.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sity.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/glow.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/apollo.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/abr.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", + "exponent": 0 + }, + { + "denom": "whgtps", + "exponent": 8 + } + ], + "type_asset": "cw20", + "address": "terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", + "base": "cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", + "name": "Global Transaction Payment Solu", + "display": "whgtps", + "symbol": "whGTPS" + }, + { + "denom_units": [ + { + "denom": "cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/prism.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", + "exponent": 0 + }, + { + "denom": "sdollar", + "exponent": 2 + } + ], + "type_asset": "cw20", + "address": "terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", + "base": "cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", + "name": "Space Dollar", + "display": "sdollar", + "symbol": "SDOLLAR" + }, + { + "denom_units": [ + { + "denom": "cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whsail.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whgsail.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xprism.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", + "exponent": 0 + }, + { + "denom": "cde", + "exponent": 9 + } + ], + "type_asset": "cw20", + "address": "terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", + "base": "cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", + "name": "CAPITRADE TOKEN", + "display": "cde", + "symbol": "CDE" + }, + { + "denom_units": [ + { + "denom": "cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ctx.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cluna.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pluna.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/yluna.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlo.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/local.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luv.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/robo.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luart.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mars.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xmars.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", + "exponent": 0 + }, + { + "denom": "dfiat", + "exponent": 8 + } + ], + "type_asset": "cw20", + "address": "terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", + "base": "cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", + "name": "DeFiato", + "display": "dfiat", + "symbol": "DFIAT" + }, + { + "denom_units": [ + { + "denom": "cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ceres.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wasavax.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mint.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sd.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xsd.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/paxg.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whdao.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sayve.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", + "exponent": 0 + }, + { + "denom": "guides", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", + "base": "cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", + "name": "Guides Token", + "display": "guides", + "symbol": "GUIDES" + }, + { + "denom_units": [ + { + "denom": "cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bro.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bbro.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", + "exponent": 0 + }, + { + "denom": "gtps", + "exponent": 18 + } + ], + "type_asset": "cw20", + "address": "terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", + "base": "cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", + "name": "Global Transaction Payment Solut", + "display": "gtps", + "symbol": "GTPS" + }, + { + "denom_units": [ + { + "denom": "cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", + "exponent": 0 + }, + { + "denom": "gfi", + "exponent": 18 + } + ], + "type_asset": "cw20", + "address": "terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", + "base": "cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", + "name": "Gtps.Finance", + "display": "gfi", + "symbol": "GFI" + }, + { + "denom_units": [ + { + "denom": "cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", + "exponent": 0 + }, + { + "denom": "ulc", + "exponent": 18 + } + ], + "type_asset": "cw20", + "address": "terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", + "base": "cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", + "name": "Ultimatalioniscoin", + "display": "ulc", + "symbol": "ULC" + }, + { + "denom_units": [ + { + "denom": "cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sst.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlas.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/audio.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/avax.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bat.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/busdbs.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dai.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticpo.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mimet.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ray.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sbr.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/shib.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/srmso.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcav.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcbs.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcpo.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcso.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtav.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtbs.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtso.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gohm.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msol.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steth.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lct.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/batom.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webatom.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wcoin.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy", + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lctfancard.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kntc.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kust.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steak.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cst.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam", + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cstfancard.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwld.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/fury.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rct.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vitc.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sb.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/toad.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orionastro.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/retro.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tnd.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stnd.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwt.png" + } + ] + }, + { + "description": "The AUD stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "uaud", + "exponent": 0, + "aliases": [ + "microaud" + ] + }, + { + "denom": "maud", + "exponent": 3, + "aliases": [ + "milliaud" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The CAD stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "ucad", + "exponent": 0, + "aliases": [ + "microcad" + ] + }, + { + "denom": "mcad", + "exponent": 3, + "aliases": [ + "millicad" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The CHF stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "uchf", + "exponent": 0, + "aliases": [ + "microchf" + ] + }, + { + "denom": "mchf", + "exponent": 3, + "aliases": [ + "millichf" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The CNY stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "ucny", + "exponent": 0, + "aliases": [ + "microcny" + ] + }, + { + "denom": "mcny", + "exponent": 3, + "aliases": [ + "millicny" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The DKK stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "udkk", + "exponent": 0, + "aliases": [ + "microdkk" + ] + }, + { + "denom": "mdkk", + "exponent": 3, + "aliases": [ + "millidkk" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The EUR stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "ueur", + "exponent": 0, + "aliases": [ + "microeur" + ] + }, + { + "denom": "meur", + "exponent": 3, + "aliases": [ + "millieur" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The GBP stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "ugbp", + "exponent": 0, + "aliases": [ + "microgbp" + ] + }, + { + "denom": "mgbp", + "exponent": 3, + "aliases": [ + "milligbp" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The HKD stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "uhkd", + "exponent": 0, + "aliases": [ + "microhkd" + ] + }, + { + "denom": "mhkd", + "exponent": 3, + "aliases": [ + "millihkd" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The IDR stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "uidr", + "exponent": 0, + "aliases": [ + "microidr" + ] + }, + { + "denom": "midr", + "exponent": 3, + "aliases": [ + "milliidr" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The INR stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "uinr", + "exponent": 0, + "aliases": [ + "microinr" + ] + }, + { + "denom": "minr", + "exponent": 3, + "aliases": [ + "milliinr" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The JPY stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "ujpy", + "exponent": 0, + "aliases": [ + "microjpy" + ] + }, + { + "denom": "mjpy", + "exponent": 3, + "aliases": [ + "millijpy" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The MNT stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "umnt", + "exponent": 0, + "aliases": [ + "micromnt" + ] + }, + { + "denom": "mmnt", + "exponent": 3, + "aliases": [ + "millimnt" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The MYR stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "umyr", + "exponent": 0, + "aliases": [ + "micromyr" + ] + }, + { + "denom": "mmyr", + "exponent": 3, + "aliases": [ + "millimyr" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The NOK stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "unok", + "exponent": 0, + "aliases": [ + "micronok" + ] + }, + { + "denom": "mnok", + "exponent": 3, + "aliases": [ + "millinok" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The PHP stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "uphp", + "exponent": 0, + "aliases": [ + "microphp" + ] + }, + { + "denom": "mphp", + "exponent": 3, + "aliases": [ + "milliphp" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The SDR stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "usdr", + "exponent": 0, + "aliases": [ + "microsdr" + ] + }, + { + "denom": "msdr", + "exponent": 3, + "aliases": [ + "millisdr" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The SEK stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "usek", + "exponent": 0, + "aliases": [ + "microsek" + ] + }, + { + "denom": "msek", + "exponent": 3, + "aliases": [ + "millisek" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The SGD stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "usgd", + "exponent": 0, + "aliases": [ + "microsgd" + ] + }, + { + "denom": "msgd", + "exponent": 3, + "aliases": [ + "millisgd" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The THB stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "uthb", + "exponent": 0, + "aliases": [ + "microthb" + ] + }, + { + "denom": "mthb", + "exponent": 3, + "aliases": [ + "millithb" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The TWD stablecoin of Terra Classic.", + "denom_units": [ + { + "denom": "utwd", + "exponent": 0, + "aliases": [ + "microtwd" + ] + }, + { + "denom": "mtwd", + "exponent": 3, + "aliases": [ + "millitwd" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neb.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/trit.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terra/chain.ts b/packages/chain-registry/src/mainnet/terra/chain.ts new file mode 100644 index 000000000..1c7fa747d --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra/chain.ts @@ -0,0 +1,263 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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" + } + ] + }, + "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": [ + { + "address": "https://rpc.terrarebels.net", + "provider": "Terra Rebels" + }, + { + "address": "https://terra-classic-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "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-rpc-server-01.stakely.io", + "provider": "Stakely" + } + ], + "rest": [ + { + "address": "https://lcd.terrarebels.net", + "provider": "Terra Rebels" + }, + { + "address": "https://terra-classic-lcd.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "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-lcd-server-01.stakely.io", + "provider": "Stakely" + } + ], + "grpc": [ + { + "address": "grpc.terrarebels.net", + "provider": "Terra Rebels" + }, + { + "address": "terra-classic-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "grpc-terra-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "terraclassic-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ] + }, + "explorers": [ + { + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terra/ibc.ts b/packages/chain-registry/src/mainnet/terra/ibc.ts new file mode 100644 index 000000000..b1edab0d4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra/ibc.ts @@ -0,0 +1,193 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-72", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-85", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-314", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terra/ibc_chain1.ts b/packages/chain-registry/src/mainnet/terra/ibc_chain1.ts new file mode 100644 index 000000000..491971d30 --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "terra", + "client_id": "07-tendermint-235", + "connection_id": "connection-142" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-394", + "connection_id": "connection-384" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-85", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-314", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terra/index.ts b/packages/chain-registry/src/mainnet/terra/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/terra2/assets.ts b/packages/chain-registry/src/mainnet/terra2/assets.ts new file mode 100644 index 000000000..f02078460 --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra2/assets.ts @@ -0,0 +1,746 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "terra2", + "assets": [ + { + "description": "The native staking token of Terra.", + "denom_units": [ + { + "denom": "uluna", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "coingecko_id": "astroport-fi", + "images": [ + { + "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": [ + { + "denom": "cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "eris-amplified-luna", + "images": [ + { + "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": [ + { + "denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "lion-dao", + "images": [ + { + "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": [ + { + "denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "ERIS Alliance Staked ampWHALE on Terra", + "denom_units": [ + { + "denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg" + } + ] + }, + { + "description": "ERIS Alliance Staked boneWHALE on Terra", + "denom_units": [ + { + "denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg" + } + ] + }, + { + "description": "ERIS Liquid Enterprise Staked ROAR", + "denom_units": [ + { + "denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png" + } + ] + }, + { + "description": "Nico Dao Money", + "type_asset": "cw20", + "address": "terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3", + "denom_units": [ + { + "denom": "cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/BITZ.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C", + "exponent": 0, + "aliases": [ + "wstETH" + ] + }, + { + "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "exponent": 18 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-229", + "path": "transfer/channel-229/factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH" + } + } + ], + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/seul.png" + } + ] + }, + { + "description": "SEUL DAO", + "type_asset": "cw20", + "address": "terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5", + "denom_units": [ + { + "denom": "cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xseul.png" + } + ] + }, + { + "description": "ITO DAO", + "type_asset": "cw20", + "address": "terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s", + "denom_units": [ + { + "denom": "cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/I.png" + } + ] + }, + { + "description": "Chris Armani Token", + "type_asset": "cw20", + "address": "terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8", + "denom_units": [ + { + "denom": "cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/armani.png" + } + ] + }, + { + "description": "useless meme coin", + "type_asset": "cw20", + "address": "terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", + "denom_units": [ + { + "denom": "cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", + "exponent": 0 + }, + { + "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" + } + }, + { + "description": "ado the flower of night", + "type_asset": "cw20", + "address": "terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu", + "denom_units": [ + { + "denom": "cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu", + "exponent": 0 + }, + { + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terra2/chain.ts b/packages/chain-registry/src/mainnet/terra2/chain.ts new file mode 100644 index 000000000..4adf2c011 --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra2/chain.ts @@ -0,0 +1,198 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://terra-rpc.polkachu.com", + "provider": "polkachu" + }, + { + "address": "https://terra-rpc.stakely.io:443/", + "provider": "stakely" + }, + { + "address": "https://terra-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://phoenix-rpc.terra.dev:443", + "provider": "Terraform Labs" + }, + { + "address": "https://terra-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rpc-terra-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://rpc-terra.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://terra-phoenix-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://rpc-terra.wildsage.io", + "provider": "🧙 WildSage Labs" + }, + { + "address": "https://terra.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" + }, + { + "address": "https://terra2.tdrsys.com:2053", + "provider": "TdrSys" + }, + { + "address": "https://terra-rpc.cosmosrescue.dev:8443", + "provider": "cosmosrescue" + } + ], + "rest": [ + { + "address": "https://lcd-terra.wildsage.io", + "provider": "🧙 WildSage Labs" + }, + { + "address": "https://terra-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://phoenix-lcd.terra.dev:443", + "provider": "Terraform Labs" + }, + { + "address": "https://api-terra.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "https://terra-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://api-terra-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://terra-phoenix-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://terra-rest.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" + }, + { + "address": "https://terra2.tdrsys.com", + "provider": "TdrSys" + }, + { + "address": "https://terra-api.cosmosrescue.dev:8443", + "provider": "cosmosrescue" + } + ], + "grpc": [ + { + "address": "terra2-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "terra-grpc.polkachu.com:11790", + "provider": "Polkachu" + }, + { + "address": "terra-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "terra-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "grpc-terra.cosmos-spaces.cloud:2690", + "provider": "Cosmos Spaces" + }, + { + "address": "grpc-terra-01.stakeflow.io:1102", + "provider": "Stakeflow" + }, + { + "address": "https://terra2.tdrsys.com:2083", + "provider": "TdrSys" + } + ] + }, + "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": "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terra2/ibc.ts b/packages/chain-registry/src/mainnet/terra2/ibc.ts new file mode 100644 index 000000000..07ff9285d --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra2/ibc.ts @@ -0,0 +1,989 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-77", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-273", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-409", + "connection_id": "connection-413" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-351", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-265", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" + } + }, + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-41", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-391", + "connection_id": "connection-381" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-300", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-301", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-70", + "connection_id": "connection-59" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-0", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-339", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-36", + "connection_id": "connection-37" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-68", + "connection_id": "connection-57" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-315", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-390", + "connection_id": "connection-380" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-299", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-271", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-216", + "connection_id": "connection-202" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-369", + "connection_id": "connection-311" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-151", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-255", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-3", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-86", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-156", + "connection_id": "connection-196" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-386", + "connection_id": "connection-362" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-138", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-272", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-11", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-28", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-104", + "connection_id": "connection-91" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-78", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-105", + "connection_id": "connection-93" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-86", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-274", + "connection_id": "connection-192" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-167", + "port_id": "wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07" + }, + "chain_2": { + "channel_id": "channel-168", + "port_id": "wasm.terra1fkuhmq52pj08qqffp0elrvmzel8zz857x0pjjuuaar54mgcpe35s9km660" + }, + "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-56", + "connection_id": "connection-54" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-367", + "connection_id": "connection-302" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-253", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-251", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-559", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-85", + "port_id": "wasm.terra1d90p5lacfxnqgjxjupu234lxnxyeu8fdeef4d0e0nqy3p30r7gss4myn9x" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + }, + { + "chain_1": { + "channel_id": "channel-341", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-26", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "privacy" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-204", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-405", + "connection_id": "connection-408" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-266", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-324", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-87", + "connection_id": "connection-72" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-52", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-394", + "connection_id": "connection-384" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-85", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-314", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/terra2/index.ts b/packages/chain-registry/src/mainnet/terra2/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/terra2/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/tgrade/assets.ts b/packages/chain-registry/src/mainnet/tgrade/assets.ts new file mode 100644 index 000000000..9ad700fbf --- /dev/null +++ b/packages/chain-registry/src/mainnet/tgrade/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "tgrade", + "assets": [ + { + "description": "The native token of Tgrade", + "denom_units": [ + { + "denom": "utgd", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/tgrade/chain.ts b/packages/chain-registry/src/mainnet/tgrade/chain.ts new file mode 100644 index 000000000..023bfb21c --- /dev/null +++ b/packages/chain-registry/src/mainnet/tgrade/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "utgd" + } + ] + }, + "codebase": { + "cosmwasm_enabled": true + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.mainnet-1.tgrade.confio.run", + "provider": "Confio" + }, + { + "address": "https://rpc.tgrade.posthuman.digital", + "provider": "POSTHUMAN ꝏ DVS" + } + ], + "rest": [ + { + "address": "https://api.mainnet-1.tgrade.confio.run", + "provider": "Confio" + }, + { + "address": "https://lcd.tgrade.posthuman.digital", + "provider": "POSTHUMAN ꝏ DVS" + } + ], + "grpc": [] + }, + "explorers": [ + { + "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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/tgrade/ibc.ts b/packages/chain-registry/src/mainnet/tgrade/ibc.ts new file mode 100644 index 000000000..6ba7621e2 --- /dev/null +++ b/packages/chain-registry/src/mainnet/tgrade/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-263", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/tgrade/index.ts b/packages/chain-registry/src/mainnet/tgrade/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/tgrade/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/thorchain/chain.ts b/packages/chain-registry/src/mainnet/thorchain/chain.ts new file mode 100644 index 000000000..9e44a8ace --- /dev/null +++ b/packages/chain-registry/src/mainnet/thorchain/chain.ts @@ -0,0 +1,32 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/thorchain/index.ts b/packages/chain-registry/src/mainnet/thorchain/index.ts new file mode 100644 index 000000000..a1069390a --- /dev/null +++ b/packages/chain-registry/src/mainnet/thorchain/index.ts @@ -0,0 +1,3 @@ +import _chain from './chain'; + +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/umee/assets.ts b/packages/chain-registry/src/mainnet/umee/assets.ts new file mode 100644 index 000000000..f1b1d0b4b --- /dev/null +++ b/packages/chain-registry/src/mainnet/umee/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "umee", + "assets": [ + { + "description": "The native token of Umee", + "denom_units": [ + { + "denom": "uumee", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/umee/chain.ts b/packages/chain-registry/src/mainnet/umee/chain.ts new file mode 100644 index 000000000..b8774345c --- /dev/null +++ b/packages/chain-registry/src/mainnet/umee/chain.ts @@ -0,0 +1,306 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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://rpc-umee-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://umee-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "http://umee.rpc.m.stavr.tech:10457", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://rpc-umee.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" + }, + { + "address": "http://rpc-umee-0.node75.org:26657", + "provider": "Pro-Nodes75" + }, + { + "address": "https://umee-rpc.quantnode.tech", + "provider": "QuantNode" + }, + { + "address": "https://umee-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://rpc-umee-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://umee-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://umee-rpc.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://umee.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://umee-rpc.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://rpc-umee.mms.team", + "provider": "MMS" + }, + { + "address": "https://rpc-umee.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://umee-rpc.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://umee-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://umee.rpc.stakevillage.net:443", + "provider": "Stake Village" + } + ], + "rest": [ + { + "address": "https://api-umee-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://umee.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "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-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://umee-lcd.quantnode.tech", + "provider": "QuantNode" + }, + { + "address": "https://umee-api.tienthuattoan.ventures", + "provider": "TienThuatToan" + }, + { + "address": "https://api-umee-01.stakeflow.io", + "provider": "Stakeflow" + }, + { + "address": "https://umee-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://umee-api.theamsolutions.info", + "provider": "AM Solutions" + }, + { + "address": "https://umee.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://umee-api.w3coins.io", + "provider": "w3coins" + }, + { + "address": "https://api-umee.mms.team", + "provider": "MMS" + }, + { + "address": "https://api-umee.mzonder.com", + "provider": "MZONDER" + }, + { + "address": "https://umee-api.stake-town.com", + "provider": "StakeTown" + }, + { + "address": "https://umee-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://umee.api.stakevillage.net", + "provider": "Stake Village" + } + ], + "grpc": [ + { + "address": "grpc-umee-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + }, + { + "address": "umee-grpc.polkachu.com:13690", + "provider": "Polkachu" + }, + { + "address": "umee-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "grpc-umee.cosmos-spaces.cloud:2110", + "provider": "Cosmos Spaces" + }, + { + "address": "umee-grpc.quantnode.tech:9090", + "provider": "QuantNode gRPC" + }, + { + "address": "umee.grpc.m.stavr.tech:9090", + "provider": "🔥STAVR🔥" + }, + { + "address": "umee-grpc.quantnode.tech:9091", + "provider": "QuantNode gRPCweb" + }, + { + "address": "umee-grpc.tienthuattoan.ventures:9090", + "provider": "TienThuatToan" + }, + { + "address": "grpc-umee-01.stakeflow.io:9990", + "provider": "Stakeflow" + }, + { + "address": "services.staketab.com:9020", + "provider": "Staketab" + }, + { + "address": "umee.grpc.kjnodes.com:16290", + "provider": "kjnodes" + }, + { + "address": "umee-grpc.w3coins.io:13690", + "provider": "w3coins" + }, + { + "address": "grpc-umee.mms.team:443", + "provider": "MMS" + }, + { + "address": "grpc-umee.mzonder.com:443", + "provider": "MZONDER" + }, + { + "address": "umee-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "umee.grpc.stakevillage.net:11090", + "provider": "Stake Village" + } + ] + }, + "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": "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": "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": "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 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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/umee/ibc.ts b/packages/chain-registry/src/mainnet/umee/ibc.ts new file mode 100644 index 000000000..dd322005c --- /dev/null +++ b/packages/chain-registry/src/mainnet/umee/ibc.ts @@ -0,0 +1,306 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-288", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": {} + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "crescent" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-119", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-56", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-104", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-184", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "persistence", + "client_id": "07-tendermint-105", + "connection_id": "connection-144" + }, + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-179", + "connection_id": "connection-119" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-81", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-53", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/umee/index.ts b/packages/chain-registry/src/mainnet/umee/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/umee/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/unification/assets.ts b/packages/chain-registry/src/mainnet/unification/assets.ts new file mode 100644 index 000000000..c1d750f09 --- /dev/null +++ b/packages/chain-registry/src/mainnet/unification/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "unification", + "assets": [ + { + "description": "Staking and governance coin for the Unification Blockchain", + "denom_units": [ + { + "denom": "nund", + "exponent": 0 + }, + { + "denom": "FUND", + "exponent": 9 + } + ], + "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" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/unification/chain.ts b/packages/chain-registry/src/mainnet/unification/chain.ts new file mode 100644 index 000000000..f274119d5 --- /dev/null +++ b/packages/chain-registry/src/mainnet/unification/chain.ts @@ -0,0 +1,105 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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://rpc.unification.chainmasters.ninja/", + "provider": "Chainmasters" + } + ], + "rest": [ + { + "address": "https://rest.unification.io", + "provider": "Unification" + }, + { + "address": "https://rest.unification.chainmasters.ninja/", + "provider": "Chainmasters" + } + ], + "grpc": [ + { + "address": "grpc.unification.io:443", + "provider": "Unification" + }, + { + "address": "grpc.unification.chainmasters.info", + "provider": "Chainmasters" + } + ] + }, + "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": "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}" + } + ], + "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" + } +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/unification/ibc.ts b/packages/chain-registry/src/mainnet/unification/ibc.ts new file mode 100644 index 000000000..748092a18 --- /dev/null +++ b/packages/chain-registry/src/mainnet/unification/ibc.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-98", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2229", + "connection_id": "connection-1746" + }, + "chain_2": { + "chain_name": "unification", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-382", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/unification/index.ts b/packages/chain-registry/src/mainnet/unification/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/unification/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/ununifi/assets.ts b/packages/chain-registry/src/mainnet/ununifi/assets.ts new file mode 100644 index 000000000..d49d683cd --- /dev/null +++ b/packages/chain-registry/src/mainnet/ununifi/assets.ts @@ -0,0 +1,41 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "ununifi", + "assets": [ + { + "description": "The governance token of UnUniFi protocol.", + "denom_units": [ + { + "denom": "uguu", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/ununifi/chain.ts b/packages/chain-registry/src/mainnet/ununifi/chain.ts new file mode 100644 index 000000000..6335fce9b --- /dev/null +++ b/packages/chain-registry/src/mainnet/ununifi/chain.ts @@ -0,0 +1,153 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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": "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.genznodes.dev", + "provider": "genznodes" + } + ], + "rest": [ + { + "address": "https://a.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://ununifi-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://ununifi-api.genznodes.dev", + "provider": "genznodes" + } + ], + "grpc": [ + { + "address": "a.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": "grpc.ununifi.nodestake.top:9090", + "provider": "NodeStake" + }, + { + "address": "https://grpc-ununifi.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://ununifi-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "ununifi-grpc.genznodes.dev:54090", + "provider": "genznodes" + } + ] + }, + "explorers": [ + { + "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": "Nodeist Explorer", + "url": "https://exp.nodeist.net/Ununifi", + "tx_page": "https://exp.nodeist.net/Ununifi/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/ununifi/index.ts b/packages/chain-registry/src/mainnet/ununifi/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/ununifi/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/uptick/assets.ts b/packages/chain-registry/src/mainnet/uptick/assets.ts new file mode 100644 index 000000000..f5105df97 --- /dev/null +++ b/packages/chain-registry/src/mainnet/uptick/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "uptick", + "assets": [ + { + "description": "The native token of Uptick", + "denom_units": [ + { + "denom": "auptick", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/uptick/chain.ts b/packages/chain-registry/src/mainnet/uptick/chain.ts new file mode 100644 index 000000000..12696a605 --- /dev/null +++ b/packages/chain-registry/src/mainnet/uptick/chain.ts @@ -0,0 +1,259 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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.bccnodes.com:443", + "provider": "BccNodes" + }, + { + "address": "https://rpc.uptick.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "http://uptick.rpc.nodersteam.com:21657", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://uptick.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "http://uptick.rpc.m.stavr.tech:3157", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://m-uptick.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://uptick-mainnet-rpc.itrocket.net:443", + "provider": "itrocket" + }, + { + "address": "https://uptick.rpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://uptick-rpc.staketab.org:443", + "provider": "Staketab" + }, + { + "address": "https://uptick-rpc.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://rpc-uptick.cakralabs.site", + "provider": "Cakra Labs" + }, + { + "address": "https://rpc-uptick.sr20de.xyz", + "provider": "Sr20de" + } + ], + "rest": [ + { + "address": "https://uptick-rest.brocha.in:443", + "provider": "Brochain" + }, + { + "address": "http://uptick.api.nodersteam.com:21017", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://api.uptick.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://uptick.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://uptick.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://m-uptick.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" + }, + { + "address": "https://uptick-mainnet-api.itrocket.net:443", + "provider": "itrocket" + }, + { + "address": "https://uptick.api.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://uptick-rest.staketab.org", + "provider": "Staketab" + }, + { + "address": "https://uptick-rest.stakerhouse.com", + "provider": "StakerHouse" + }, + { + "address": "https://rest-uptick.cakralabs.site", + "provider": "Cakra Labs" + }, + { + "address": "https://api-uptick.sr20de.xyz", + "provider": "Sr20de" + } + ], + "grpc": [ + { + "address": "https://grpc.uptick.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "uptick.rpc.bccnodes.com:9690", + "provider": "BccNodes" + }, + { + "address": "uptick.grpc.nodersteam.com:9211", + "provider": "[NODERS]TEAM" + }, + { + "address": "uptick.grpc.kjnodes.com:11590", + "provider": "kjnodes" + }, + { + "address": "uptick.grpc.m.stavr.tech:1901", + "provider": "🔥STAVR🔥" + }, + { + "address": "uptick-mainnet-grpc.itrocket.net:10090", + "provider": "itrocket" + }, + { + "address": "https://uptick.grpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "services.staketab.com:9190", + "provider": "Staketab" + }, + { + "address": "uptick-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + }, + { + "address": "grpc-uptick.mms.team:443", + "provider": "MMS" + }, + { + "address": "https://grpc-uptick.sr20de.xyz", + "provider": "Sr20de" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://jsonrpc.uptick.nodestake.top", + "provider": "NodeStake" + }, + { + "address": "https://uptick.jsonrpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://evm-uptick.sr20de.xyz", + "provider": "Sr20de" + } + ] + }, + "explorers": [ + { + "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": "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": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/uptick/ibc.ts b/packages/chain-registry/src/mainnet/uptick/ibc.ts new file mode 100644 index 000000000..2d5a566c7 --- /dev/null +++ b/packages/chain-registry/src/mainnet/uptick/ibc.ts @@ -0,0 +1,58 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-535", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1" + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/uptick/index.ts b/packages/chain-registry/src/mainnet/uptick/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/uptick/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/vidulum/assets.ts b/packages/chain-registry/src/mainnet/vidulum/assets.ts new file mode 100644 index 000000000..0110ccc29 --- /dev/null +++ b/packages/chain-registry/src/mainnet/vidulum/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "vidulum", + "assets": [ + { + "description": "The native token of Vidulum", + "denom_units": [ + { + "denom": "uvdl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/vidulum/chain.ts b/packages/chain-registry/src/mainnet/vidulum/chain.ts new file mode 100644 index 000000000..123df8056 --- /dev/null +++ b/packages/chain-registry/src/mainnet/vidulum/chain.ts @@ -0,0 +1,102 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://rpc-vidulum-ia.cosmosia.notional.ventures/", + "provider": "Notional" + } + ], + "rest": [ + { + "address": "https://mainnet-lcd.vidulum.app", + "provider": "vidulum" + }, + { + "address": "https://api-vidulum-ia.cosmosia.notional.ventures/", + "provider": "Notional" + }, + { + "address": "https://api-vdl.nodine.id/", + "provider": "Nodine.ID" + } + ], + "grpc": [ + { + "address": "grpc-vidulum-ia.cosmosia.notional.ventures:443", + "provider": "Notional" + } + ] + }, + "explorers": [ + { + "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": "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/vidulum/ibc.ts b/packages/chain-registry/src/mainnet/vidulum/ibc.ts new file mode 100644 index 000000000..ff0214556 --- /dev/null +++ b/packages/chain-registry/src/mainnet/vidulum/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "vidulum", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/vidulum/index.ts b/packages/chain-registry/src/mainnet/vidulum/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/vidulum/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/xpla/assets.ts b/packages/chain-registry/src/mainnet/xpla/assets.ts new file mode 100644 index 000000000..294ada2bf --- /dev/null +++ b/packages/chain-registry/src/mainnet/xpla/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "xpla", + "assets": [ + { + "description": "The native staking token of XPLA.", + "denom_units": [ + { + "denom": "axpla", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/xpla/chain.ts b/packages/chain-registry/src/mainnet/xpla/chain.ts new file mode 100644 index 000000000..5a1a463b4 --- /dev/null +++ b/packages/chain-registry/src/mainnet/xpla/chain.ts @@ -0,0 +1,105 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "axpla" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45.16", + "cosmwasm_version": "0.33.0" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg" + }, + "apis": { + "rpc": [ + { + "address": "https://dimension-rpc.xpla.dev", + "provider": "Holdings" + }, + { + "address": "https://xpla-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + } + ], + "rest": [ + { + "address": "https://dimension-lcd.xpla.io", + "provider": "ZenaAD" + }, + { + "address": "https://dimension-lcd.xpla.dev", + "provider": "Holdings" + }, + { + "address": "https://xpla-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "http://xpla.api.staking-explorer.com", + "provider": "staking-explorer.com" + } + ], + "grpc": [], + "evm-http-jsonrpc": [ + { + "address": "https://dimension-evm-rpc.xpla.dev", + "provider": "Holdings" + } + ] + }, + "explorers": [ + { + "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": "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": [ + { + "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 info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/xpla/ibc.ts b/packages/chain-registry/src/mainnet/xpla/ibc.ts new file mode 100644 index 000000000..264c5f9d9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/xpla/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-137", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1634", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/mainnet/xpla/index.ts b/packages/chain-registry/src/mainnet/xpla/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/mainnet/xpla/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/noncosmos/all.ts b/packages/chain-registry/src/noncosmos/all.ts new file mode 100644 index 000000000..3edf931f1 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/all.ts @@ -0,0 +1,9 @@ +import assets from './assets'; +import ibc from './ibc'; + +export default { + assets, + ibc +}; + +export { assets, ibc }; diff --git a/packages/chain-registry/src/noncosmos/aptos/assets.ts b/packages/chain-registry/src/noncosmos/aptos/assets.ts new file mode 100644 index 000000000..68b10ecff --- /dev/null +++ b/packages/chain-registry/src/noncosmos/aptos/assets.ts @@ -0,0 +1,43 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "0x1::aptos_coin::AptosCoin", + "exponent": 0, + "aliases": [ + "Octa" + ] + }, + { + "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" + }, + "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/apt-dm.svg", + "theme": { + "dark_mode": true + } + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/aptos/index.ts b/packages/chain-registry/src/noncosmos/aptos/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/aptos/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/arbitrum/assets.ts b/packages/chain-registry/src/noncosmos/arbitrum/assets.ts new file mode 100644 index 000000000..07ffa6819 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/arbitrum/assets.ts @@ -0,0 +1,41 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "arbitrum", + "assets": [ + { + "description": "Native token of Arbitrum", + "type_asset": "erc20", + "address": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "denom_units": [ + { + "denom": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "exponent": 0, + "aliases": [ + "arb-wei" + ] + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/arbitrum/index.ts b/packages/chain-registry/src/noncosmos/arbitrum/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/arbitrum/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/assets.ts b/packages/chain-registry/src/noncosmos/assets.ts new file mode 100644 index 000000000..806de097b --- /dev/null +++ b/packages/chain-registry/src/noncosmos/assets.ts @@ -0,0 +1,31 @@ +import { AssetList } from '@chain-registry/types'; + +import * as _picasso from './picasso'; +import * as _composablepolkadot from './composablepolkadot'; +import * as _aptos from './aptos'; +import * as _arbitrum from './arbitrum'; +import * as _avalanche from './avalanche'; +import * as _binancesmartchain from './binancesmartchain'; +import * as _bitcoin from './bitcoin'; +import * as _ethereum from './ethereum'; +import * as _fantom from './fantom'; +import * as _filecoin from './filecoin'; +import * as _kusama from './kusama'; +import * as _moonbeam from './moonbeam'; +import * as _polkadot from './polkadot'; +import * as _polygon from './polygon'; +import * as _solana from './solana'; +import * as _statemine from './statemine'; +import * as _sui from './sui'; +import * as _avalanchetestnet from './avalanchetestnet'; +import * as _binancesmartchaintestnet from './binancesmartchaintestnet'; +import * as _ethereumtestnet from './ethereumtestnet'; +import * as _fantomtestnet from './fantomtestnet'; +import * as _moonbeamtestnet from './moonbeamtestnet'; +import * as _polkadottestnet from './polkadottestnet'; +import * as _polygontestnet from './polygontestnet'; +import * as _ojotestnet from './ojotestnet' + +const assets: AssetList[] = [_picasso.assets,_composablepolkadot.assets,_aptos.assets,_arbitrum.assets,_avalanche.assets,_binancesmartchain.assets,_bitcoin.assets,_ethereum.assets,_fantom.assets,_filecoin.assets,_kusama.assets,_moonbeam.assets,_polkadot.assets,_polygon.assets,_solana.assets,_statemine.assets,_sui.assets,_avalanchetestnet.assets,_binancesmartchaintestnet.assets,_ethereumtestnet.assets,_fantomtestnet.assets,_moonbeamtestnet.assets,_polkadottestnet.assets,_polygontestnet.assets,_ojotestnet.assets]; + +export default assets; diff --git a/packages/chain-registry/src/noncosmos/avalanche/assets.ts b/packages/chain-registry/src/noncosmos/avalanche/assets.ts new file mode 100644 index 000000000..ecf1c5b1f --- /dev/null +++ b/packages/chain-registry/src/noncosmos/avalanche/assets.ts @@ -0,0 +1,278 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "wavax", + "exponent": 18 + } + ], + "base": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", + "name": "Wrapped AVAX", + "display": "wavax", + "symbol": "WAVAX", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "avalanche", + "base_denom": "wei" + }, + "provider": "Avalanche" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + }, + "coingecko_id": "wrapped-avax", + "images": [ + { + "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": [ + { + "denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "base": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Circle" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "coingecko_id": "usd-coin", + "images": [ + { + "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": [ + { + "denom": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", + "exponent": 0, + "aliases": [ + "dai-wei" + ] + }, + { + "denom": "axldai", + "exponent": 18 + } + ], + "base": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", + "name": "Axelar Wrapped DAI", + "display": "axldai", + "symbol": "axlDAI", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "dai-wei" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + } + ] + }, + { + "description": "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": "axlfrax", + "exponent": 18 + } + ], + "base": "0x4914886dbb8aad7a7456d471eaab10b06d42348d", + "name": "Axelar Wrapped Frax", + "display": "axlfrax", + "symbol": "axlFRAX", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "frax-wei" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } + ] + }, + { + "description": "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": "axlusdc", + "exponent": 6 + } + ], + "base": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec", + "name": "Axelar Wrapped USDC", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "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": "axlusdt", + "exponent": 6 + } + ], + "base": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66", + "name": "Axelar Wrapped USDT", + "display": "axlusdt", + "symbol": "axlUSDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdt" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/avalanche/index.ts b/packages/chain-registry/src/noncosmos/avalanche/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/avalanche/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/avalanchetestnet/assets.ts b/packages/chain-registry/src/noncosmos/avalanchetestnet/assets.ts new file mode 100644 index 000000000..2289fc636 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/avalanchetestnet/assets.ts @@ -0,0 +1,117 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "wavax", + "exponent": 18 + } + ], + "base": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c", + "name": "Wrapped AVAX", + "display": "wavax", + "symbol": "WAVAX", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "avalanchetestnet", + "base_denom": "wei" + }, + "provider": "Avalanche" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + }, + "coingecko_id": "wrapped-avax", + "images": [ + { + "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": [ + { + "denom": "0x57F1c63497AEe0bE305B8852b354CEc793da43bB", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "axlusdc", + "exponent": 6 + } + ], + "base": "0x57F1c63497AEe0bE305B8852b354CEc793da43bB", + "name": "Axelar Wrapped USDC", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uusdc" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/avalanchetestnet/index.ts b/packages/chain-registry/src/noncosmos/avalanchetestnet/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/avalanchetestnet/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/binancesmartchain/assets.ts b/packages/chain-registry/src/noncosmos/binancesmartchain/assets.ts new file mode 100644 index 000000000..c9143dedd --- /dev/null +++ b/packages/chain-registry/src/noncosmos/binancesmartchain/assets.ts @@ -0,0 +1,181 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "wbnb", + "exponent": 18 + } + ], + "base": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "wei" + }, + "chain": { + "contract": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c" + }, + "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" + }, + "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" + } + ] + }, + { + "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": "busd", + "exponent": 18 + } + ], + "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" + }, + "provider": "Binance" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + } + ] + }, + { + "description": "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": "usdc", + "exponent": 18 + } + ], + "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" + }, + "provider": "Binance" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "PURSE Token", + "denom_units": [ + { + "denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/binancesmartchain/index.ts b/packages/chain-registry/src/noncosmos/binancesmartchain/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/binancesmartchain/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/binancesmartchaintestnet/assets.ts b/packages/chain-registry/src/noncosmos/binancesmartchaintestnet/assets.ts new file mode 100644 index 000000000..07e2b46d3 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/binancesmartchaintestnet/assets.ts @@ -0,0 +1,119 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "wbnb", + "exponent": 18 + } + ], + "type_asset": "erc20", + "address": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd", + "base": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "binancesmartchaintestnet", + "base_denom": "wei" + }, + "chain": { + "contract": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" + }, + "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" + }, + "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" + } + ] + }, + { + "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": "axlusdc", + "exponent": 6 + } + ], + "base": "0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2", + "name": "Axelar Wrapped USDC", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uusdc" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/binancesmartchaintestnet/index.ts b/packages/chain-registry/src/noncosmos/binancesmartchaintestnet/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/binancesmartchaintestnet/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/bitcoin/assets.ts b/packages/chain-registry/src/noncosmos/bitcoin/assets.ts new file mode 100644 index 000000000..ff3237746 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/bitcoin/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "bitcoin", + "assets": [ + { + "description": "Bitcoin", + "denom_units": [ + { + "denom": "sat", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "bitcoin", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/bitcoin/index.ts b/packages/chain-registry/src/noncosmos/bitcoin/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/bitcoin/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/composablepolkadot/assets.ts b/packages/chain-registry/src/noncosmos/composablepolkadot/assets.ts new file mode 100644 index 000000000..55a125b15 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/composablepolkadot/assets.ts @@ -0,0 +1,46 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "composablepolkadot", + "assets": [ + { + "denom_units": [ + { + "denom": "79228162514264337593543950342", + "exponent": 0 + }, + { + "denom": "dot", + "exponent": 10 + } + ], + "base": "79228162514264337593543950342", + "name": "Polkadot", + "display": "dot", + "symbol": "DOT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "polkadot", + "base_denom": "Planck" + }, + "provider": "Polkadot Relay" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "polkadot", + "base_denom": "Planck" + }, + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/composablepolkadot/ibc.ts b/packages/chain-registry/src/noncosmos/composablepolkadot/ibc.ts new file mode 100644 index 000000000..ac211b33f --- /dev/null +++ b/packages/chain-registry/src/noncosmos/composablepolkadot/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "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 + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/composablepolkadot/ibc_chain1.ts b/packages/chain-registry/src/noncosmos/composablepolkadot/ibc_chain1.ts new file mode 100644 index 000000000..ac211b33f --- /dev/null +++ b/packages/chain-registry/src/noncosmos/composablepolkadot/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composablepolkadot", + "client_id": "10-grandpa-28", + "connection_id": "connection-23" + }, + "chain_2": { + "chain_name": "picasso", + "client_id": "10-grandpa-28", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "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 + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/composablepolkadot/index.ts b/packages/chain-registry/src/noncosmos/composablepolkadot/index.ts new file mode 100644 index 000000000..7a5b18172 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/composablepolkadot/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/noncosmos/ethereum/assets.ts b/packages/chain-registry/src/noncosmos/ethereum/assets.ts new file mode 100644 index 000000000..a92e0f84d --- /dev/null +++ b/packages/chain-registry/src/noncosmos/ethereum/assets.ts @@ -0,0 +1,1134 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "denom": "gwei", + "exponent": 9 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "coingecko_id": "aave", + "images": [ + { + "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": [ + { + "denom": "0x4d224452801aced8b2f0aebe155379bb5d594381", + "exponent": 0, + "aliases": [ + "ape-wei" + ] + }, + { + "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" + }, + "coingecko_id": "apecoin", + "images": [ + { + "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": [ + { + "denom": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", + "exponent": 0, + "aliases": [ + "axs-wei" + ] + }, + { + "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" + }, + "coingecko_id": "axie-infinity", + "images": [ + { + "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": [ + { + "denom": "0x6b175474e89094c44da98b954eedeac495271d0f", + "exponent": 0, + "aliases": [ + "dai-wei" + ] + }, + { + "denom": "dai", + "exponent": 18 + } + ], + "base": "0x6b175474e89094c44da98b954eedeac495271d0f", + "name": "Dai Stablecoin", + "display": "dai", + "symbol": "DAI", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "MakerDAO" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + }, + "coingecko_id": "dai", + "images": [ + { + "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": [ + { + "denom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "exponent": 0, + "aliases": [ + "sdai-wei" + ] + }, + { + "denom": "sdai", + "exponent": 18 + } + ], + "base": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "name": "Savings Dai", + "display": "sdai", + "symbol": "sDAI", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + "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" + }, + "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" + } + ] + }, + { + "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": "frax", + "exponent": 18 + } + ], + "base": "0x853d955acef822db058eb8505911ed77f175b99e", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Frax Protocol" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + }, + "coingecko_id": "frax", + "images": [ + { + "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": [ + { + "denom": "0x514910771af9ca656af840dff83e8264ecf986ca", + "exponent": 0, + "aliases": [ + "link-wei" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "coingecko_id": "maker", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + } + ] + }, + { + "description": "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + "type_asset": "erc20", + "address": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "denom_units": [ + { + "denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "exponent": 0, + "aliases": [ + "rai-wei" + ] + }, + { + "denom": "rai", + "exponent": 18 + } + ], + "base": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "name": "Rai Reflex Index", + "display": "rai", + "symbol": "RAI", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "RAI Finance" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + }, + "coingecko_id": "rai", + "images": [ + { + "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": [ + { + "denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "exponent": 0, + "aliases": [ + "shib-wei" + ] + }, + { + "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" + }, + "coingecko_id": "shiba-inu", + "images": [ + { + "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": [ + { + "denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", + "exponent": 0, + "aliases": [ + "steth-wei" + ] + }, + { + "denom": "steth", + "exponent": 18 + } + ], + "base": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Lido" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + }, + "coingecko_id": "staked-ether", + "images": [ + { + "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": [ + { + "denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "exponent": 0, + "aliases": [ + "wsteth-wei" + ] + }, + { + "denom": "wsteth", + "exponent": 18 + } + ], + "base": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "name": "Wrapped Lido Staked Ether", + "display": "wsteth", + "symbol": "wstETH", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" + }, + "provider": "Lido" + } + ], + "coingecko_id": "wrapped-steth", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + } + ] + }, + { + "description": "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": "frxeth", + "exponent": 18 + } + ], + "base": "0x5e8422345238f34275888049021821e8e08caa1f", + "name": "Frax Ether", + "display": "frxeth", + "symbol": "frxETH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Frax" + } + ], + "coingecko_id": "frax-ether", + "images": [ + { + "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" + } + ], + "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": [ + { + "denom": "0xac3e018457b222d93114458476f3e3416abbe38f", + "exponent": 0, + "aliases": [ + "sfrxeth-wei" + ] + }, + { + "denom": "sfrxeth", + "exponent": 18 + } + ], + "base": "0xac3e018457b222d93114458476f3e3416abbe38f", + "name": "Staked Frax Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f" + }, + "provider": "Frax" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" + }, + "coingecko_id": "staked-frax-ether", + "images": [ + { + "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": [ + { + "denom": "0xae78736cd615f374d3085123a210448e74fc6393", + "exponent": 0, + "aliases": [ + "reth-wei" + ] + }, + { + "denom": "reth", + "exponent": 18 + } + ], + "base": "0xae78736cd615f374d3085123a210448e74fc6393", + "name": "Rocket Pool Ether", + "display": "reth", + "symbol": "rETH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Rocket Pool" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" + }, + "coingecko_id": "rocket-pool-eth", + "images": [ + { + "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": [ + { + "denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "exponent": 0, + "aliases": [ + "cbeth-wei" + ] + }, + { + "denom": "cbeth", + "exponent": 18 + } + ], + "base": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "name": "Coinbase Wrapped Staked ETH", + "display": "cbeth", + "symbol": "cbETH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Coinbase" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" + }, + "coingecko_id": "coinbase-wrapped-staked-eth", + "images": [ + { + "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": [ + { + "denom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "exponent": 0, + "aliases": [ + "uni-wei" + ] + }, + { + "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" + }, + "coingecko_id": "uniswap", + "images": [ + { + "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": [ + { + "denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "base": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Circle" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "coingecko_id": "usd-coin", + "images": [ + { + "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": [ + { + "denom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "exponent": 0, + "aliases": [ + "uusdt" + ] + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Tether" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + }, + "coingecko_id": "tether", + "images": [ + { + "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": [ + { + "denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] + }, + { + "denom": "wbtc", + "exponent": 8 + } + ], + "base": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "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" + }, + "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" + } + ] + }, + { + "description": "wETH is 'wrapped ETH'", + "type_asset": "erc20", + "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "denom_units": [ + { + "denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "exponent": 0, + "aliases": [ + "weth-wei" + ] + }, + { + "denom": "weth", + "exponent": 18 + } + ], + "base": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Ethereum" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + }, + "coingecko_id": "weth", + "images": [ + { + "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": [ + { + "denom": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18", + "exponent": 0, + "aliases": [ + "xcn-wei" + ] + }, + { + "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" + }, + "coingecko_id": "chain-2", + "images": [ + { + "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": [ + { + "denom": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "exponent": 0, + "aliases": [ + "busd-wei" + ] + }, + { + "denom": "busd", + "exponent": 18 + } + ], + "base": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "name": "Binance USD", + "display": "busd", + "symbol": "BUSD", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "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" + }, + "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" + } + ] + }, + { + "description": "", + "type_asset": "erc20", + "address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "denom_units": [ + { + "denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "exponent": 0, + "aliases": [ + "pepe-wei" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "YieldETH", + "exponent": 18 + } + ], + "base": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec", + "name": "Real Yield ETH", + "display": "YieldETH", + "symbol": "YieldETH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "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" + }, + "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" + } + ] + }, + { + "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": "tBTC", + "exponent": 18, + "aliases": [] + } + ], + "type_asset": "erc20", + "address": "0x18084fba666a33d37592fa2633fd49a74dd93a88", + "base": "0x18084fba666a33d37592fa2633fd49a74dd93a88", + "display": "tBTC", + "name": "tBTC v2", + "symbol": "tBTC", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Threshold Network" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg" + }, + "coingecko_id": "tbtc", + "images": [ + { + "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": [ + { + "denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "exponent": 0, + "aliases": [] + }, + { + "denom": "pstake", + "exponent": 18, + "aliases": [] + } + ], + "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" + }, + "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" + }, + "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" + } + ] + }, + { + "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": "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" + }, + "coingecko_id": "occamfi", + "images": [ + { + "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": [ + { + "denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "exponent": 0, + "aliases": [] + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/ethereum/index.ts b/packages/chain-registry/src/noncosmos/ethereum/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/ethereum/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/ethereumtestnet/assets.ts b/packages/chain-registry/src/noncosmos/ethereumtestnet/assets.ts new file mode 100644 index 000000000..677af6347 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/ethereumtestnet/assets.ts @@ -0,0 +1,123 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "ethereumtestnet", + "assets": [ + { + "description": "Ether is the native fee token of the Ethereum network.", + "denom_units": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "denom": "gwei", + "exponent": 9 + }, + { + "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" + }, + "coingecko_id": "ethereum", + "images": [ + { + "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": [ + { + "denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", + "exponent": 0, + "aliases": [ + "weth-wei" + ] + }, + { + "denom": "weth", + "exponent": 18 + } + ], + "base": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "wei" + }, + "provider": "Ethereum" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + }, + "coingecko_id": "weth", + "images": [ + { + "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": [ + { + "denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A", + "exponent": 0, + "aliases": [ + "uausdc" + ] + }, + { + "denom": "ausdc", + "exponent": 6 + } + ], + "base": "0x254d06f33bDc5b8ee05b2ea472107E300226659A", + "name": "USD Coin", + "display": "ausdc", + "symbol": "aUSDC", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Circle" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "coingecko_id": "usd-coin", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/ethereumtestnet/index.ts b/packages/chain-registry/src/noncosmos/ethereumtestnet/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/ethereumtestnet/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/fantom/assets.ts b/packages/chain-registry/src/noncosmos/fantom/assets.ts new file mode 100644 index 000000000..6a57efcb4 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/fantom/assets.ts @@ -0,0 +1,82 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "ERC20 wrapped version of FTM", + "type_asset": "erc20", + "address": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "denom_units": [ + { + "denom": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "exponent": 0 + }, + { + "denom": "wftm", + "exponent": 18 + } + ], + "base": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "name": "Wrapped Fantom", + "display": "wftm", + "symbol": "WFTM", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "fantom", + "base_denom": "wei" + }, + "chain": { + "contract": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + }, + "provider": "Fantom" + } + ], + "images": [ + { + "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" + } + ], + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/fantom/index.ts b/packages/chain-registry/src/noncosmos/fantom/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/fantom/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/fantomtestnet/assets.ts b/packages/chain-registry/src/noncosmos/fantomtestnet/assets.ts new file mode 100644 index 000000000..c359b4235 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/fantomtestnet/assets.ts @@ -0,0 +1,77 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08", + "exponent": 0 + }, + { + "denom": "wftm", + "exponent": 18 + } + ], + "base": "0x812666209b90344Ec8e528375298ab9045c2Bd08", + "name": "Wrapped Fantom", + "display": "wftm", + "symbol": "WFTM", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "fantomtestnet", + "base_denom": "wei" + }, + "chain": { + "contract": "0x812666209b90344Ec8e528375298ab9045c2Bd08" + }, + "provider": "Fantom" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "fantomtestnet", + "base_denom": "wei" + }, + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/fantomtestnet/index.ts b/packages/chain-registry/src/noncosmos/fantomtestnet/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/fantomtestnet/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/filecoin/assets.ts b/packages/chain-registry/src/noncosmos/filecoin/assets.ts new file mode 100644 index 000000000..163b7b773 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/filecoin/assets.ts @@ -0,0 +1,81 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "attoFIL", + "exponent": 0, + "aliases": [ + "fil-wei" + ] + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Wrapped Filecoin, ERC20 Wrapper over Filecoin", + "address": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", + "denom_units": [ + { + "denom": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", + "exponent": 0, + "aliases": [ + "wfil-wei" + ] + }, + { + "denom": "wfil", + "exponent": 18 + } + ], + "type_asset": "erc20", + "base": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", + "name": "Wrapped FIL", + "display": "wfil", + "symbol": "WFIL", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "filecoin", + "base_denom": "attoFIL" + }, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/filecoin/index.ts b/packages/chain-registry/src/noncosmos/filecoin/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/filecoin/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/ibc.ts b/packages/chain-registry/src/noncosmos/ibc.ts new file mode 100644 index 000000000..bbbb5cf62 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/ibc.ts @@ -0,0 +1,7 @@ +import { IBCInfo } from '@chain-registry/types'; + +import * as _composablepolkadot from './composablepolkadot' + +const ibc: IBCInfo[] = [..._composablepolkadot.ibc_chain1]; + +export default ibc; diff --git a/packages/chain-registry/src/noncosmos/index.ts b/packages/chain-registry/src/noncosmos/index.ts new file mode 100644 index 000000000..f87a2ef0b --- /dev/null +++ b/packages/chain-registry/src/noncosmos/index.ts @@ -0,0 +1,25 @@ +export * as picasso from './picasso'; +export * as composablepolkadot from './composablepolkadot'; +export * as aptos from './aptos'; +export * as arbitrum from './arbitrum'; +export * as avalanche from './avalanche'; +export * as binancesmartchain from './binancesmartchain'; +export * as bitcoin from './bitcoin'; +export * as ethereum from './ethereum'; +export * as fantom from './fantom'; +export * as filecoin from './filecoin'; +export * as kusama from './kusama'; +export * as moonbeam from './moonbeam'; +export * as polkadot from './polkadot'; +export * as polygon from './polygon'; +export * as solana from './solana'; +export * as statemine from './statemine'; +export * as sui from './sui'; +export * as avalanchetestnet from './avalanchetestnet'; +export * as binancesmartchaintestnet from './binancesmartchaintestnet'; +export * as ethereumtestnet from './ethereumtestnet'; +export * as fantomtestnet from './fantomtestnet'; +export * as moonbeamtestnet from './moonbeamtestnet'; +export * as polkadottestnet from './polkadottestnet'; +export * as polygontestnet from './polygontestnet'; +export * as ojotestnet from './ojotestnet' \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/kusama/assets.ts b/packages/chain-registry/src/noncosmos/kusama/assets.ts new file mode 100644 index 000000000..fb5dcae44 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/kusama/assets.ts @@ -0,0 +1,52 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "kusama", + "assets": [ + { + "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", + "denom_units": [ + { + "denom": "Planck", + "exponent": 0 + }, + { + "denom": "Point", + "exponent": 3 + }, + { + "denom": "uKSM", + "exponent": 3, + "aliases": [ + "MicroKSM" + ] + }, + { + "denom": "uKSM", + "exponent": 3, + "aliases": [ + "MilliKSM" + ] + }, + { + "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" + }, + "coingecko_id": "kusama", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/kusama/index.ts b/packages/chain-registry/src/noncosmos/kusama/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/kusama/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/moonbeam/assets.ts b/packages/chain-registry/src/noncosmos/moonbeam/assets.ts new file mode 100644 index 000000000..84c531e00 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/moonbeam/assets.ts @@ -0,0 +1,283 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "Wei", + "exponent": 0, + "aliases": [ + "wei" + ] + }, + { + "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" + }, + "coingecko_id": "moonbeam", + "images": [ + { + "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": [ + { + "denom": "0xacc15dc74880c9944775448304b263d191c6077f", + "exponent": 0, + "aliases": [ + "wglmr-wei" + ] + }, + { + "denom": "wglmr", + "exponent": 18 + } + ], + "base": "0xacc15dc74880c9944775448304b263d191c6077f", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "moonbeam", + "base_denom": "Wei" + }, + "provider": "Moonbeam" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + }, + "coingecko_id": "wrapped-moonbeam", + "images": [ + { + "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": [ + { + "denom": "0xffffffff1fcacbd218edc0eba20fc2308c778080", + "exponent": 0, + "aliases": [ + "dot-planck" + ] + }, + { + "denom": "xcdot", + "exponent": 10 + } + ], + "base": "0xffffffff1fcacbd218edc0eba20fc2308c778080", + "name": "Wrapped Polkadot", + "display": "xcdot", + "symbol": "xcDOT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "polkadot", + "base_denom": "Planck" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + } + ] + }, + { + "description": "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": "axldai", + "exponent": 18 + } + ], + "base": "0x14df360966a1c4582d2b18edbdae432ea0a27575", + "name": "Axelar Wrapped Dai Stablecoin", + "display": "axldai", + "symbol": "axlDAI", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "dai-wei" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + } + ] + }, + { + "description": "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": "axlfrax", + "exponent": 18 + } + ], + "base": "0x61C82805453a989E99B544DFB7031902e9bac448", + "name": "Axelar Wrapped Frax", + "display": "axlfrax", + "symbol": "axlFRAX", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "frax-wei" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } + ] + }, + { + "description": "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": "axlusdc", + "exponent": 6 + } + ], + "base": "0xca01a1d0993565291051daff390892518acfad3a", + "name": "Axelar Wrapped USD Coin", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "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": "axlusdt", + "exponent": 6 + } + ], + "base": "0xdfd74af792bc6d45d1803f425ce62dd16f8ae038", + "name": "Axelar Wrapped Tether USD", + "display": "axlusdt", + "symbol": "axlUSDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdt" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/moonbeam/index.ts b/packages/chain-registry/src/noncosmos/moonbeam/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/moonbeam/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/moonbeamtestnet/assets.ts b/packages/chain-registry/src/noncosmos/moonbeamtestnet/assets.ts new file mode 100644 index 000000000..65cf1eba0 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/moonbeamtestnet/assets.ts @@ -0,0 +1,121 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "Wei", + "exponent": 0, + "aliases": [ + "wei" + ] + }, + { + "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" + }, + "coingecko_id": "moonbeam", + "images": [ + { + "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": [ + { + "denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715", + "exponent": 0, + "aliases": [ + "wglmr-wei" + ] + }, + { + "denom": "wglmr", + "exponent": 18 + } + ], + "base": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "moonbeamtestnet", + "base_denom": "Wei" + }, + "provider": "Moonbeam" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + }, + "coingecko_id": "wrapped-moonbeam", + "images": [ + { + "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": [ + { + "denom": "0xD1633F7Fb3d716643125d6415d4177bC36b7186b", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "axlusdc", + "exponent": 6 + } + ], + "base": "0xD1633F7Fb3d716643125d6415d4177bC36b7186b", + "name": "Axelar Wrapped USD Coin", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uusdc" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/moonbeamtestnet/index.ts b/packages/chain-registry/src/noncosmos/moonbeamtestnet/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/moonbeamtestnet/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/ojotestnet/assets.ts b/packages/chain-registry/src/noncosmos/ojotestnet/assets.ts new file mode 100644 index 000000000..a38f14935 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/ojotestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "ojotestnet", + "assets": [ + { + "description": "The native token of Ojo Network", + "denom_units": [ + { + "denom": "uojo", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ojotestnet/images/ojo.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/ojotestnet/index.ts b/packages/chain-registry/src/noncosmos/ojotestnet/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/ojotestnet/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/picasso/assets.ts b/packages/chain-registry/src/noncosmos/picasso/assets.ts new file mode 100644 index 000000000..af8a73f78 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/picasso/assets.ts @@ -0,0 +1,147 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "picasso", + "assets": [ + { + "description": "The native staking and governance token of Picasso.", + "denom_units": [ + { + "denom": "ppica", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "4", + "exponent": 0 + }, + { + "denom": "ksm", + "exponent": 12 + } + ], + "base": "4", + "name": "Kusama", + "display": "ksm", + "symbol": "KSM", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "kusama", + "base_denom": "Planck" + }, + "provider": "Kusama Parachain" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "kusama", + "base_denom": "Planck" + }, + "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": "79228162514264337593543950342", + "exponent": 0 + }, + { + "denom": "dot", + "exponent": 10 + } + ], + "base": "79228162514264337593543950342", + "name": "Polkadot", + "display": "dot", + "symbol": "DOT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "composablepolkadot", + "base_denom": "79228162514264337593543950342", + "channel_id": "channel-15" + }, + "chain": { + "channel_id": "channel-15", + "path": "transfer/channel-15/79228162514264337593543950342" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "composablepolkadot", + "base_denom": "79228162514264337593543950342" + }, + "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": "130", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "130", + "name": "Statemine", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "statemine", + "base_denom": "130" + }, + "provider": "Kusama Parachain" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "statemine", + "base_denom": "130" + } + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/picasso/ibc.ts b/packages/chain-registry/src/noncosmos/picasso/ibc.ts new file mode 100644 index 000000000..66ee60ab6 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/picasso/ibc.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "picasso", + "client_id": "10-grandpa-28", + "connection_id": "connection-23" + }, + "channels": [ + { + "chain_1": { + "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 + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/picasso/index.ts b/packages/chain-registry/src/noncosmos/picasso/index.ts new file mode 100644 index 000000000..839d65776 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/picasso/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _ibc from './ibc'; + +export const assets = _assets; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/noncosmos/polkadot/assets.ts b/packages/chain-registry/src/noncosmos/polkadot/assets.ts new file mode 100644 index 000000000..9e1f6d134 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/polkadot/assets.ts @@ -0,0 +1,71 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "polkadot", + "assets": [ + { + "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", + "denom_units": [ + { + "denom": "Planck", + "exponent": 0, + "aliases": [ + "planck" + ] + }, + { + "denom": "uDOT", + "exponent": 4, + "aliases": [ + "udot", + "microdot", + "Microdot" + ] + }, + { + "denom": "mDOT", + "exponent": 7, + "aliases": [ + "millidot", + "Millidot" + ] + }, + { + "denom": "DOT", + "exponent": 10, + "aliases": [ + "dot", + "New DOT", + "new dot" + ] + }, + { + "denom": "DOT (old)", + "exponent": 12 + }, + { + "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" + }, + "coingecko_id": "polkadot", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/polkadot/index.ts b/packages/chain-registry/src/noncosmos/polkadot/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/polkadot/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/polkadottestnet/assets.ts b/packages/chain-registry/src/noncosmos/polkadottestnet/assets.ts new file mode 100644 index 000000000..f6fad379a --- /dev/null +++ b/packages/chain-registry/src/noncosmos/polkadottestnet/assets.ts @@ -0,0 +1,71 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "polkadottestnet", + "assets": [ + { + "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", + "denom_units": [ + { + "denom": "Planck", + "exponent": 0, + "aliases": [ + "planck" + ] + }, + { + "denom": "uDOT", + "exponent": 4, + "aliases": [ + "udot", + "microdot", + "Microdot" + ] + }, + { + "denom": "mDOT", + "exponent": 7, + "aliases": [ + "millidot", + "Millidot" + ] + }, + { + "denom": "DOT", + "exponent": 10, + "aliases": [ + "dot", + "New DOT", + "new dot" + ] + }, + { + "denom": "DOT (old)", + "exponent": 12 + }, + { + "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" + }, + "coingecko_id": "polkadot", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/polkadottestnet/index.ts b/packages/chain-registry/src/noncosmos/polkadottestnet/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/polkadottestnet/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/polygon/assets.ts b/packages/chain-registry/src/noncosmos/polygon/assets.ts new file mode 100644 index 000000000..0dc413cc3 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/polygon/assets.ts @@ -0,0 +1,328 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "wmatic", + "exponent": 18, + "aliases": [ + "polygon" + ] + } + ], + "base": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "polygon", + "base_denom": "wei" + }, + "provider": "Polygon" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + }, + "coingecko_id": "wmatic", + "images": [ + { + "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": [ + { + "denom": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "base": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Circle" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "coingecko_id": "usd-coin", + "images": [ + { + "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": [ + { + "denom": "0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9", + "exponent": 0, + "aliases": [ + "dai-wei" + ] + }, + { + "denom": "axldai", + "exponent": 18 + } + ], + "base": "0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9", + "name": "Axelar Wrapped Dai Stablecoin", + "display": "axldai", + "symbol": "axlDAI", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "dai-wei" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + } + ] + }, + { + "description": "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": "axlfrax", + "exponent": 18 + } + ], + "base": "0x53adc464b488be8c5d7269b9abbce8ba74195c3a", + "name": "Axelar Wrapped Frax", + "display": "axlfrax", + "symbol": "axlFRAX", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "frax-wei" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } + ] + }, + { + "description": "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": "axlusdc", + "exponent": 6 + } + ], + "base": "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed", + "name": "Axelar Wrapped USD Coin", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "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": "axlusdt", + "exponent": 6 + } + ], + "base": "0xceed2671d8634e3ee65000edbbee66139b132fbf", + "name": "Axelar Wrapped Tether USD", + "display": "axlusdt", + "symbol": "axlUSDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdt" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/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": [ + { + "denom": "0x9ceE70895726B0ea14E6019C961dAf32222a7C2f", + "exponent": 0, + "aliases": [] + }, + { + "denom": "page", + "exponent": 8 + } + ], + "base": "0x9ceE70895726B0ea14E6019C961dAf32222a7C2f", + "name": "Page", + "display": "page", + "symbol": "PAGE", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" + }, + "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" + }, + "images": [ + { + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/polygon/index.ts b/packages/chain-registry/src/noncosmos/polygon/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/polygon/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/polygontestnet/assets.ts b/packages/chain-registry/src/noncosmos/polygontestnet/assets.ts new file mode 100644 index 000000000..bed00fc42 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/polygontestnet/assets.ts @@ -0,0 +1,123 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "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": "wmatic", + "exponent": 18, + "aliases": [ + "polygon" + ] + } + ], + "base": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "polygontestnet", + "base_denom": "wei" + }, + "provider": "Polygon" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + }, + "coingecko_id": "wmatic", + "images": [ + { + "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": [ + { + "denom": "0x2c852e740B62308c46DD29B982FBb650D063Bd07", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "axlusdc", + "exponent": 6 + } + ], + "base": "0x2c852e740B62308c46DD29B982FBb650D063Bd07", + "name": "Axelar Wrapped USD Coin", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uusdc" + }, + "provider": "Axelar" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/polygontestnet/index.ts b/packages/chain-registry/src/noncosmos/polygontestnet/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/polygontestnet/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/solana/assets.ts b/packages/chain-registry/src/noncosmos/solana/assets.ts new file mode 100644 index 000000000..eea6f6ee0 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/solana/assets.ts @@ -0,0 +1,128 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "solana", + "assets": [ + { + "description": "Solana (SOL) is the native asset of the Solana blockchain.", + "denom_units": [ + { + "denom": "Lamport", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "solana", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + } + ] + }, + { + "description": "", + "type_asset": "erc20", + "address": "So11111111111111111111111111111111111111112", + "denom_units": [ + { + "denom": "So11111111111111111111111111111111111111112", + "exponent": 0 + }, + { + "denom": "wsol", + "exponent": 9 + } + ], + "base": "So11111111111111111111111111111111111111112", + "name": "Wrapped SOL", + "display": "wsol", + "symbol": "WSOL", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Solana" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + }, + "coingecko_id": "wrapped-solana", + "images": [ + { + "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": [ + { + "denom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "bonk", + "images": [ + { + "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": [ + { + "denom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "exponent": 0 + }, + { + "denom": "pyth", + "exponent": 6 + } + ], + "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" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/solana/index.ts b/packages/chain-registry/src/noncosmos/solana/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/solana/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/statemine/assets.ts b/packages/chain-registry/src/noncosmos/statemine/assets.ts new file mode 100644 index 000000000..81de6f75a --- /dev/null +++ b/packages/chain-registry/src/noncosmos/statemine/assets.ts @@ -0,0 +1,25 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "statemine", + "assets": [ + { + "denom_units": [ + { + "denom": "130", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "130", + "name": "Statemine", + "display": "usdt", + "symbol": "USDT", + "coingecko_id": "tether" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/statemine/index.ts b/packages/chain-registry/src/noncosmos/statemine/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/statemine/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/noncosmos/sui/assets.ts b/packages/chain-registry/src/noncosmos/sui/assets.ts new file mode 100644 index 000000000..26839495a --- /dev/null +++ b/packages/chain-registry/src/noncosmos/sui/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "sui", + "assets": [ + { + "description": "Sui’s native asset is called SUI.", + "denom_units": [ + { + "denom": "0x2::sui::SUI", + "exponent": 0, + "aliases": [ + "MIST" + ] + }, + { + "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" + }, + "coingecko_id": "sui", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/noncosmos/sui/index.ts b/packages/chain-registry/src/noncosmos/sui/index.ts new file mode 100644 index 000000000..fa2cbf115 --- /dev/null +++ b/packages/chain-registry/src/noncosmos/sui/index.ts @@ -0,0 +1,3 @@ +import _assets from './assets'; + +export const assets = _assets; diff --git a/packages/chain-registry/src/testnet/akashtestnet/assets.ts b/packages/chain-registry/src/testnet/akashtestnet/assets.ts new file mode 100644 index 000000000..a43a7b81c --- /dev/null +++ b/packages/chain-registry/src/testnet/akashtestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uakt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/akashtestnet/chain.ts b/packages/chain-registry/src/testnet/akashtestnet/chain.ts new file mode 100644 index 000000000..cb09fef42 --- /dev/null +++ b/packages/chain-registry/src/testnet/akashtestnet/chain.ts @@ -0,0 +1,71 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uakt" + } + ] + }, + "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": [ + { + "address": "https://rpc.sandbox-01.aksh.pw:443", + "provider": "akash" + } + ], + "rest": [ + { + "address": "https://api.sandbox-01.aksh.pw:443", + "provider": "akash" + } + ], + "grpc": [ + { + "address": "grpc.sandbox-01.aksh.pw:9090", + "provider": "akash" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://explorer.sandbox-01.aksh.pw/akash", + "tx_page": "https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/akashtestnet/ibc.ts b/packages/chain-registry/src/testnet/akashtestnet/ibc.ts new file mode 100644 index 000000000..14aa83dce --- /dev/null +++ b/packages/chain-registry/src/testnet/akashtestnet/ibc.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1271", + "connection_id": "connection-1171" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4171", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/akashtestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/akashtestnet/ibc_chain1.ts new file mode 100644 index 000000000..14aa83dce --- /dev/null +++ b/packages/chain-registry/src/testnet/akashtestnet/ibc_chain1.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akashtestnet", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "archwaytestnet", + "client_id": "07-tendermint-45", + "connection_id": "connection-39" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1271", + "connection_id": "connection-1171" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4171", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/akashtestnet/index.ts b/packages/chain-registry/src/testnet/akashtestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/akashtestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/all.ts b/packages/chain-registry/src/testnet/all.ts new file mode 100644 index 000000000..adbcd1018 --- /dev/null +++ b/packages/chain-registry/src/testnet/all.ts @@ -0,0 +1,16 @@ +import assets from './assets'; +import chains from './chains'; +import ibc from './ibc'; + + + export default { + assets, + chains, + ibc, + }; + + export { + assets, + chains, + ibc, + }; diff --git a/packages/chain-registry/src/testnet/archwaytestnet/assets.ts b/packages/chain-registry/src/testnet/archwaytestnet/assets.ts new file mode 100644 index 000000000..8ecfe06b4 --- /dev/null +++ b/packages/chain-registry/src/testnet/archwaytestnet/assets.ts @@ -0,0 +1,29 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "archwaytestnet", + "assets": [ + { + "description": "The native token of Archway testnetwork", + "denom_units": [ + { + "denom": "aconst", + "exponent": 0 + }, + { + "denom": "uconst", + "exponent": 12 + }, + { + "denom": "const", + "exponent": 18 + } + ], + "base": "aconst", + "name": "Archway", + "display": "const", + "symbol": "CONST" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/archwaytestnet/chain.ts b/packages/chain-registry/src/testnet/archwaytestnet/chain.ts new file mode 100644 index 000000000..0d54ec489 --- /dev/null +++ b/packages/chain-registry/src/testnet/archwaytestnet/chain.ts @@ -0,0 +1,71 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "aconst" + } + ] + }, + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.constantine.archway.tech", + "provider": "Archway" + }, + { + "address": "https://archway-testnet-rpc.polkachu.com", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://api.constantine.archway.tech", + "provider": "Archway" + } + ] + }, + "explorers": [ + { + "kind": "archwayscan", + "url": "https://testnet.archway.explorers.guru", + "tx_page": "https://testnet.archway.explorers.guru/transaction/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/archwaytestnet/ibc.ts b/packages/chain-registry/src/testnet/archwaytestnet/ibc.ts new file mode 100644 index 000000000..9c1cfe06b --- /dev/null +++ b/packages/chain-registry/src/testnet/archwaytestnet/ibc.ts @@ -0,0 +1,94 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-305", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1195", + "connection_id": "connection-1101" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3938", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/archwaytestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/archwaytestnet/ibc_chain1.ts new file mode 100644 index 000000000..69d73dcd4 --- /dev/null +++ b/packages/chain-registry/src/testnet/archwaytestnet/ibc_chain1.ts @@ -0,0 +1,64 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archwaytestnet", + "client_id": "07-tendermint-70", + "connection_id": "connection-60" + }, + "chain_2": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-603", + "connection_id": "connection-418" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-305", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1195", + "connection_id": "connection-1101" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3938", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/archwaytestnet/index.ts b/packages/chain-registry/src/testnet/archwaytestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/archwaytestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/arkeonetworktestnet/assets.ts b/packages/chain-registry/src/testnet/arkeonetworktestnet/assets.ts new file mode 100644 index 000000000..bd39a6719 --- /dev/null +++ b/packages/chain-registry/src/testnet/arkeonetworktestnet/assets.ts @@ -0,0 +1,29 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "arkeonetworktestnet", + "assets": [ + { + "description": "", + "denom_units": [ + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/arkeonetworktestnet/images/arkeo.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/arkeonetworktestnet/chain.ts b/packages/chain-registry/src/testnet/arkeonetworktestnet/chain.ts new file mode 100644 index 000000000..91cdc4c81 --- /dev/null +++ b/packages/chain-registry/src/testnet/arkeonetworktestnet/chain.ts @@ -0,0 +1,90 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uarkeo" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://arkeonetwork-testnet.nodejumper.io:26657", + "provider": "NODEJUMPER" + }, + { + "address": "https://test-arkeo-rpc.kynraze.com", + "provider": "kynraze" + }, + { + "address": "https://testnet-arkeo-rpc.lavenderfive.com", + "provider": "lavenderfive" + }, + { + "address": "https://arkeo-rpc.siriusnodes.uk", + "provider": "siriusnodes" + }, + { + "address": "http://seed.arkeo.network:26657", + "provider": "arkeo" + } + ], + "rest": [ + { + "address": "https://arkeonetwork-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" + }, + { + "address": "https://test-arkeo-api.kynraze.com", + "provider": "kynraze" + }, + { + "address": "https://testnet-arkeo-api.lavenderfive.com", + "provider": "lavenderfive" + }, + { + "address": "https://arkeo-api.siriusnodes.uk", + "provider": "siriusnodes" + }, + { + "address": "http://seed.arkeo.network:1317", + "provider": "arkeo" + } + ], + "grpc": [ + { + "address": "https://arkeonetwork-testnet.nodejumper.io:9090/", + "provider": "NODEJUMPER" + } + ] + }, + "explorers": [ + { + "url": "https://explorer.nodexcapital.com/arkeo", + "tx_page": "https://explorer.nodexcapital.com/arkeo/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/arkeonetworktestnet/index.ts b/packages/chain-registry/src/testnet/arkeonetworktestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/arkeonetworktestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/artelatestnet/assets.ts b/packages/chain-registry/src/testnet/artelatestnet/assets.ts new file mode 100644 index 000000000..da88f320e --- /dev/null +++ b/packages/chain-registry/src/testnet/artelatestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "artelatestnet", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Artela Network", + "denom_units": [ + { + "denom": "uart", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/artelatestnet/images/artela.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/artelatestnet/chain.ts b/packages/chain-registry/src/testnet/artelatestnet/chain.ts new file mode 100644 index 000000000..609aeb2f1 --- /dev/null +++ b/packages/chain-registry/src/testnet/artelatestnet/chain.ts @@ -0,0 +1,72 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uart" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.47" + }, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc1.artela.network", + "provider": "Artela Foundation" + }, + { + "address": "https://testnet-rpc2.artela.network", + "provider": "Artela Foundation" + } + ], + "rest": [ + { + "address": "https://testnet-rpc1.artela.network", + "provider": "Artela Foundation" + }, + { + "address": "https://testnet-rpc2.artela.network", + "provider": "Artela Foundation" + } + ], + "grpc": [ + { + "address": "https://testnet-rpc1.artela.network", + "provider": "Artela Foundation" + } + ] + }, + "explorers": [ + { + "kind": "Artela Network", + "url": "https://testnet-scan.artela.network", + "tx_page": "https://testnet-scan.artela.network/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/artelatestnet/index.ts b/packages/chain-registry/src/testnet/artelatestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/artelatestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/assets.ts b/packages/chain-registry/src/testnet/assets.ts new file mode 100644 index 000000000..37bef4624 --- /dev/null +++ b/packages/chain-registry/src/testnet/assets.ts @@ -0,0 +1,91 @@ +import { AssetList } from '@chain-registry/types'; + +import * as _akashtestnet from './akashtestnet'; +import * as _archwaytestnet from './archwaytestnet'; +import * as _arkeonetworktestnet from './arkeonetworktestnet'; +import * as _artelatestnet from './artelatestnet'; +import * as _auratestnet from './auratestnet'; +import * as _axelartestnet from './axelartestnet'; +import * as _babylontestnet from './babylontestnet'; +import * as _bitcannadevnet from './bitcannadevnet'; +import * as _cascadiatestnet from './cascadiatestnet'; +import * as _celestiatestnet from './celestiatestnet'; +import * as _celestiatestnet3 from './celestiatestnet3'; +import * as _chain4energytestnet from './chain4energytestnet'; +import * as _cheqdtestnet from './cheqdtestnet'; +import * as _chimbatestnet from './chimbatestnet'; +import * as _composabletestnet from './composabletestnet'; +import * as _coolcattestnet from './coolcattestnet'; +import * as _coreumtestnet from './coreumtestnet'; +import * as _cosmoshubtestnet from './cosmoshubtestnet'; +import * as _cosmwasmtestnet from './cosmwasmtestnet'; +import * as _cosstestnet from './cosstestnet'; +import * as _cudostestnet from './cudostestnet'; +import * as _deardogetestnet from './deardogetestnet'; +import * as _desmostestnet from './desmostestnet'; +import * as _doravotatestnet from './doravotatestnet'; +import * as _doravotatestnet2 from './doravotatestnet2'; +import * as _dydxtestnet from './dydxtestnet'; +import * as _elystestnet from './elystestnet'; +import * as _empowertestnet from './empowertestnet'; +import * as _entrypointtestnet from './entrypointtestnet'; +import * as _evmostestnet from './evmostestnet'; +import * as _fetchhubtestnet from './fetchhubtestnet'; +import * as _gitopiatestnet from './gitopiatestnet'; +import * as _humanstestnet from './humanstestnet'; +import * as _hypersigntestnet from './hypersigntestnet'; +import * as _impacthubtestnet from './impacthubtestnet'; +import * as _imversedtestnet from './imversedtestnet'; +import * as _injectivetestnet from './injectivetestnet'; +import * as _jackaltestnet from './jackaltestnet'; +import * as _junotestnet from './junotestnet'; +import * as _kichaintestnet from './kichaintestnet'; +import * as _kujiratestnet from './kujiratestnet'; +import * as _kyvetestnet from './kyvetestnet'; +import * as _lavatestnet from './lavatestnet'; +import * as _lavatestnet2 from './lavatestnet2'; +import * as _likecointestnet from './likecointestnet'; +import * as _lumenxtestnet from './lumenxtestnet'; +import * as _marstestnet from './marstestnet'; +import * as _migalootestnet from './migalootestnet'; +import * as _neutrontestnet from './neutrontestnet'; +import * as _nobletestnet from './nobletestnet'; +import * as _noistestnet from './noistestnet'; +import * as _nolustestnet from './nolustestnet'; +import * as _okp4testnet from './okp4testnet'; +import * as _osmosistestnet from './osmosistestnet'; +import * as _osmosistestnet4 from './osmosistestnet4'; +import * as _permtestnet from './permtestnet'; +import * as _persistencetestnet from './persistencetestnet'; +import * as _persistencetestnet2 from './persistencetestnet2'; +import * as _pryzmtestnet from './pryzmtestnet'; +import * as _quasartestnet from './quasartestnet'; +import * as _quicksilvertestnet from './quicksilvertestnet'; +import * as _qwoyntestnet from './qwoyntestnet'; +import * as _rsprovidertestnet from './rsprovidertestnet'; +import * as _sagatestnet from './sagatestnet'; +import * as _secretnetworktestnet from './secretnetworktestnet'; +import * as _secretnetworktestnet2 from './secretnetworktestnet2'; +import * as _seitestnet from './seitestnet'; +import * as _seitestnet2 from './seitestnet2'; +import * as _selfchaindevnet from './selfchaindevnet'; +import * as _sgetestnet from './sgetestnet'; +import * as _sixtestnet from './sixtestnet'; +import * as _sourcetestnet from './sourcetestnet'; +import * as _stargazetestnet from './stargazetestnet'; +import * as _statesettestnet from './statesettestnet'; +import * as _stridetestnet from './stridetestnet'; +import * as _temporaltestnet from './temporaltestnet'; +import * as _terpnettestnet from './terpnettestnet'; +import * as _terra2testnet from './terra2testnet'; +import * as _ulastestnet from './ulastestnet'; +import * as _uniontestnet from './uniontestnet'; +import * as _upticktestnet from './upticktestnet'; +import * as _vincechaintestnet from './vincechaintestnet'; +import * as _wavehashtestnet from './wavehashtestnet'; +import * as _xiontestnet from './xiontestnet'; +import * as _zetachaintestnet from './zetachaintestnet' + +const assets: AssetList[] = [_akashtestnet.assets,_archwaytestnet.assets,_arkeonetworktestnet.assets,_artelatestnet.assets,_auratestnet.assets,_axelartestnet.assets,_babylontestnet.assets,_bitcannadevnet.assets,_cascadiatestnet.assets,_celestiatestnet.assets,_celestiatestnet3.assets,_chain4energytestnet.assets,_cheqdtestnet.assets,_chimbatestnet.assets,_composabletestnet.assets,_coolcattestnet.assets,_coreumtestnet.assets,_cosmoshubtestnet.assets,_cosmwasmtestnet.assets,_cosstestnet.assets,_cudostestnet.assets,_deardogetestnet.assets,_desmostestnet.assets,_doravotatestnet.assets,_doravotatestnet2.assets,_dydxtestnet.assets,_elystestnet.assets,_empowertestnet.assets,_entrypointtestnet.assets,_evmostestnet.assets,_fetchhubtestnet.assets,_gitopiatestnet.assets,_humanstestnet.assets,_hypersigntestnet.assets,_impacthubtestnet.assets,_imversedtestnet.assets,_injectivetestnet.assets,_jackaltestnet.assets,_junotestnet.assets,_kichaintestnet.assets,_kujiratestnet.assets,_kyvetestnet.assets,_lavatestnet.assets,_lavatestnet2.assets,_likecointestnet.assets,_lumenxtestnet.assets,_marstestnet.assets,_migalootestnet.assets,_neutrontestnet.assets,_nobletestnet.assets,_noistestnet.assets,_nolustestnet.assets,_okp4testnet.assets,_osmosistestnet.assets,_osmosistestnet4.assets,_permtestnet.assets,_persistencetestnet.assets,_persistencetestnet2.assets,_pryzmtestnet.assets,_quasartestnet.assets,_quicksilvertestnet.assets,_qwoyntestnet.assets,_rsprovidertestnet.assets,_sagatestnet.assets,_secretnetworktestnet.assets,_secretnetworktestnet2.assets,_seitestnet.assets,_seitestnet2.assets,_selfchaindevnet.assets,_sgetestnet.assets,_sixtestnet.assets,_sourcetestnet.assets,_stargazetestnet.assets,_statesettestnet.assets,_stridetestnet.assets,_temporaltestnet.assets,_terpnettestnet.assets,_terra2testnet.assets,_ulastestnet.assets,_uniontestnet.assets,_upticktestnet.assets,_vincechaintestnet.assets,_wavehashtestnet.assets,_xiontestnet.assets,_zetachaintestnet.assets]; + +export default assets; diff --git a/packages/chain-registry/src/testnet/auratestnet/assets.ts b/packages/chain-registry/src/testnet/auratestnet/assets.ts new file mode 100644 index 000000000..915bfeaab --- /dev/null +++ b/packages/chain-registry/src/testnet/auratestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "auratestnet", + "assets": [ + { + "description": "The native token of Aura Test Network", + "denom_units": [ + { + "denom": "ueaura", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/auratestnet/chain.ts b/packages/chain-registry/src/testnet/auratestnet/chain.ts new file mode 100644 index 000000000..964434572 --- /dev/null +++ b/packages/chain-registry/src/testnet/auratestnet/chain.ts @@ -0,0 +1,82 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ueaura" + } + ], + "lock_duration": { + "time": "172800s" + } + }, + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.euphoria.aura.network/", + "provider": "Aura Network Foundation" + } + ], + "rest": [ + { + "address": "https://lcd.euphoria.aura.network/", + "provider": "Aura Network Foundation" + } + ], + "grpc": [ + { + "address": "http://grpc.euphoria.aura.network:9090", + "provider": "Aura Network Foundation" + } + ] + }, + "explorers": [ + { + "kind": "aurascan", + "url": "https://euphoria.aurascan.io", + "tx_page": "https://euphoria.aurascan.io/transaction/${txHash}", + "account_page": "https://euphoria.aurascan.io/account/${accountAddress}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/auratestnet/index.ts b/packages/chain-registry/src/testnet/auratestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/auratestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/axelartestnet/assets.ts b/packages/chain-registry/src/testnet/axelartestnet/assets.ts new file mode 100644 index 000000000..332a3169d --- /dev/null +++ b/packages/chain-registry/src/testnet/axelartestnet/assets.ts @@ -0,0 +1,311 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "axelartestnet", + "assets": [ + { + "description": "The native token of Axelar", + "denom_units": [ + { + "denom": "uaxl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "Circle's stablecoin on Axelar", + "denom_units": [ + { + "denom": "uausdc", + "exponent": 0 + }, + { + "denom": "ausdc", + "exponent": 6 + } + ], + "base": "uausdc", + "name": "USD Coin", + "display": "ausdc", + "symbol": "aUSDC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereumtestnet", + "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + }, + { + "description": "Wrapped Ether on Axelar", + "denom_units": [ + { + "denom": "eth-wei", + "exponent": 0 + }, + { + "denom": "weth", + "exponent": 18 + } + ], + "base": "eth-wei", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "axlWETH", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereumtestnet", + "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + } + }, + { + "description": "Wrapped Moonbeam on Axelar", + "denom_units": [ + { + "denom": "wglmr-wei", + "exponent": 0 + }, + { + "denom": "wglmr", + "exponent": 18 + } + ], + "base": "wglmr-wei", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WDEV", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "moonbeamtestnet", + "base_denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "moonbeamtestnet", + "base_denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + } + }, + { + "description": "Wrapped Matic on Axelar", + "denom_units": [ + { + "denom": "wmatic-wei", + "exponent": 0 + }, + { + "denom": "wmatic", + "exponent": 18 + } + ], + "base": "wmatic-wei", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "polygontestnet", + "base_denom": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "polygontestnet", + "base_denom": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + } + }, + { + "description": "Wrapped BNB on Axelar", + "denom_units": [ + { + "denom": "wbnb-wei", + "exponent": 0 + }, + { + "denom": "wbnb", + "exponent": 18 + } + ], + "base": "wbnb-wei", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchaintestnet", + "base_denom": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "binancesmartchaintestnet", + "base_denom": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" + } + }, + { + "description": "Wrapped AVAX on Axelar.", + "denom_units": [ + { + "denom": "wavax-wei", + "exponent": 0 + }, + { + "denom": "avax", + "exponent": 18 + } + ], + "base": "wavax-wei", + "name": "Wrapped AVAX", + "display": "avax", + "symbol": "WAVAX", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "avalanchetestnet", + "base_denom": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "avalanchetestnet", + "base_denom": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + } + }, + { + "description": "Wrapped FTM on Axelar.", + "denom_units": [ + { + "denom": "wftm-wei", + "exponent": 0 + }, + { + "denom": "ftm", + "exponent": 18 + } + ], + "base": "wftm-wei", + "name": "Wrapped FTM", + "display": "ftm", + "symbol": "WFTM", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "fantomtestnet", + "base_denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "fantomtestnet", + "base_denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/axelartestnet/chain.ts b/packages/chain-registry/src/testnet/axelartestnet/chain.ts new file mode 100644 index 000000000..768412485 --- /dev/null +++ b/packages/chain-registry/src/testnet/axelartestnet/chain.ts @@ -0,0 +1,71 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uaxl" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-axelar-testnet.imperator.co:443", + "provider": "Imperator.co" + }, + { + "address": "https://axelartest-rpc.quickapi.com/", + "provider": "Quickapi" + } + ], + "rest": [ + { + "address": "https://lcd-axelar-testnet.imperator.co:443", + "provider": "Imperator.co" + }, + { + "address": "https://axelartest-lcd.quickapi.com/", + "provider": "Quickapi" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/axelartestnet/ibc.ts b/packages/chain-registry/src/testnet/axelartestnet/ibc.ts new file mode 100644 index 000000000..d6d95a1da --- /dev/null +++ b/packages/chain-registry/src/testnet/axelartestnet/ibc.ts @@ -0,0 +1,221 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-50", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-305", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "dydxtestnet", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-297", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-339", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4170", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-3319", + "connection_id": "connection-2807" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1946", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-261", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-767", + "connection_id": "connection-581" + }, + "chain_2": { + "chain_name": "sagatestnet", + "client_id": "07-tendermint-11", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-370", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-10", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-283", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts new file mode 100644 index 000000000..f24118d0a --- /dev/null +++ b/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts @@ -0,0 +1,191 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-297", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-339", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4170", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-3319", + "connection_id": "connection-2807" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1946", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-261", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-767", + "connection_id": "connection-581" + }, + "chain_2": { + "chain_name": "sagatestnet", + "client_id": "07-tendermint-11", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-370", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-10", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-283", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/axelartestnet/index.ts b/packages/chain-registry/src/testnet/axelartestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/axelartestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/babylontestnet/assets.ts b/packages/chain-registry/src/testnet/babylontestnet/assets.ts new file mode 100644 index 000000000..7a8e769d1 --- /dev/null +++ b/packages/chain-registry/src/testnet/babylontestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "babylontestnet", + "assets": [ + { + "description": "The native staking token of Babylon.", + "denom_units": [ + { + "denom": "ubbn", + "exponent": 0 + }, + { + "denom": "bbn", + "exponent": 6 + } + ], + "base": "uatom", + "name": "Babylon BBN", + "display": "bbn", + "symbol": "BBN", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/babylontestnet/chain.ts b/packages/chain-registry/src/testnet/babylontestnet/chain.ts new file mode 100644 index 000000000..9ad987bbd --- /dev/null +++ b/packages/chain-registry/src/testnet/babylontestnet/chain.ts @@ -0,0 +1,67 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ubbn" + } + ] + }, + "codebase": {}, + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" + }, + "apis": { + "rpc": [ + { + "address": "rpc.testnet.babylonchain.io:26657", + "provider": "Babylon foundation" + } + ], + "rest": [ + { + "address": "rpc.testnet.babylonchain.io:1317", + "provider": "Babylon foundation" + } + ], + "grpc": [] + }, + "explorers": [ + { + "kind": "babylonscan", + "url": "https://babylonscan.io" + }, + { + "kind": "explorers.guru", + "url": "https://babylon.explorers.guru", + "tx_page": "https://babylon.explorers.guru/transaction/${txHash}" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" + } + ], + "slip44": 118 +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/babylontestnet/index.ts b/packages/chain-registry/src/testnet/babylontestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/babylontestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/bitcannadevnet/assets.ts b/packages/chain-registry/src/testnet/bitcannadevnet/assets.ts new file mode 100644 index 000000000..21238b122 --- /dev/null +++ b/packages/chain-registry/src/testnet/bitcannadevnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "ubcna", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/bitcannadevnet/chain.ts b/packages/chain-registry/src/testnet/bitcannadevnet/chain.ts new file mode 100644 index 000000000..5305bcc66 --- /dev/null +++ b/packages/chain-registry/src/testnet/bitcannadevnet/chain.ts @@ -0,0 +1,118 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-testnet.bitcanna.io", + "provider": "bitcanna" + }, + { + "address": "https://bitcanna-testnet.rpc.kjnodes.com/", + "provider": "kjnodes.com" + }, + { + "address": "https://testnet-bitcanna-rpc.konsortech.xyz/", + "provider": "konsortech.xyz" + }, + { + "address": "https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/", + "provider": "aviaone.com" + }, + { + "address": "https://bitcanna-testnet.nodejumper.io:443", + "provider": "NODEJUMPER" + } + ], + "rest": [ + { + "address": "https://lcd-testnet.bitcanna.io", + "provider": "bitcanna" + }, + { + "address": "https://testnet-bitcanna-api.konsortech.xyz/", + "provider": "konsortech.xyz" + }, + { + "address": "https://bitcanna.api.dev.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "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.nodejumper.io:1317", + "provider": "NODEJUMPER" + } + ], + "grpc": [ + { + "address": "http://devnet-1.bitcanna.io:9090/", + "provider": "bitcanna" + }, + { + "address": "http://bitcanna-testnet.grpc.kjnodes.com:42090/", + "provider": "kjnodes.com" + }, + { + "address": "http://bitcanna.grpc.dev.stavr.tech:2901", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://bitcanna-testnet.nodejumper.io:9090", + "provider": "NODEJUMPER" + } + ] + }, + "explorers": [ + { + "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}" + }, + { + "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.stavr.tech/bitcanna-dev", + "tx_page": "https://explorer.stavr.tech/bitcanna-dev/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/bitcannadevnet/index.ts b/packages/chain-registry/src/testnet/bitcannadevnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/bitcannadevnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/cascadiatestnet/assets.ts b/packages/chain-registry/src/testnet/cascadiatestnet/assets.ts new file mode 100644 index 000000000..e0f6a103a --- /dev/null +++ b/packages/chain-registry/src/testnet/cascadiatestnet/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "cascadiatestnet", + "assets": [ + { + "description": "The World's First Neocybernetic Blockchain", + "denom_units": [ + { + "denom": "aCC", + "exponent": 0 + }, + { + "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" + }, + "keywords": [ + "cascadia", + "neocybernetic" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cascadiatestnet/chain.ts b/packages/chain-registry/src/testnet/cascadiatestnet/chain.ts new file mode 100644 index 000000000..1da6388d9 --- /dev/null +++ b/packages/chain-registry/src/testnet/cascadiatestnet/chain.ts @@ -0,0 +1,143 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "aCC" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmos_sdk_version": "0.46.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" + }, + "images": [ + { + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.cascadia.foundation:443", + "provider": "cascadia" + }, + { + "address": "https://cscd-rpc.systemd.run:443", + "provider": "systemd" + }, + { + "address": "https://api.cascadia-t.indonode.net:443", + "provider": "Indonode" + }, + { + "address": "https://rpc-test.cascadia.hexnodes.co:443", + "provider": "Hexnodes" + }, + { + "address": "https://cascadia.rpc.liveraven.net:443", + "provider": "LiveRaveN" + } + ], + "grpc": [ + { + "address": "grpc.cascadia.foundation:443", + "provider": "cascadia" + }, + { + "address": "cscd-grpc.systemd.run:443", + "provider": "systemd" + }, + { + "address": "grpc.cascadia-t.indonode.net:43090", + "provider": "Indonode" + }, + { + "address": "grpc-test.cascadia.hexnodes.co:19090", + "provider": "Hexnodes" + }, + { + "address": "cascadia.grpc.liveraven.net:443", + "provider": "LiveRaveN" + } + ], + "rest": [ + { + "address": "https://lcd.cascadia.foundation", + "provider": "cascadia" + }, + { + "address": "https://cscd-api.systemd.run", + "provider": "systemd" + }, + { + "address": "https://api.cascadia-t.indonode.net/", + "provider": "Indonode" + }, + { + "address": "https://lcd-test.cascadia.hexnodes.co", + "provider": "Hexnodes" + }, + { + "address": "https://cascadia.api.liveraven.net:443", + "provider": "LiveRaveN" + } + ] + }, + "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": "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" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cascadiatestnet/index.ts b/packages/chain-registry/src/testnet/cascadiatestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/cascadiatestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/celestiatestnet/assets.ts b/packages/chain-registry/src/testnet/celestiatestnet/assets.ts new file mode 100644 index 000000000..f81f0fde9 --- /dev/null +++ b/packages/chain-registry/src/testnet/celestiatestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "celestiatestnet", + "assets": [ + { + "description": "", + "denom_units": [ + { + "denom": "utia", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/celestiatestnet/chain.ts b/packages/chain-registry/src/testnet/celestiatestnet/chain.ts new file mode 100644 index 000000000..60f45f1ef --- /dev/null +++ b/packages/chain-registry/src/testnet/celestiatestnet/chain.ts @@ -0,0 +1,47 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-blockspacerace.pops.one/", + "provider": "P-OPs" + } + ], + "rest": [ + { + "address": "https://celestia-blockspacerace-rest.brocha.in", + "provider": "Brochain" + } + ] + }, + "explorers": [ + { + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/celestia-incentivized-testnet", + "tx_page": "https://testnet.mintscan.io/celestia-incentivized-testnet/txs/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/celestiatestnet/index.ts b/packages/chain-registry/src/testnet/celestiatestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/celestiatestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/celestiatestnet3/assets.ts b/packages/chain-registry/src/testnet/celestiatestnet3/assets.ts new file mode 100644 index 000000000..1abd0a4ae --- /dev/null +++ b/packages/chain-registry/src/testnet/celestiatestnet3/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "celestiatestnet3", + "assets": [ + { + "description": "", + "denom_units": [ + { + "denom": "utia", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/celestiatestnet3/chain.ts b/packages/chain-registry/src/testnet/celestiatestnet3/chain.ts new file mode 100644 index 000000000..a5383af5f --- /dev/null +++ b/packages/chain-registry/src/testnet/celestiatestnet3/chain.ts @@ -0,0 +1,50 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "utia", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.02, + "high_gas_price": 0.1 + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-mocha.pops.one", + "provider": "P-OPs" + } + ], + "rest": [ + { + "address": "https://api-mocha.pops.one", + "provider": "P-OPs" + } + ] + }, + "explorers": [ + { + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/celestia-testnet", + "tx_page": "https://testnet.mintscan.io/celestia-testnet/txs/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/celestiatestnet3/ibc.ts b/packages/chain-registry/src/testnet/celestiatestnet3/ibc.ts new file mode 100644 index 000000000..cf8357813 --- /dev/null +++ b/packages/chain-registry/src/testnet/celestiatestnet3/ibc.ts @@ -0,0 +1,97 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3152", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutrontestnet", + "client_id": "07-tendermint-113", + "connection_id": "connection-101" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-160", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4370", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/celestiatestnet3/ibc_chain1.ts b/packages/chain-registry/src/testnet/celestiatestnet3/ibc_chain1.ts new file mode 100644 index 000000000..cf8357813 --- /dev/null +++ b/packages/chain-registry/src/testnet/celestiatestnet3/ibc_chain1.ts @@ -0,0 +1,97 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3152", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "neutrontestnet", + "client_id": "07-tendermint-113", + "connection_id": "connection-101" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-160", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4370", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/celestiatestnet3/index.ts b/packages/chain-registry/src/testnet/celestiatestnet3/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/celestiatestnet3/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/chain4energytestnet/assets.ts b/packages/chain-registry/src/testnet/chain4energytestnet/assets.ts new file mode 100644 index 000000000..560f9c9b6 --- /dev/null +++ b/packages/chain-registry/src/testnet/chain4energytestnet/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "chain4energytestnet", + "assets": [ + { + "description": "The native token of Chain4Energy", + "denom_units": [ + { + "denom": "uc4e", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/chain4energytestnet/chain.ts b/packages/chain-registry/src/testnet/chain4energytestnet/chain.ts new file mode 100644 index 000000000..a38d78f11 --- /dev/null +++ b/packages/chain-registry/src/testnet/chain4energytestnet/chain.ts @@ -0,0 +1,81 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": "uc4e", + "fixed_min_gas_price": 0, + "low_gas_price": 0.02, + "average_gas_price": 0.03, + "high_gas_price": 0.06 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uc4e" + } + ] + }, + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/chain4energytestnet/ibc.ts b/packages/chain-registry/src/testnet/chain4energytestnet/ibc.ts new file mode 100644 index 000000000..336f3cae1 --- /dev/null +++ b/packages/chain-registry/src/testnet/chain4energytestnet/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/chain4energytestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/chain4energytestnet/ibc_chain1.ts new file mode 100644 index 000000000..336f3cae1 --- /dev/null +++ b/packages/chain-registry/src/testnet/chain4energytestnet/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "chain4energytestnet", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-104", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/chain4energytestnet/index.ts b/packages/chain-registry/src/testnet/chain4energytestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/chain4energytestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/chains.ts b/packages/chain-registry/src/testnet/chains.ts new file mode 100644 index 000000000..3283abda1 --- /dev/null +++ b/packages/chain-registry/src/testnet/chains.ts @@ -0,0 +1,91 @@ +import { Chain } from '@chain-registry/types'; + +import * as _akashtestnet from './akashtestnet'; +import * as _archwaytestnet from './archwaytestnet'; +import * as _arkeonetworktestnet from './arkeonetworktestnet'; +import * as _artelatestnet from './artelatestnet'; +import * as _auratestnet from './auratestnet'; +import * as _axelartestnet from './axelartestnet'; +import * as _babylontestnet from './babylontestnet'; +import * as _bitcannadevnet from './bitcannadevnet'; +import * as _cascadiatestnet from './cascadiatestnet'; +import * as _celestiatestnet from './celestiatestnet'; +import * as _celestiatestnet3 from './celestiatestnet3'; +import * as _chain4energytestnet from './chain4energytestnet'; +import * as _cheqdtestnet from './cheqdtestnet'; +import * as _chimbatestnet from './chimbatestnet'; +import * as _composabletestnet from './composabletestnet'; +import * as _coolcattestnet from './coolcattestnet'; +import * as _coreumtestnet from './coreumtestnet'; +import * as _cosmoshubtestnet from './cosmoshubtestnet'; +import * as _cosmwasmtestnet from './cosmwasmtestnet'; +import * as _cosstestnet from './cosstestnet'; +import * as _cudostestnet from './cudostestnet'; +import * as _deardogetestnet from './deardogetestnet'; +import * as _desmostestnet from './desmostestnet'; +import * as _doravotatestnet from './doravotatestnet'; +import * as _doravotatestnet2 from './doravotatestnet2'; +import * as _dydxtestnet from './dydxtestnet'; +import * as _elystestnet from './elystestnet'; +import * as _empowertestnet from './empowertestnet'; +import * as _entrypointtestnet from './entrypointtestnet'; +import * as _evmostestnet from './evmostestnet'; +import * as _fetchhubtestnet from './fetchhubtestnet'; +import * as _gitopiatestnet from './gitopiatestnet'; +import * as _humanstestnet from './humanstestnet'; +import * as _hypersigntestnet from './hypersigntestnet'; +import * as _impacthubtestnet from './impacthubtestnet'; +import * as _imversedtestnet from './imversedtestnet'; +import * as _injectivetestnet from './injectivetestnet'; +import * as _jackaltestnet from './jackaltestnet'; +import * as _junotestnet from './junotestnet'; +import * as _kichaintestnet from './kichaintestnet'; +import * as _kujiratestnet from './kujiratestnet'; +import * as _kyvetestnet from './kyvetestnet'; +import * as _lavatestnet from './lavatestnet'; +import * as _lavatestnet2 from './lavatestnet2'; +import * as _likecointestnet from './likecointestnet'; +import * as _lumenxtestnet from './lumenxtestnet'; +import * as _marstestnet from './marstestnet'; +import * as _migalootestnet from './migalootestnet'; +import * as _neutrontestnet from './neutrontestnet'; +import * as _nobletestnet from './nobletestnet'; +import * as _noistestnet from './noistestnet'; +import * as _nolustestnet from './nolustestnet'; +import * as _okp4testnet from './okp4testnet'; +import * as _osmosistestnet from './osmosistestnet'; +import * as _osmosistestnet4 from './osmosistestnet4'; +import * as _permtestnet from './permtestnet'; +import * as _persistencetestnet from './persistencetestnet'; +import * as _persistencetestnet2 from './persistencetestnet2'; +import * as _pryzmtestnet from './pryzmtestnet'; +import * as _quasartestnet from './quasartestnet'; +import * as _quicksilvertestnet from './quicksilvertestnet'; +import * as _qwoyntestnet from './qwoyntestnet'; +import * as _rsprovidertestnet from './rsprovidertestnet'; +import * as _sagatestnet from './sagatestnet'; +import * as _secretnetworktestnet from './secretnetworktestnet'; +import * as _secretnetworktestnet2 from './secretnetworktestnet2'; +import * as _seitestnet from './seitestnet'; +import * as _seitestnet2 from './seitestnet2'; +import * as _selfchaindevnet from './selfchaindevnet'; +import * as _sgetestnet from './sgetestnet'; +import * as _sixtestnet from './sixtestnet'; +import * as _sourcetestnet from './sourcetestnet'; +import * as _stargazetestnet from './stargazetestnet'; +import * as _statesettestnet from './statesettestnet'; +import * as _stridetestnet from './stridetestnet'; +import * as _temporaltestnet from './temporaltestnet'; +import * as _terpnettestnet from './terpnettestnet'; +import * as _terra2testnet from './terra2testnet'; +import * as _ulastestnet from './ulastestnet'; +import * as _uniontestnet from './uniontestnet'; +import * as _upticktestnet from './upticktestnet'; +import * as _vincechaintestnet from './vincechaintestnet'; +import * as _wavehashtestnet from './wavehashtestnet'; +import * as _xiontestnet from './xiontestnet'; +import * as _zetachaintestnet from './zetachaintestnet' + +const chains: Chain[] = [_akashtestnet.chain,_archwaytestnet.chain,_arkeonetworktestnet.chain,_artelatestnet.chain,_auratestnet.chain,_axelartestnet.chain,_babylontestnet.chain,_bitcannadevnet.chain,_cascadiatestnet.chain,_celestiatestnet.chain,_celestiatestnet3.chain,_chain4energytestnet.chain,_cheqdtestnet.chain,_chimbatestnet.chain,_composabletestnet.chain,_coolcattestnet.chain,_coreumtestnet.chain,_cosmoshubtestnet.chain,_cosmwasmtestnet.chain,_cosstestnet.chain,_cudostestnet.chain,_deardogetestnet.chain,_desmostestnet.chain,_doravotatestnet.chain,_doravotatestnet2.chain,_dydxtestnet.chain,_elystestnet.chain,_empowertestnet.chain,_entrypointtestnet.chain,_evmostestnet.chain,_fetchhubtestnet.chain,_gitopiatestnet.chain,_humanstestnet.chain,_hypersigntestnet.chain,_impacthubtestnet.chain,_imversedtestnet.chain,_injectivetestnet.chain,_jackaltestnet.chain,_junotestnet.chain,_kichaintestnet.chain,_kujiratestnet.chain,_kyvetestnet.chain,_lavatestnet.chain,_lavatestnet2.chain,_likecointestnet.chain,_lumenxtestnet.chain,_marstestnet.chain,_migalootestnet.chain,_neutrontestnet.chain,_nobletestnet.chain,_noistestnet.chain,_nolustestnet.chain,_okp4testnet.chain,_osmosistestnet.chain,_osmosistestnet4.chain,_permtestnet.chain,_persistencetestnet.chain,_persistencetestnet2.chain,_pryzmtestnet.chain,_quasartestnet.chain,_quicksilvertestnet.chain,_qwoyntestnet.chain,_rsprovidertestnet.chain,_sagatestnet.chain,_secretnetworktestnet.chain,_secretnetworktestnet2.chain,_seitestnet.chain,_seitestnet2.chain,_selfchaindevnet.chain,_sgetestnet.chain,_sixtestnet.chain,_sourcetestnet.chain,_stargazetestnet.chain,_statesettestnet.chain,_stridetestnet.chain,_temporaltestnet.chain,_terpnettestnet.chain,_terra2testnet.chain,_ulastestnet.chain,_uniontestnet.chain,_upticktestnet.chain,_vincechaintestnet.chain,_wavehashtestnet.chain,_xiontestnet.chain,_zetachaintestnet.chain]; + +export default chains; diff --git a/packages/chain-registry/src/testnet/cheqdtestnet/assets.ts b/packages/chain-registry/src/testnet/cheqdtestnet/assets.ts new file mode 100644 index 000000000..35a5c4030 --- /dev/null +++ b/packages/chain-registry/src/testnet/cheqdtestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "cheqdtestnet", + "assets": [ + { + "description": "Native token for the cheqd network", + "denom_units": [ + { + "denom": "ncheq", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cheqdtestnet/chain.ts b/packages/chain-registry/src/testnet/cheqdtestnet/chain.ts new file mode 100644 index 000000000..862b96b50 --- /dev/null +++ b/packages/chain-registry/src/testnet/cheqdtestnet/chain.ts @@ -0,0 +1,65 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.46.10" + }, + "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": [ + { + "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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cheqdtestnet/index.ts b/packages/chain-registry/src/testnet/cheqdtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/cheqdtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/chimbatestnet/assets.ts b/packages/chain-registry/src/testnet/chimbatestnet/assets.ts new file mode 100644 index 000000000..d678f0d0f --- /dev/null +++ b/packages/chain-registry/src/testnet/chimbatestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "chimbatestnet", + "assets": [ + { + "description": "The first blokchain in colombia", + "denom_units": [ + { + "denom": "ucmba", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/chimbatestnet/chain.ts b/packages/chain-registry/src/testnet/chimbatestnet/chain.ts new file mode 100644 index 000000000..3b3731d94 --- /dev/null +++ b/packages/chain-registry/src/testnet/chimbatestnet/chain.ts @@ -0,0 +1,55 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "chimba" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.testnet.chimba.ooo", + "provider": "chimba" + } + ], + "rest": [ + { + "address": "https://testnet.chimba.ooo", + "provider": "chimba" + } + ] + }, + "explorers": [ + { + "kind": "bigdipper", + "url": "https://explorer.testnet.chimba.ooo/", + "tx_page": "https://explorer.testnet.chimba.ooo/transactions/${txHash}" + } + ], + "slip44": 118 +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/chimbatestnet/index.ts b/packages/chain-registry/src/testnet/chimbatestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/chimbatestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/composabletestnet/assets.ts b/packages/chain-registry/src/testnet/composabletestnet/assets.ts new file mode 100644 index 000000000..d5a087043 --- /dev/null +++ b/packages/chain-registry/src/testnet/composabletestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "composabletestnet", + "assets": [ + { + "description": "The native staking and governance token of the Composable testnet.", + "denom_units": [ + { + "denom": "ppica", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/composabletestnet/chain.ts b/packages/chain-registry/src/testnet/composabletestnet/chain.ts new file mode 100644 index 000000000..c0a33768a --- /dev/null +++ b/packages/chain-registry/src/testnet/composabletestnet/chain.ts @@ -0,0 +1,91 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ppica", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.composable-t.indonode.net:443", + "provider": "Indonode" + }, + { + "address": "https://rpc-composable-testnet.sr20de.xyz:443", + "provider": "Sr20de" + } + ], + "rest": [ + { + "address": "https://api.composable-t.indonode.net", + "provider": "Indonode" + }, + { + "address": "https://composable.api.t4.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api-composable-testnet.sr20de.xyz", + "provider": "Sr20de" + } + ], + "grpc": [ + { + "address": "https://grpc.composable-t.indonode.net:47090", + "provider": "Indonode" + }, + { + "address": "https://grpc-composable-testnet.sr20de.xyz", + "provider": "Sr20de" + } + ] + }, + "explorers": [ + { + "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}" + }, + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/composabletestnet/ibc.ts b/packages/chain-registry/src/testnet/composabletestnet/ibc.ts new file mode 100644 index 000000000..950b74701 --- /dev/null +++ b/packages/chain-registry/src/testnet/composabletestnet/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-329", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/composabletestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/composabletestnet/ibc_chain1.ts new file mode 100644 index 000000000..950b74701 --- /dev/null +++ b/packages/chain-registry/src/testnet/composabletestnet/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composabletestnet", + "client_id": "07-tendermint-23", + "connection_id": "connection-18" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-273", + "connection_id": "connection-237" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-329", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/composabletestnet/index.ts b/packages/chain-registry/src/testnet/composabletestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/composabletestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/coolcattestnet/assets.ts b/packages/chain-registry/src/testnet/coolcattestnet/assets.ts new file mode 100644 index 000000000..dd9084882 --- /dev/null +++ b/packages/chain-registry/src/testnet/coolcattestnet/assets.ts @@ -0,0 +1,40 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uccat", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/coolcattestnet/chain.ts b/packages/chain-registry/src/testnet/coolcattestnet/chain.ts new file mode 100644 index 000000000..34d5c89df --- /dev/null +++ b/packages/chain-registry/src/testnet/coolcattestnet/chain.ts @@ -0,0 +1,53 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uccat" + } + ] + }, + "daemon_name": "coolcat", + "node_home": "$HOME/.coolcat", + "slip44": 118, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.coolcat.space", + "provider": "Digital Kitchen" + } + ], + "rest": [ + { + "address": "https://lcd.coolcat.space", + "provider": "Digital Kitchen" + } + ], + "grpc": [] + }, + "explorers": [] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/coolcattestnet/index.ts b/packages/chain-registry/src/testnet/coolcattestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/coolcattestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/coreumtestnet/assets.ts b/packages/chain-registry/src/testnet/coreumtestnet/assets.ts new file mode 100644 index 000000000..1fc4e5317 --- /dev/null +++ b/packages/chain-registry/src/testnet/coreumtestnet/assets.ts @@ -0,0 +1,43 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "coreumtestnet", + "assets": [ + { + "description": "The native token of Coreum", + "denom_units": [ + { + "denom": "utestcore", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/coreumtestnet/chain.ts b/packages/chain-registry/src/testnet/coreumtestnet/chain.ts new file mode 100644 index 000000000..078bbeafc --- /dev/null +++ b/packages/chain-registry/src/testnet/coreumtestnet/chain.ts @@ -0,0 +1,98 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "utestcore" + } + ], + "lock_duration": { + "time": "168h" + } + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "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" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png" + }, + "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" + } + ], + "grpc": [ + { + "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" + } + ], + "rest": [ + { + "address": "https://full-node.testnet-1.coreum.dev:1317", + "provider": "Coreum" + } + ] + }, + "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}" + } + ], + "keywords": [ + "dex", + "staking", + "wasm", + "assets", + "nft" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/coreumtestnet/index.ts b/packages/chain-registry/src/testnet/coreumtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/coreumtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/assets.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/assets.ts new file mode 100644 index 000000000..dac9b27a9 --- /dev/null +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uatom", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/chain.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/chain.ts new file mode 100644 index 000000000..98ed6e462 --- /dev/null +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/chain.ts @@ -0,0 +1,120 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "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.state-sync-01.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://rpc-theta.osmotest5.osmosis.zone/", + "provider": "Osmosis" + } + ], + "rest": [ + { + "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.state-sync-01.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://lcd-theta.osmotest5.osmosis.zone/", + "provider": "Osmosis" + } + ], + "grpc": [ + { + "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.state-sync-01.theta-testnet.polypore.xyz", + "provider": "Hypha" + }, + { + "address": "https://grpc.state-sync-02.theta-testnet.polypore.xyz", + "provider": "Hypha" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts new file mode 100644 index 000000000..0a08e8f6f --- /dev/null +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts @@ -0,0 +1,129 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3152", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2073", + "connection_id": "connection-2418" + }, + "chain_2": { + "chain_name": "empowertestnet", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2765", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2528", + "connection_id": "connection-2886" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1262", + "connection_id": "connection-1157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3306", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4156", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2777", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts new file mode 100644 index 000000000..def985464 --- /dev/null +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2765", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2528", + "connection_id": "connection-2886" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1262", + "connection_id": "connection-1157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3306", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4156", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2777", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/index.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/cosmwasmtestnet/assets.ts b/packages/chain-registry/src/testnet/cosmwasmtestnet/assets.ts new file mode 100644 index 000000000..d26646298 --- /dev/null +++ b/packages/chain-registry/src/testnet/cosmwasmtestnet/assets.ts @@ -0,0 +1,58 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "cosmwasmtestnet", + "assets": [ + { + "description": "Fee Token", + "denom_units": [ + { + "denom": "umlg", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" + } + ] + }, + { + "description": "Staking Token", + "denom_units": [ + { + "denom": "uand", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cosmwasmtestnet/chain.ts b/packages/chain-registry/src/testnet/cosmwasmtestnet/chain.ts new file mode 100644 index 000000000..c2f112420 --- /dev/null +++ b/packages/chain-registry/src/testnet/cosmwasmtestnet/chain.ts @@ -0,0 +1,60 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uand" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.27" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.malaga-420.cosmwasm.com:443", + "provider": "Confio" + } + ], + "rest": [ + { + "address": "https://api.malaga-420.cosmwasm.com", + "provider": "Confio" + } + ] + }, + "explorers": [ + { + "kind": "BIG DIPPER", + "url": "https://block-explorer.malaga-420.cosmwasm.com/", + "tx_page": "https://block-explorer.malaga-420.cosmwasm.com/transactions/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cosmwasmtestnet/index.ts b/packages/chain-registry/src/testnet/cosmwasmtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/cosmwasmtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/cosstestnet/assets.ts b/packages/chain-registry/src/testnet/cosstestnet/assets.ts new file mode 100644 index 000000000..a9acd2b8d --- /dev/null +++ b/packages/chain-registry/src/testnet/cosstestnet/assets.ts @@ -0,0 +1,27 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "cosstestnet", + "assets": [ + { + "description": "The native token of COSS", + "denom_units": [ + { + "denom": "ucgas", + "exponent": 0, + "aliases": [] + }, + { + "denom": "cgas", + "exponent": 6, + "aliases": [] + } + ], + "base": "ucgas", + "name": "cgas", + "display": "cgas", + "symbol": "cgas" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cosstestnet/chain.ts b/packages/chain-registry/src/testnet/cosstestnet/chain.ts new file mode 100644 index 000000000..39a143aa3 --- /dev/null +++ b/packages/chain-registry/src/testnet/cosstestnet/chain.ts @@ -0,0 +1,61 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ucgas" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.50.2", + "cosmwasm_enabled": false + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-coss-node-1.coss.ink", + "provider": "COSS" + }, + { + "address": "https://rpc-coss-node-2.coss.ink/", + "provider": "COSS" + } + ], + "rest": [ + { + "address": "https://rest-coss-node-1.coss.ink", + "provider": "COSS" + }, + { + "address": "https://rest-coss-node-2.coss.ink", + "provider": "COSS" + } + ] + } +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cosstestnet/index.ts b/packages/chain-registry/src/testnet/cosstestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/cosstestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/cudostestnet/assets.ts b/packages/chain-registry/src/testnet/cudostestnet/assets.ts new file mode 100644 index 000000000..9e714e403 --- /dev/null +++ b/packages/chain-registry/src/testnet/cudostestnet/assets.ts @@ -0,0 +1,39 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "cudostestnet", + "assets": [ + { + "description": "The native token of the Cudos blockchain", + "denom_units": [ + { + "denom": "acudos", + "exponent": 0, + "aliases": [ + "attocudos" + ] + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cudostestnet/chain.ts b/packages/chain-registry/src/testnet/cudostestnet/chain.ts new file mode 100644 index 000000000..13c354c6a --- /dev/null +++ b/packages/chain-registry/src/testnet/cudostestnet/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": "http://sentry-01.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" + } + ], + "rest": [ + { + "address": "https://rest.testnet.cudos.org:443", + "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-03.hosts.testnet.cudos.org:1317/", + "provider": "cudo" + } + ], + "grpc": [ + { + "address": "https://grpc.testnet.cudos.org:433", + "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-03.hosts.testnet.cudos.org:9090", + "provider": "cudo" + } + ] + }, + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/cudostestnet/index.ts b/packages/chain-registry/src/testnet/cudostestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/cudostestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/deardogetestnet/assets.ts b/packages/chain-registry/src/testnet/deardogetestnet/assets.ts new file mode 100644 index 000000000..889cf6763 --- /dev/null +++ b/packages/chain-registry/src/testnet/deardogetestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "udear", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/deardogetestnet/images/deardoge.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/deardogetestnet/chain.ts b/packages/chain-registry/src/testnet/deardogetestnet/chain.ts new file mode 100644 index 000000000..159194492 --- /dev/null +++ b/packages/chain-registry/src/testnet/deardogetestnet/chain.ts @@ -0,0 +1,60 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "udear" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc.deardoge.org", + "provider": "dorafactory" + } + ], + "rest": [ + { + "address": "https://testnet-rest.deardoge.org", + "provider": "dorafactory" + } + ], + "grpc": [ + { + "address": "testnet-grpc.deardoge.org:443", + "provider": "dorafactory" + } + ] + }, + "explorers": [ + { + "kind": "Dear Doge Ping Pub", + "url": "https://testnet-explorer.deardoge.org/deardoge", + "tx_page": "https://testnet-explorer.deardoge.org/deardoge/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/deardogetestnet/index.ts b/packages/chain-registry/src/testnet/deardogetestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/deardogetestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/desmostestnet/assets.ts b/packages/chain-registry/src/testnet/desmostestnet/assets.ts new file mode 100644 index 000000000..e69402588 --- /dev/null +++ b/packages/chain-registry/src/testnet/desmostestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "desmostestnet", + "assets": [ + { + "description": "The native token of Desmos", + "denom_units": [ + { + "denom": "udaric", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/desmostestnet/chain.ts b/packages/chain-registry/src/testnet/desmostestnet/chain.ts new file mode 100644 index 000000000..10320c140 --- /dev/null +++ b/packages/chain-registry/src/testnet/desmostestnet/chain.ts @@ -0,0 +1,74 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "udaric" + } + ] + }, + "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": [ + { + "address": "https://rpc.morpheus.desmos.network", + "provider": "desmos" + } + ], + "rest": [ + { + "address": "https://lcd.morpheus.desmos.network", + "provider": "desmos" + } + ], + "grpc": [ + { + "address": "https://grpc.morpheus.desmos.network:443", + "provider": "desmos" + } + ] + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/desmostestnet/index.ts b/packages/chain-registry/src/testnet/desmostestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/desmostestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/doravotatestnet/assets.ts b/packages/chain-registry/src/testnet/doravotatestnet/assets.ts new file mode 100644 index 000000000..30db7124e --- /dev/null +++ b/packages/chain-registry/src/testnet/doravotatestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "peaka", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/doravotatestnet/chain.ts b/packages/chain-registry/src/testnet/doravotatestnet/chain.ts new file mode 100644 index 000000000..99c67abb4 --- /dev/null +++ b/packages/chain-registry/src/testnet/doravotatestnet/chain.ts @@ -0,0 +1,60 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "peaka" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://vota-testnet-rpc.dorafactory.org/", + "provider": "dorafactory" + } + ], + "rest": [ + { + "address": "https://vota-testnet-rest.dorafactory.org", + "provider": "dorafactory" + } + ], + "grpc": [ + { + "address": "vota-testnet-grpc.dorafactory.org:443", + "provider": "dorafactory" + } + ] + }, + "explorers": [ + { + "kind": "Dora Vota Ping Pub", + "url": "https://maci-explorer-test.dorafactory.org", + "tx_page": "https://maci-explorer-test.dorafactory.org/dora/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/doravotatestnet/ibc.ts b/packages/chain-registry/src/testnet/doravotatestnet/ibc.ts new file mode 100644 index 000000000..247758409 --- /dev/null +++ b/packages/chain-registry/src/testnet/doravotatestnet/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1260", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/doravotatestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/doravotatestnet/ibc_chain1.ts new file mode 100644 index 000000000..247758409 --- /dev/null +++ b/packages/chain-registry/src/testnet/doravotatestnet/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "doravotatestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-611" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1260", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/doravotatestnet/index.ts b/packages/chain-registry/src/testnet/doravotatestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/doravotatestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/doravotatestnet2/assets.ts b/packages/chain-registry/src/testnet/doravotatestnet2/assets.ts new file mode 100644 index 000000000..763783919 --- /dev/null +++ b/packages/chain-registry/src/testnet/doravotatestnet2/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "peaka", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/doravotatestnet2/chain.ts b/packages/chain-registry/src/testnet/doravotatestnet2/chain.ts new file mode 100644 index 000000000..93553640c --- /dev/null +++ b/packages/chain-registry/src/testnet/doravotatestnet2/chain.ts @@ -0,0 +1,60 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "peaka" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://vota-vk-rpc.dorafactory.org/", + "provider": "dorafactory" + } + ], + "rest": [ + { + "address": "https://vota-vk-rest.dorafactory.org", + "provider": "dorafactory" + } + ], + "grpc": [ + { + "address": "vota-vk-grpc.dorafactory.org:443", + "provider": "dorafactory" + } + ] + }, + "explorers": [ + { + "kind": "Dora Vota Ping Pub", + "url": "https://vota-vk-explorer.dorafactory.org", + "tx_page": "https://vota-vk-explorer.dorafactory.org/doravotaincentive/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/doravotatestnet2/index.ts b/packages/chain-registry/src/testnet/doravotatestnet2/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/doravotatestnet2/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/dydxtestnet/assets.ts b/packages/chain-registry/src/testnet/dydxtestnet/assets.ts new file mode 100644 index 000000000..294c08918 --- /dev/null +++ b/packages/chain-registry/src/testnet/dydxtestnet/assets.ts @@ -0,0 +1,52 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "dydxtestnet", + "assets": [ + { + "description": "The native staking token of dYdX Protocol.", + "denom_units": [ + { + "denom": "adydx", + "exponent": 0 + }, + { + "denom": "dydx", + "exponent": 18 + } + ], + "base": "adydx", + "name": "dYdX", + "display": "dydx", + "symbol": "DYDX", + "coingecko_id": "dydx", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "dydx", + "base_denom": "adydx" + }, + "provider": "Dydx" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", + "theme": { + "circle": true + } + } + ], + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/dydxtestnet/chain.ts b/packages/chain-registry/src/testnet/dydxtestnet/chain.ts new file mode 100644 index 000000000..55907f990 --- /dev/null +++ b/packages/chain-registry/src/testnet/dydxtestnet/chain.ts @@ -0,0 +1,106 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "adydx" + } + ] + }, + "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.", + "apis": { + "rpc": [ + { + "address": "https://dydx-rpc-testnet.enigma-validator.com", + "provider": "Enigma" + }, + { + "address": "https://testnet-dydx-rpc.lavenderfive.com", + "provider": "Lavender Five" + }, + { + "address": "https://test-dydx.kingnodes.com", + "provider": "KingNodes" + }, + { + "address": "https://dydx-testnet-rpc.polkachu.com", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://dydx-lcd-testnet.enigma-validator.com", + "provider": "Enigma" + }, + { + "address": "https://testnet-dydx-api.lavenderfive.com", + "provider": "Lavender Five" + }, + { + "address": "https://dydx-testnet-api.polkachu.com", + "provider": "Polkachu" + } + ], + "grpc": [ + { + "address": "https://testnet-dydx-rpc.lavenderfive.com", + "provider": "Lavender Five" + }, + { + "address": "https://dydx-testnet-api.polkachu.com", + "provider": "Polkachu" + } + ] + }, + "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}" + } + ], + "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/dydxtestnet/ibc.ts b/packages/chain-registry/src/testnet/dydxtestnet/ibc.ts new file mode 100644 index 000000000..f7c6d6d9d --- /dev/null +++ b/packages/chain-registry/src/testnet/dydxtestnet/ibc.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-297", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/dydxtestnet/index.ts b/packages/chain-registry/src/testnet/dydxtestnet/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/dydxtestnet/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/testnet/elystestnet/assets.ts b/packages/chain-registry/src/testnet/elystestnet/assets.ts new file mode 100644 index 000000000..a516051a0 --- /dev/null +++ b/packages/chain-registry/src/testnet/elystestnet/assets.ts @@ -0,0 +1,81 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "elystestnet", + "assets": [ + { + "description": "The native token of Elys Network", + "denom_units": [ + { + "denom": "uelys", + "exponent": 0, + "aliases": [ + "microelys" + ] + }, + { + "denom": "melys", + "exponent": 3, + "aliases": [ + "millielys" + ] + }, + { + "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" + }, + "coingecko_id": "elys", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png" + } + ] + }, + { + "description": "Eden token definition", + "denom_units": [ + { + "denom": "ueden", + "exponent": 0, + "aliases": [ + "microeden" + ] + }, + { + "denom": "meden", + "exponent": 3, + "aliases": [ + "millieden" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/elystestnet/chain.ts b/packages/chain-registry/src/testnet/elystestnet/chain.ts new file mode 100644 index 000000000..443aba274 --- /dev/null +++ b/packages/chain-registry/src/testnet/elystestnet/chain.ts @@ -0,0 +1,76 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "v0.47", + "cosmwasm_enabled": false + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.testnet.elys.network", + "provider": "Elys Network" + }, + { + "address": "https://elys-testnet-rpc.staketab.org:443", + "provider": "Staketab" + } + ], + "rest": [ + { + "address": "https://api.testnet.elys.network", + "provider": "Elys Network" + }, + { + "address": "https://elys.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://elys-testnet-rest.staketab.org", + "provider": "Staketab" + } + ], + "grpc": [ + { + "address": "services.staketab.com:9390", + "provider": "Staketab" + } + ] + }, + "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": "ping.pub", + "url": "https://testnet.elys.network/elys", + "tx_page": "https://testnet.elys.network/elys/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/elystestnet/index.ts b/packages/chain-registry/src/testnet/elystestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/elystestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/empowertestnet/assets.ts b/packages/chain-registry/src/testnet/empowertestnet/assets.ts new file mode 100644 index 000000000..023173583 --- /dev/null +++ b/packages/chain-registry/src/testnet/empowertestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "empowertestnet", + "assets": [ + { + "description": "The native staking and governance token of the testnet version of Empower.", + "denom_units": [ + { + "denom": "umpwr", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empowertestnet/images/mpwr.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/empowertestnet/chain.ts b/packages/chain-registry/src/testnet/empowertestnet/chain.ts new file mode 100644 index 000000000..4c050f729 --- /dev/null +++ b/packages/chain-registry/src/testnet/empowertestnet/chain.ts @@ -0,0 +1,150 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://empower-testnet-rpc.polkachu.com:443", + "provider": "Polkachu" + }, + { + "address": "https://empower.rpc.cumulo.com.es:443", + "provider": "Cumulo" + }, + { + "address": "https://rpc-t.empower.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://rpc-empower.nodeist.net:443", + "provider": "Nodeist" + }, + { + "address": "https://empower-testnet.nodejumper.io:443", + "provider": "NODEJUMPER" + }, + { + "address": "https://empower-testnet-rpc.itrocket.net:443", + "provider": "ITRocket" + }, + { + "address": "https://rpc.circulus-1.empower.aviaone.com:443", + "provider": "AviaOne" + } + ], + "rest": [ + { + "address": "https://empower-testnet-api.polkachu.com:443", + "provider": "Polkachu" + }, + { + "address": "https://empower.api.cumulo.com.es:443", + "provider": "Cumulo" + }, + { + "address": "https://empw.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://api-t.empower.nodestake.top:443", + "provider": "NodeStake" + }, + { + "address": "https://api-empower.nodeist.net:443", + "provider": "Nodeist" + }, + { + "address": "https://empower-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" + }, + { + "address": "https://empower-testnet-api.itrocket.net:443", + "provider": "ITRocket" + }, + { + "address": "https://api.circulus-1.empower.aviaone.com", + "provider": "AviaOne" + } + ], + "grpc": [ + { + "address": "empower-testnet-grpc.polkachu.com:17490", + "provider": "Polkachu" + }, + { + "address": "empower.grpc.cumulo.com.es:443", + "provider": "Cumulo" + }, + { + "address": "grpc-t.empower.nodestake.top:9090", + "provider": "NodeStake" + }, + { + "address": "empower-testnet.nodejumper.io:9090", + "provider": "NODEJUMPER" + }, + { + "address": "empower-testnet-grpc.itrocket.net:16090", + "provider": "ITRocket" + }, + { + "address": "grpc.circulus-1.empower.aviaone.com:443", + "provider": "AviaOne" + } + ] + }, + "explorers": [ + { + "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": "🔥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://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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/empowertestnet/ibc.ts b/packages/chain-registry/src/testnet/empowertestnet/ibc.ts new file mode 100644 index 000000000..f957b177a --- /dev/null +++ b/packages/chain-registry/src/testnet/empowertestnet/ibc.ts @@ -0,0 +1,97 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2765", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "empowertestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-146", + "connection_id": "connection-157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-155", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargazetestnet", + "client_id": "07-tendermint-450", + "connection_id": "connection-469" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-459", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/empowertestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/empowertestnet/ibc_chain1.ts new file mode 100644 index 000000000..7b6ea00bd --- /dev/null +++ b/packages/chain-registry/src/testnet/empowertestnet/ibc_chain1.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "empowertestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-146", + "connection_id": "connection-157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-155", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargazetestnet", + "client_id": "07-tendermint-450", + "connection_id": "connection-469" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-459", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/empowertestnet/index.ts b/packages/chain-registry/src/testnet/empowertestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/empowertestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/entrypointtestnet/assets.ts b/packages/chain-registry/src/testnet/entrypointtestnet/assets.ts new file mode 100644 index 000000000..6a409186f --- /dev/null +++ b/packages/chain-registry/src/testnet/entrypointtestnet/assets.ts @@ -0,0 +1,83 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "entrypointtestnet", + "assets": [ + { + "description": "The native token of EntryPoint", + "denom_units": [ + { + "denom": "uentry", + "exponent": 0, + "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" + }, + "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" + } + ] + }, + { + "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": "atom", + "exponent": 6 + } + ], + "base": "ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C", + "name": "Cosmos", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "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" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/entrypointtestnet/chain.ts b/packages/chain-registry/src/testnet/entrypointtestnet/chain.ts new file mode 100644 index 000000000..ed32067e2 --- /dev/null +++ b/packages/chain-registry/src/testnet/entrypointtestnet/chain.ts @@ -0,0 +1,88 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.47.4" + }, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc.entrypoint.zone", + "provider": "Simply Staking" + } + ], + "rest": [ + { + "address": "https://entry.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "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" + }, + "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": "🔥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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/entrypointtestnet/ibc.ts b/packages/chain-registry/src/testnet/entrypointtestnet/ibc.ts new file mode 100644 index 000000000..f82864282 --- /dev/null +++ b/packages/chain-registry/src/testnet/entrypointtestnet/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1543", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/entrypointtestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/entrypointtestnet/ibc_chain1.ts new file mode 100644 index 000000000..f82864282 --- /dev/null +++ b/packages/chain-registry/src/testnet/entrypointtestnet/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "entrypointtestnet", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-930", + "connection_id": "connection-840" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1543", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/entrypointtestnet/index.ts b/packages/chain-registry/src/testnet/entrypointtestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/entrypointtestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/evmostestnet/assets.ts b/packages/chain-registry/src/testnet/evmostestnet/assets.ts new file mode 100644 index 000000000..3c0405397 --- /dev/null +++ b/packages/chain-registry/src/testnet/evmostestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "evmostestnet", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Evmos Hub", + "denom_units": [ + { + "denom": "atevmos", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/evmostestnet/chain.ts b/packages/chain-registry/src/testnet/evmostestnet/chain.ts new file mode 100644 index 000000000..c1893c145 --- /dev/null +++ b/packages/chain-registry/src/testnet/evmostestnet/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "atevmos" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.46" + }, + "apis": { + "rpc": [ + { + "address": "https://evmos.test.rpc.coldyvalidator.net", + "provider": "coldy" + }, + { + "address": "https://evmos-testnet-rpc.polkachu.com", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://evmos.test.api.coldyvalidator.net", + "provider": "coldy" + }, + { + "address": "https://evmos-testnet-api.polkachu.com", + "provider": "Polkachu" + } + ], + "grpc": [ + { + "address": "https://evmos.test.grpc.coldyvalidator.net", + "provider": "coldy" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/evmostestnet/index.ts b/packages/chain-registry/src/testnet/evmostestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/evmostestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/fetchhubtestnet/assets.ts b/packages/chain-registry/src/testnet/fetchhubtestnet/assets.ts new file mode 100644 index 000000000..d1f0830c6 --- /dev/null +++ b/packages/chain-registry/src/testnet/fetchhubtestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "fetchhubtestnet", + "assets": [ + { + "description": "The native staking and governance token of the Fetch Hub.", + "denom_units": [ + { + "denom": "atestfet", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/fetchhubtestnet/chain.ts b/packages/chain-registry/src/testnet/fetchhubtestnet/chain.ts new file mode 100644 index 000000000..fb20fd17d --- /dev/null +++ b/packages/chain-registry/src/testnet/fetchhubtestnet/chain.ts @@ -0,0 +1,65 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "atestfet" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-dorado.fetch.ai:443", + "provider": "fetch.ai" + } + ], + "rest": [ + { + "address": "https://rest-dorado.fetch.ai", + "provider": "fetch.ai" + } + ], + "grpc": [ + { + "address": "grpc-dorado.fetch.ai:443", + "provider": "fetch.ai" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/fetchhubtestnet/index.ts b/packages/chain-registry/src/testnet/fetchhubtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/fetchhubtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/gitopiatestnet/assets.ts b/packages/chain-registry/src/testnet/gitopiatestnet/assets.ts new file mode 100644 index 000000000..3fc7a7ad4 --- /dev/null +++ b/packages/chain-registry/src/testnet/gitopiatestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "gitopiatestnet", + "assets": [ + { + "description": "The native staking and governance token of the testnet version of Gitopia.", + "denom_units": [ + { + "denom": "utlore", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/gitopiatestnet/images/gitopia.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/gitopiatestnet/chain.ts b/packages/chain-registry/src/testnet/gitopiatestnet/chain.ts new file mode 100644 index 000000000..22b375387 --- /dev/null +++ b/packages/chain-registry/src/testnet/gitopiatestnet/chain.ts @@ -0,0 +1,53 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://gitopia-testnet.nodejumper.io", + "provider": "NODEJUMPER" + } + ], + "rest": [ + { + "address": "https://gitopia-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" + } + ], + "grpc": [ + { + "address": "https://gitopia-testnet.nodejumper.io:9090", + "provider": "NODEJUMPER" + } + ] + }, + "explorers": [ + { + "kind": "explorer.humans.zone", + "url": "https://gitopia.explorers.guru/", + "tx_page": "https://gitopia.explorers.guru/transaction/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/gitopiatestnet/index.ts b/packages/chain-registry/src/testnet/gitopiatestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/gitopiatestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/humanstestnet/assets.ts b/packages/chain-registry/src/testnet/humanstestnet/assets.ts new file mode 100644 index 000000000..256f20735 --- /dev/null +++ b/packages/chain-registry/src/testnet/humanstestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "humanstestnet", + "assets": [ + { + "description": "The native staking and governance token of the testnet version of Humans AI.", + "denom_units": [ + { + "denom": "uheart", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/humanstestnet/images/humans.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/humanstestnet/chain.ts b/packages/chain-registry/src/testnet/humanstestnet/chain.ts new file mode 100644 index 000000000..97a14e649 --- /dev/null +++ b/packages/chain-registry/src/testnet/humanstestnet/chain.ts @@ -0,0 +1,53 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://humans-testnet.nodejumper.io", + "provider": "NODEJUMPER" + } + ], + "rest": [ + { + "address": "https://humans-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" + } + ], + "grpc": [ + { + "address": "https://humans-testnet.nodejumper.io:9090", + "provider": "NODEJUMPER" + } + ] + }, + "explorers": [ + { + "kind": "explorer.humans.zone", + "url": "https://explorer.humans.zone/", + "tx_page": "https://explorer.humans.zone/humans-testnet/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/humanstestnet/index.ts b/packages/chain-registry/src/testnet/humanstestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/humanstestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/hypersigntestnet/assets.ts b/packages/chain-registry/src/testnet/hypersigntestnet/assets.ts new file mode 100644 index 000000000..eb74e76fe --- /dev/null +++ b/packages/chain-registry/src/testnet/hypersigntestnet/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "hypersigntestnet", + "assets": [ + { + "description": "Native token for Hypersign Identity Network", + "denom_units": [ + { + "denom": "uhid", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "hypersign-identity-token", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hypersigntestnet/images/hypersign.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/hypersigntestnet/chain.ts b/packages/chain-registry/src/testnet/hypersigntestnet/chain.ts new file mode 100644 index 000000000..4a23d29aa --- /dev/null +++ b/packages/chain-registry/src/testnet/hypersigntestnet/chain.ts @@ -0,0 +1,87 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.jagrat.hypersign.id", + "provider": "hypersign" + }, + { + "address": "http://hid.rpc.t.stavr.tech:11057", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://hypersign-testnet-rpc.stakerhouse.com", + "provider": "StakerHouse" + } + ], + "rest": [ + { + "address": "https://api.jagrat.hypersign.id", + "provider": "hypersign" + }, + { + "address": "https://hid.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://hypersign-testnet-rest.stakerhouse.com", + "provider": "StakerHouse" + } + ], + "grpc": [ + { + "address": "grpc.jagrat.hypersign.id:5099", + "provider": "hypersign" + }, + { + "address": "http://hid.grpc.t.stavr.tech:8022", + "provider": "🔥STAVR🔥" + }, + { + "address": "hypersign-testnet-grpc.stakerhouse.com:443", + "provider": "StakerHouse" + } + ] + }, + "explorers": [ + { + "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": "cosmotracker", + "url": "https://cosmotracker.com/hypersign", + "tx_page": "https://cosmotracker.com/hypersign/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/hypersigntestnet/index.ts b/packages/chain-registry/src/testnet/hypersigntestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/hypersigntestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/ibc.ts b/packages/chain-registry/src/testnet/ibc.ts new file mode 100644 index 000000000..cb1180082 --- /dev/null +++ b/packages/chain-registry/src/testnet/ibc.ts @@ -0,0 +1,27 @@ +import { IBCInfo } from '@chain-registry/types'; + +import * as _akashtestnet from './akashtestnet'; +import * as _archwaytestnet from './archwaytestnet'; +import * as _axelartestnet from './axelartestnet'; +import * as _celestiatestnet3 from './celestiatestnet3'; +import * as _chain4energytestnet from './chain4energytestnet'; +import * as _composabletestnet from './composabletestnet'; +import * as _cosmoshubtestnet from './cosmoshubtestnet'; +import * as _doravotatestnet from './doravotatestnet'; +import * as _empowertestnet from './empowertestnet'; +import * as _entrypointtestnet from './entrypointtestnet'; +import * as _impacthubtestnet from './impacthubtestnet'; +import * as _injectivetestnet from './injectivetestnet'; +import * as _junotestnet from './junotestnet'; +import * as _kyvetestnet from './kyvetestnet'; +import * as _likecointestnet from './likecointestnet'; +import * as _marstestnet from './marstestnet'; +import * as _neutrontestnet from './neutrontestnet'; +import * as _nobletestnet from './nobletestnet'; +import * as _noistestnet from './noistestnet'; +import * as _nolustestnet from './nolustestnet'; +import * as _osmosistestnet from './osmosistestnet' + +const ibc: IBCInfo[] = [..._akashtestnet.ibc_chain1,..._archwaytestnet.ibc_chain1,..._axelartestnet.ibc_chain1,..._celestiatestnet3.ibc_chain1,..._chain4energytestnet.ibc_chain1,..._composabletestnet.ibc_chain1,..._cosmoshubtestnet.ibc_chain1,..._doravotatestnet.ibc_chain1,..._empowertestnet.ibc_chain1,..._entrypointtestnet.ibc_chain1,..._impacthubtestnet.ibc_chain1,..._injectivetestnet.ibc_chain1,..._junotestnet.ibc_chain1,..._kyvetestnet.ibc_chain1,..._likecointestnet.ibc_chain1,..._marstestnet.ibc_chain1,..._neutrontestnet.ibc_chain1,..._nobletestnet.ibc_chain1,..._noistestnet.ibc_chain1,..._nolustestnet.ibc_chain1,..._osmosistestnet.ibc_chain1]; + +export default ibc; diff --git a/packages/chain-registry/src/testnet/impacthubtestnet/assets.ts b/packages/chain-registry/src/testnet/impacthubtestnet/assets.ts new file mode 100644 index 000000000..6acd31159 --- /dev/null +++ b/packages/chain-registry/src/testnet/impacthubtestnet/assets.ts @@ -0,0 +1,49 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "impacthubtestnet", + "assets": [ + { + "description": "The native token of IXO Chain", + "denom_units": [ + { + "denom": "uixo", + "exponent": 0 + }, + { + "denom": "ixo", + "exponent": 6 + } + ], + "base": "uixo", + "name": "IXO", + "display": "ixo", + "symbol": "IXO", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "impacthub", + "base_denom": "uixo" + }, + "provider": "impacthub" + } + ], + "images": [ + { + "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" + } + ], + "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" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/impacthubtestnet/chain.ts b/packages/chain-registry/src/testnet/impacthubtestnet/chain.ts new file mode 100644 index 000000000..915838224 --- /dev/null +++ b/packages/chain-registry/src/testnet/impacthubtestnet/chain.ts @@ -0,0 +1,71 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uixo" + } + ] + }, + "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": [ + { + "address": "https://rpc.testnet.ixo.earth/", + "provider": "ixoworld" + } + ], + "rest": [ + { + "address": "https://testnet.ixo.earth/rest/", + "provider": "ixoworld" + } + ], + "grpc": [] + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/impacthubtestnet/ibc.ts b/packages/chain-registry/src/testnet/impacthubtestnet/ibc.ts new file mode 100644 index 000000000..a51bd7dad --- /dev/null +++ b/packages/chain-registry/src/testnet/impacthubtestnet/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1637", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/impacthubtestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/impacthubtestnet/ibc_chain1.ts new file mode 100644 index 000000000..a51bd7dad --- /dev/null +++ b/packages/chain-registry/src/testnet/impacthubtestnet/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "impacthubtestnet", + "client_id": "07-tendermint-53", + "connection_id": "connection-23" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1010", + "connection_id": "connection-911" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1637", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/impacthubtestnet/index.ts b/packages/chain-registry/src/testnet/impacthubtestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/impacthubtestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/imversedtestnet/assets.ts b/packages/chain-registry/src/testnet/imversedtestnet/assets.ts new file mode 100644 index 000000000..6e17ecd07 --- /dev/null +++ b/packages/chain-registry/src/testnet/imversedtestnet/assets.ts @@ -0,0 +1,68 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "imversedtestnet", + "assets": [ + { + "description": "The native staking and governance token of the Imversed testnet.", + "denom_units": [ + { + "denom": "nimv", + "exponent": 0, + "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" + }, + "images": [ + { + "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": [ + { + "denom": "ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B", + "exponent": 0, + "aliases": [ + "usaage" + ] + }, + { + "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" + }, + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/imversedtestnet/chain.ts b/packages/chain-registry/src/testnet/imversedtestnet/chain.ts new file mode 100644 index 000000000..ebe371cfd --- /dev/null +++ b/packages/chain-registry/src/testnet/imversedtestnet/chain.ts @@ -0,0 +1,53 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://tx-endpoint-test.imversed.com/", + "provider": "imversed" + } + ], + "rest": [ + { + "address": "https://query-endpoint-test.imversed.com/", + "provider": "imversed" + } + ], + "grpc": [ + { + "address": "http://qs.imversed.com:9090", + "provider": "imversed" + } + ] + }, + "explorers": [ + { + "kind": "Big Dipper", + "url": "https://tex-s.imversed.com", + "tx_page": "https://tex-s.imversed.com/transactions/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/imversedtestnet/index.ts b/packages/chain-registry/src/testnet/imversedtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/imversedtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/index.ts b/packages/chain-registry/src/testnet/index.ts new file mode 100644 index 000000000..bd3794fd5 --- /dev/null +++ b/packages/chain-registry/src/testnet/index.ts @@ -0,0 +1,85 @@ +export * as akashtestnet from './akashtestnet'; +export * as archwaytestnet from './archwaytestnet'; +export * as arkeonetworktestnet from './arkeonetworktestnet'; +export * as artelatestnet from './artelatestnet'; +export * as auratestnet from './auratestnet'; +export * as axelartestnet from './axelartestnet'; +export * as babylontestnet from './babylontestnet'; +export * as bitcannadevnet from './bitcannadevnet'; +export * as cascadiatestnet from './cascadiatestnet'; +export * as celestiatestnet from './celestiatestnet'; +export * as celestiatestnet3 from './celestiatestnet3'; +export * as chain4energytestnet from './chain4energytestnet'; +export * as cheqdtestnet from './cheqdtestnet'; +export * as chimbatestnet from './chimbatestnet'; +export * as composabletestnet from './composabletestnet'; +export * as coolcattestnet from './coolcattestnet'; +export * as coreumtestnet from './coreumtestnet'; +export * as cosmoshubtestnet from './cosmoshubtestnet'; +export * as cosmwasmtestnet from './cosmwasmtestnet'; +export * as cosstestnet from './cosstestnet'; +export * as cudostestnet from './cudostestnet'; +export * as deardogetestnet from './deardogetestnet'; +export * as desmostestnet from './desmostestnet'; +export * as doravotatestnet from './doravotatestnet'; +export * as doravotatestnet2 from './doravotatestnet2'; +export * as dydxtestnet from './dydxtestnet'; +export * as elystestnet from './elystestnet'; +export * as empowertestnet from './empowertestnet'; +export * as entrypointtestnet from './entrypointtestnet'; +export * as evmostestnet from './evmostestnet'; +export * as fetchhubtestnet from './fetchhubtestnet'; +export * as gitopiatestnet from './gitopiatestnet'; +export * as humanstestnet from './humanstestnet'; +export * as hypersigntestnet from './hypersigntestnet'; +export * as impacthubtestnet from './impacthubtestnet'; +export * as imversedtestnet from './imversedtestnet'; +export * as injectivetestnet from './injectivetestnet'; +export * as jackaltestnet from './jackaltestnet'; +export * as junotestnet from './junotestnet'; +export * as kichaintestnet from './kichaintestnet'; +export * as kujiratestnet from './kujiratestnet'; +export * as kyvetestnet from './kyvetestnet'; +export * as lavatestnet from './lavatestnet'; +export * as lavatestnet2 from './lavatestnet2'; +export * as likecointestnet from './likecointestnet'; +export * as lumenxtestnet from './lumenxtestnet'; +export * as marstestnet from './marstestnet'; +export * as migalootestnet from './migalootestnet'; +export * as neutrontestnet from './neutrontestnet'; +export * as nobletestnet from './nobletestnet'; +export * as noistestnet from './noistestnet'; +export * as nolustestnet from './nolustestnet'; +export * as okp4testnet from './okp4testnet'; +export * as osmosistestnet from './osmosistestnet'; +export * as osmosistestnet4 from './osmosistestnet4'; +export * as permtestnet from './permtestnet'; +export * as persistencetestnet from './persistencetestnet'; +export * as persistencetestnet2 from './persistencetestnet2'; +export * as pryzmtestnet from './pryzmtestnet'; +export * as quasartestnet from './quasartestnet'; +export * as quicksilvertestnet from './quicksilvertestnet'; +export * as qwoyntestnet from './qwoyntestnet'; +export * as rsprovidertestnet from './rsprovidertestnet'; +export * as sagatestnet from './sagatestnet'; +export * as secretnetworktestnet from './secretnetworktestnet'; +export * as secretnetworktestnet2 from './secretnetworktestnet2'; +export * as seitestnet from './seitestnet'; +export * as seitestnet2 from './seitestnet2'; +export * as selfchaindevnet from './selfchaindevnet'; +export * as sgetestnet from './sgetestnet'; +export * as sixtestnet from './sixtestnet'; +export * as sourcetestnet from './sourcetestnet'; +export * as stargazetestnet from './stargazetestnet'; +export * as statesettestnet from './statesettestnet'; +export * as stridetestnet from './stridetestnet'; +export * as temporaltestnet from './temporaltestnet'; +export * as terpnettestnet from './terpnettestnet'; +export * as terra2testnet from './terra2testnet'; +export * as ulastestnet from './ulastestnet'; +export * as uniontestnet from './uniontestnet'; +export * as upticktestnet from './upticktestnet'; +export * as vincechaintestnet from './vincechaintestnet'; +export * as wavehashtestnet from './wavehashtestnet'; +export * as xiontestnet from './xiontestnet'; +export * as zetachaintestnet from './zetachaintestnet' \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/injectivetestnet/assets.ts b/packages/chain-registry/src/testnet/injectivetestnet/assets.ts new file mode 100644 index 000000000..cc4a62694 --- /dev/null +++ b/packages/chain-registry/src/testnet/injectivetestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "injectivetestnet", + "assets": [ + { + "description": "The INJ token is the native governance token for the Injective chain.", + "denom_units": [ + { + "denom": "inj", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/injectivetestnet/chain.ts b/packages/chain-registry/src/testnet/injectivetestnet/chain.ts new file mode 100644 index 000000000..b3552965e --- /dev/null +++ b/packages/chain-registry/src/testnet/injectivetestnet/chain.ts @@ -0,0 +1,88 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://injective-testnet-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://k8s.testnet.tm.injective.network:443", + "provider": "injectiveLabs" + }, + { + "address": "https://testnet.tm.injective.network", + "provider": "injectiveLabs" + } + ], + "rest": [ + { + "address": "https://injective-testnet-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://k8s.testnet.lcd.injective.network", + "provider": "injectiveLabs" + }, + { + "address": "https://testnet.grpc.injective.network", + "provider": "injectiveLabs" + } + ], + "grpc": [ + { + "address": "injective-testnet-grpc.polkachu.com:14390", + "provider": "Polkachu" + }, + { + "address": "k8s.testnet.chain.grpc.injective.network:443", + "provider": "injectiveLabs" + }, + { + "address": "https://testnet.grpc.injective.network", + "provider": "injectiveLabs" + } + ] + }, + "explorers": [ + { + "kind": "injectiveprotocol", + "url": "https://testnet.explorer.injective.network/", + "tx_page": "https://testnet.explorer.injective.network/transaction/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/injectivetestnet/ibc.ts b/packages/chain-registry/src/testnet/injectivetestnet/ibc.ts new file mode 100644 index 000000000..9f5934b03 --- /dev/null +++ b/packages/chain-registry/src/testnet/injectivetestnet/ibc.ts @@ -0,0 +1,83 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-74", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-77", + "port_id": "wasm.inj14nendtsz0c40n7xtzwkjmdc8dkuz835jdydxhn" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1273", + "connection_id": "connection-1173" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-129", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4174", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/injectivetestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/injectivetestnet/ibc_chain1.ts new file mode 100644 index 000000000..9f5934b03 --- /dev/null +++ b/packages/chain-registry/src/testnet/injectivetestnet/ibc_chain1.ts @@ -0,0 +1,83 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-74", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-77", + "port_id": "wasm.inj14nendtsz0c40n7xtzwkjmdc8dkuz835jdydxhn" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1273", + "connection_id": "connection-1173" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-129", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4174", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/injectivetestnet/index.ts b/packages/chain-registry/src/testnet/injectivetestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/injectivetestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/jackaltestnet/assets.ts b/packages/chain-registry/src/testnet/jackaltestnet/assets.ts new file mode 100644 index 000000000..836b93b84 --- /dev/null +++ b/packages/chain-registry/src/testnet/jackaltestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "jackaltestnet", + "assets": [ + { + "description": "The native staking and governance token of Jackal.", + "denom_units": [ + { + "denom": "ujkl", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/jackaltestnet/chain.ts b/packages/chain-registry/src/testnet/jackaltestnet/chain.ts new file mode 100644 index 000000000..06ab42d29 --- /dev/null +++ b/packages/chain-registry/src/testnet/jackaltestnet/chain.ts @@ -0,0 +1,72 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "http://jkl.rpc.t.stavr.tech:19127", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://testnet-rpc.jackalprotocol.com", + "provider": "Jackal Labs" + } + ], + "rest": [ + { + "address": "https://jkl.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://testnet-api.jackalprotocol.com", + "provider": "Jackal Labs" + } + ], + "grpc": [ + { + "address": "http://jkl.grpc.t.stavr.tech:5913", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://testnet-grpc.jackalprotocol.com", + "provider": "Jackal Labs" + } + ] + }, + "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": "ping.pub", + "url": "https://ping.pub/jackal", + "tx_page": "https://ping.pub/jackal/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/jackaltestnet/index.ts b/packages/chain-registry/src/testnet/jackaltestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/jackaltestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/junotestnet/assets.ts b/packages/chain-registry/src/testnet/junotestnet/assets.ts new file mode 100644 index 000000000..77acc59a6 --- /dev/null +++ b/packages/chain-registry/src/testnet/junotestnet/assets.ts @@ -0,0 +1,61 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "junotestnet", + "assets": [ + { + "description": "The native token of JUNO Chain", + "denom_units": [ + { + "denom": "ujunox", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "The native token of NEXX GEN AI", + "denom_units": [ + { + "denom": "factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/junotestnet/chain.ts b/packages/chain-registry/src/testnet/junotestnet/chain.ts new file mode 100644 index 000000000..ee197b6ea --- /dev/null +++ b/packages/chain-registry/src/testnet/junotestnet/chain.ts @@ -0,0 +1,103 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ujunox" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.31" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.uni.junonetwork.io", + "provider": "Juno" + }, + { + "address": "https://juno-testnet-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://uni-rpc.reece.sh", + "provider": "Reecepbcups" + } + ], + "rest": [ + { + "address": "https://api.uni.junonetwork.io", + "provider": "Juno" + }, + { + "address": "https://juno-testnet-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://juno.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://uni-api.reece.sh", + "provider": "Reecepbcups" + } + ], + "grpc": [ + { + "address": "juno-testnet-grpc.polkachu.com:12690", + "provider": "Polkachu" + } + ] + }, + "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": "🔥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": "NodesGuru", + "url": "https://testnet.juno.explorers.guru/", + "tx_page": "https://testnet.juno.explorers.guru/transaction/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/junotestnet/ibc.ts b/packages/chain-registry/src/testnet/junotestnet/ibc.ts new file mode 100644 index 000000000..0badfdb28 --- /dev/null +++ b/packages/chain-registry/src/testnet/junotestnet/ibc.ts @@ -0,0 +1,115 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-877", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-198", + "port_id": "wasm.juno1pjpntyvkxeuxd709jlupuea3xzxlzsfq574kqefv77fr2kcg4mcqvwqedq" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1268", + "connection_id": "connection-1166" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-811", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4167", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-4413", + "connection_id": "connection-3814" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3316", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/junotestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/junotestnet/ibc_chain1.ts new file mode 100644 index 000000000..0badfdb28 --- /dev/null +++ b/packages/chain-registry/src/testnet/junotestnet/ibc_chain1.ts @@ -0,0 +1,115 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-877", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-198", + "port_id": "wasm.juno1pjpntyvkxeuxd709jlupuea3xzxlzsfq574kqefv77fr2kcg4mcqvwqedq" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1268", + "connection_id": "connection-1166" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-811", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4167", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-4413", + "connection_id": "connection-3814" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3316", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/junotestnet/index.ts b/packages/chain-registry/src/testnet/junotestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/junotestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/kichaintestnet/assets.ts b/packages/chain-registry/src/testnet/kichaintestnet/assets.ts new file mode 100644 index 000000000..e49e4a54f --- /dev/null +++ b/packages/chain-registry/src/testnet/kichaintestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "kichaintestnet", + "assets": [ + { + "description": "The native token of Ki Chain", + "denom_units": [ + { + "denom": "utki", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/kichaintestnet/chain.ts b/packages/chain-registry/src/testnet/kichaintestnet/chain.ts new file mode 100644 index 000000000..9b1aed0d1 --- /dev/null +++ b/packages/chain-registry/src/testnet/kichaintestnet/chain.ts @@ -0,0 +1,47 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-challenge.blockchain.ki/", + "provider": "kifoundation" + } + ], + "rest": [ + { + "address": "https://api-challenge.blockchain.ki/", + "provider": "kifoundation" + } + ] + }, + "explorers": [ + { + "kind": "kifoundation", + "url": "https://kichain-t-4.blockchain.ki/", + "tx_page": "https://kichain-t-4.blockchain.ki/transactions/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/kichaintestnet/index.ts b/packages/chain-registry/src/testnet/kichaintestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/kichaintestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/kujiratestnet/assets.ts b/packages/chain-registry/src/testnet/kujiratestnet/assets.ts new file mode 100644 index 000000000..1f6ec24e8 --- /dev/null +++ b/packages/chain-registry/src/testnet/kujiratestnet/assets.ts @@ -0,0 +1,58 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "kujiratestnet", + "assets": [ + { + "description": "The native staking and governance token of the Harpoon testnet version of Kujira.", + "denom_units": [ + { + "denom": "ukuji", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/kuji.png" + } + ] + }, + { + "description": "The testnet token of Fuzion", + "denom_units": [ + { + "denom": "factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/fuzn.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/kujiratestnet/chain.ts b/packages/chain-registry/src/testnet/kujiratestnet/chain.ts new file mode 100644 index 000000000..a587f2af7 --- /dev/null +++ b/packages/chain-registry/src/testnet/kujiratestnet/chain.ts @@ -0,0 +1,47 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://kujira-testnet-rpc.polkachu.com", + "provider": "polkachu" + } + ], + "rest": [ + { + "address": "https://kujira-testnet-api.polkachu.com/", + "provider": "polkachu" + } + ] + }, + "explorers": [ + { + "kind": "explorers.guru", + "url": "https://kujira.explorers.guru", + "tx_page": "https://kujira.explorers.guru/transaction/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/kujiratestnet/index.ts b/packages/chain-registry/src/testnet/kujiratestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/kujiratestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/kyvetestnet/assets.ts b/packages/chain-registry/src/testnet/kyvetestnet/assets.ts new file mode 100644 index 000000000..466a9c407 --- /dev/null +++ b/packages/chain-registry/src/testnet/kyvetestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "kyvetestnet", + "assets": [ + { + "description": "The native utility token of the Kaon testnet version of KYVE.", + "denom_units": [ + { + "denom": "tkyve", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvetestnet/images/kyve.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/kyvetestnet/chain.ts b/packages/chain-registry/src/testnet/kyvetestnet/chain.ts new file mode 100644 index 000000000..cacfab563 --- /dev/null +++ b/packages/chain-registry/src/testnet/kyvetestnet/chain.ts @@ -0,0 +1,66 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-eu-1.kaon.kyve.network", + "provider": "kyve" + }, + { + "address": "https://rpc-kyve-test.ecostake.com", + "provider": "ecostake" + } + ], + "rest": [ + { + "address": "https://api-eu-1.kaon.kyve.network", + "provider": "kyve" + }, + { + "address": "https://rest-kyve-test.ecostake.com", + "provider": "ecostake" + } + ] + }, + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/kyvetestnet/ibc.ts b/packages/chain-registry/src/testnet/kyvetestnet/ibc.ts new file mode 100644 index 000000000..1ef962a74 --- /dev/null +++ b/packages/chain-registry/src/testnet/kyvetestnet/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/kyvetestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/kyvetestnet/ibc_chain1.ts new file mode 100644 index 000000000..1ef962a74 --- /dev/null +++ b/packages/chain-registry/src/testnet/kyvetestnet/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kyvetestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-11", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/kyvetestnet/index.ts b/packages/chain-registry/src/testnet/kyvetestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/kyvetestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/lavatestnet/assets.ts b/packages/chain-registry/src/testnet/lavatestnet/assets.ts new file mode 100644 index 000000000..51f98eaa1 --- /dev/null +++ b/packages/chain-registry/src/testnet/lavatestnet/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "lavatestnet", + "assets": [ + { + "description": "The native token of Lava", + "denom_units": [ + { + "denom": "ulava", + "exponent": 0 + }, + { + "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" + }, + "keywords": [ + "rpc", + "api" + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/lavatestnet/chain.ts b/packages/chain-registry/src/testnet/lavatestnet/chain.ts new file mode 100644 index 000000000..954b5ffbf --- /dev/null +++ b/packages/chain-registry/src/testnet/lavatestnet/chain.ts @@ -0,0 +1,99 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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", + "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": [ + { + "address": "https://https://public-rpc-testnet2.lavanet.xyz/", + "provider": "Lava" + }, + { + "address": "http://lava.rpc.t.stavr.tech:198", + "provider": "🔥STAVR🔥" + } + ], + "rest": [ + { + "address": "https://public-rpc-testnet2.lavanet.xyz/rest/", + "provider": "Lava" + }, + { + "address": "https://lava.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + } + ] + }, + "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": "🔥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" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/lavatestnet/index.ts b/packages/chain-registry/src/testnet/lavatestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/lavatestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/lavatestnet2/assets.ts b/packages/chain-registry/src/testnet/lavatestnet2/assets.ts new file mode 100644 index 000000000..eefae5a1c --- /dev/null +++ b/packages/chain-registry/src/testnet/lavatestnet2/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "lavatestnet2", + "assets": [ + { + "description": "The native token of Lava", + "denom_units": [ + { + "denom": "ulava", + "exponent": 0 + }, + { + "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" + }, + "keywords": [ + "rpc", + "api" + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/lavatestnet2/chain.ts b/packages/chain-registry/src/testnet/lavatestnet2/chain.ts new file mode 100644 index 000000000..84aa60202 --- /dev/null +++ b/packages/chain-registry/src/testnet/lavatestnet2/chain.ts @@ -0,0 +1,87 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ulava" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "codebase": { + "cosmos_sdk_version": "0.47.6", + "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", + "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": [ + { + "address": "https://public-rpc.lavanet.xyz:443", + "provider": "Lava" + } + ], + "rest": [ + { + "address": "https://public-rpc.lavanet.xyz/rest/", + "provider": "Lava" + } + ] + }, + "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}" + } + ], + "keywords": [ + "rpc", + "api", + "modular", + "data" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/lavatestnet2/index.ts b/packages/chain-registry/src/testnet/lavatestnet2/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/lavatestnet2/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/likecointestnet/assets.ts b/packages/chain-registry/src/testnet/likecointestnet/assets.ts new file mode 100644 index 000000000..dcd1717a1 --- /dev/null +++ b/packages/chain-registry/src/testnet/likecointestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "likecointestnet", + "assets": [ + { + "description": "EKIL is the native token for LikeCoin Testnet", + "denom_units": [ + { + "denom": "nanoekil", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/likecointestnet/chain.ts b/packages/chain-registry/src/testnet/likecointestnet/chain.ts new file mode 100644 index 000000000..b3763a28c --- /dev/null +++ b/packages/chain-registry/src/testnet/likecointestnet/chain.ts @@ -0,0 +1,85 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "nanoekil" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": false + }, + "apis": { + "rpc": [ + { + "address": "https://node.testnet.like.co/rpc/", + "provider": "like.co" + } + ], + "rest": [ + { + "address": "https://node.testnet.like.co/", + "provider": "like.co" + } + ], + "grpc": [ + { + "address": "https://node.testnet-grpc.like.co/", + "provider": "like.co" + } + ] + }, + "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": "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" + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/likecointestnet/ibc.ts b/packages/chain-registry/src/testnet/likecointestnet/ibc.ts new file mode 100644 index 000000000..79f8363b6 --- /dev/null +++ b/packages/chain-registry/src/testnet/likecointestnet/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4357", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/likecointestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/likecointestnet/ibc_chain1.ts new file mode 100644 index 000000000..79f8363b6 --- /dev/null +++ b/packages/chain-registry/src/testnet/likecointestnet/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "likecointestnet", + "client_id": "07-tendermint-5", + "connection_id": "connection-2" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1431", + "connection_id": "connection-1336" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4357", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/likecointestnet/index.ts b/packages/chain-registry/src/testnet/likecointestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/likecointestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/lumenxtestnet/assets.ts b/packages/chain-registry/src/testnet/lumenxtestnet/assets.ts new file mode 100644 index 000000000..9f23f3ca2 --- /dev/null +++ b/packages/chain-registry/src/testnet/lumenxtestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "lumenxtestnet", + "assets": [ + { + "description": "The native token of Lumen Network", + "denom_units": [ + { + "denom": "ulumen", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/lumenxtestnet/chain.ts b/packages/chain-registry/src/testnet/lumenxtestnet/chain.ts new file mode 100644 index 000000000..204c87708 --- /dev/null +++ b/packages/chain-registry/src/testnet/lumenxtestnet/chain.ts @@ -0,0 +1,66 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ulumen" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc.lumenx.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://testrpc-lumenx.cryptonet.pl/", + "provider": "CryptoNet" + } + ], + "rest": [ + { + "address": "https://testnet-api.lumenx.chaintools.tech/", + "provider": "ChainTools" + }, + { + "address": "https://testapi-lumenx.cryptonet.pl/", + "provider": "CryptoNet" + } + ], + "grpc": [] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://testnet.explorer.chaintools.tech/lumenx", + "tx_page": "https://testnet.explorer.chaintools.tech/lumenx/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/lumenxtestnet/index.ts b/packages/chain-registry/src/testnet/lumenxtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/lumenxtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/marstestnet/assets.ts b/packages/chain-registry/src/testnet/marstestnet/assets.ts new file mode 100644 index 000000000..fbddb186d --- /dev/null +++ b/packages/chain-registry/src/testnet/marstestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "marstestnet", + "assets": [ + { + "description": "The native token of Mars Protocol", + "denom_units": [ + { + "denom": "umars", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/marstestnet/chain.ts b/packages/chain-registry/src/testnet/marstestnet/chain.ts new file mode 100644 index 000000000..37f23ca04 --- /dev/null +++ b/packages/chain-registry/src/testnet/marstestnet/chain.ts @@ -0,0 +1,78 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "umars" + } + ] + }, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc.marsprotocol.io/", + "provider": "Mars Protocol" + }, + { + "address": "https://rpc-mars.nodeist.net/", + "provider": "Nodeist" + } + ], + "rest": [ + { + "address": "https://testnet-rest.marsprotocol.io/", + "provider": "Mars Protocol" + }, + { + "address": "https://api-mars.nodeist.net/", + "provider": "Nodeist" + } + ] + }, + "explorers": [ + { + "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}" + } + ], + "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/marstestnet/ibc.ts b/packages/chain-registry/src/testnet/marstestnet/ibc.ts new file mode 100644 index 000000000..445bd911f --- /dev/null +++ b/packages/chain-registry/src/testnet/marstestnet/ibc.ts @@ -0,0 +1,68 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4168", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-3419", + "connection_id": "connection-2887" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2083", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/marstestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/marstestnet/ibc_chain1.ts new file mode 100644 index 000000000..445bd911f --- /dev/null +++ b/packages/chain-registry/src/testnet/marstestnet/ibc_chain1.ts @@ -0,0 +1,68 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4168", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-3419", + "connection_id": "connection-2887" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2083", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/marstestnet/index.ts b/packages/chain-registry/src/testnet/marstestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/marstestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/migalootestnet/assets.ts b/packages/chain-registry/src/testnet/migalootestnet/assets.ts new file mode 100644 index 000000000..0a8e32ea1 --- /dev/null +++ b/packages/chain-registry/src/testnet/migalootestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "migalootestnet", + "assets": [ + { + "description": "The native token of Migaloo Chain", + "denom_units": [ + { + "denom": "uwhale", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/migalootestnet/chain.ts b/packages/chain-registry/src/testnet/migalootestnet/chain.ts new file mode 100644 index 000000000..7152e5819 --- /dev/null +++ b/packages/chain-registry/src/testnet/migalootestnet/chain.ts @@ -0,0 +1,73 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "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": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.28" + }, + "apis": { + "rpc": [ + { + "address": "https://migaloo-testnet-rpc.polkachu.com", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://migaloo-testnet-api.polkachu.com", + "provider": "Polkachu" + } + ], + "grpc": [] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://ping.pfc.zone/narwhal-testnet", + "tx_page": "https://ping.pfc.zone/narwhal-testnet/tx/${txHash}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/migalootestnet/index.ts b/packages/chain-registry/src/testnet/migalootestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/migalootestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/neutrontestnet/assets.ts b/packages/chain-registry/src/testnet/neutrontestnet/assets.ts new file mode 100644 index 000000000..a3a7256a4 --- /dev/null +++ b/packages/chain-registry/src/testnet/neutrontestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "neutrontestnet", + "assets": [ + { + "description": "The native token of Neutron chain", + "denom_units": [ + { + "denom": "untrn", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/neutrontestnet/chain.ts b/packages/chain-registry/src/testnet/neutrontestnet/chain.ts new file mode 100644 index 000000000..163cc7894 --- /dev/null +++ b/packages/chain-registry/src/testnet/neutrontestnet/chain.ts @@ -0,0 +1,92 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.47", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45" + }, + "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": [ + { + "address": "https://rpc-falcron.pion-1.ntrn.tech", + "provider": "Neutron" + }, + { + "address": "https://neutron-testnet-rpc.polkachu.com/", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://rest-falcron.pion-1.ntrn.tech", + "provider": "Neutron" + }, + { + "address": "https://api.pion.remedy.tm.p2p.org", + "provider": "P2P.ORG" + }, + { + "address": "https://rest.baryon-sentry-01.rs-testnet.polypore.xyz", + "provider": "Hypha" + } + ], + "grpc": [ + { + "address": "grpc-falcron.pion-1.ntrn.tech:80", + "provider": "Neutron" + }, + { + "address": "grpc.baryon.remedy.tm.p2p.org:443", + "provider": "P2P.ORG" + } + ] + }, + "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": "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": [ + { + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/neutrontestnet/ibc.ts b/packages/chain-registry/src/testnet/neutrontestnet/ibc.ts new file mode 100644 index 000000000..0200cdfeb --- /dev/null +++ b/packages/chain-registry/src/testnet/neutrontestnet/ibc.ts @@ -0,0 +1,144 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-160", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-133", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-135", + "port_id": "wasm.neutron1tw9sg9e4l09l5rjglf4qfvcft470ljk5grdq3luagysyk83nzfusw2sxgq" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "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" + }, + "chain_2": { + "chain_name": "nolustestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-208", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1990", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1272", + "connection_id": "connection-1172" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-196", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4172", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/neutrontestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/neutrontestnet/ibc_chain1.ts new file mode 100644 index 000000000..a07b8ca18 --- /dev/null +++ b/packages/chain-registry/src/testnet/neutrontestnet/ibc_chain1.ts @@ -0,0 +1,113 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-133", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-135", + "port_id": "wasm.neutron1tw9sg9e4l09l5rjglf4qfvcft470ljk5grdq3luagysyk83nzfusw2sxgq" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "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" + }, + "chain_2": { + "chain_name": "nolustestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-208", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1990", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1272", + "connection_id": "connection-1172" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-196", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4172", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/neutrontestnet/index.ts b/packages/chain-registry/src/testnet/neutrontestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/neutrontestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/nobletestnet/assets.ts b/packages/chain-registry/src/testnet/nobletestnet/assets.ts new file mode 100644 index 000000000..d52b4379f --- /dev/null +++ b/packages/chain-registry/src/testnet/nobletestnet/assets.ts @@ -0,0 +1,126 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "nobletestnet", + "assets": [ + { + "description": "The controlled staking asset for Noble Chain", + "denom_units": [ + { + "denom": "ustake", + "exponent": 0, + "aliases": [ + "microstake" + ] + }, + { + "denom": "stake", + "exponent": 6 + } + ], + "base": "ustake", + "name": "Stake", + "display": "stake", + "symbol": "STAKE" + }, + { + "description": "Love is a test tokenfactory asset controlled by the Strangelove Team", + "denom_units": [ + { + "denom": "ulove", + "exponent": 0, + "aliases": [ + "microlove" + ] + }, + { + "denom": "love", + "exponent": 6 + } + ], + "base": "ulove", + "display": "love", + "name": "Love", + "symbol": "LOVE" + }, + { + "description": "USD Coin", + "denom_units": [ + { + "denom": "uusdc", + "exponent": 0, + "aliases": [ + "microusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "base": "uusdc", + "display": "usdc", + "name": "USD Coin", + "symbol": "USDC", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "provider": "Circle" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "USDLR is a fiat-backed stablecoin issued by Stable. Stable pays DeFi protocols who distribute USDLR.", + "denom_units": [ + { + "denom": "uusdlr", + "exponent": 0, + "aliases": [ + "microusdlr" + ] + }, + { + "denom": "usdlr", + "exponent": 6 + } + ], + "base": "uusdlr", + "display": "usdlr", + "name": "USDLR by Stable", + "symbol": "USDLR", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdlr" + }, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/nobletestnet/chain.ts b/packages/chain-registry/src/testnet/nobletestnet/chain.ts new file mode 100644 index 000000000..c5e551cfe --- /dev/null +++ b/packages/chain-registry/src/testnet/nobletestnet/chain.ts @@ -0,0 +1,83 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "v0.45", + "cosmwasm_enabled": false + }, + "apis": { + "rpc": [ + { + "address": "https://noble-testnet-rpc.polkachu.com", + "provider": "polkachu" + }, + { + "address": "https://rpc.testnet.noble.strange.love:443", + "provider": "strangelove" + } + ], + "rest": [ + { + "address": "https://noble-testnet-api.polkachu.com", + "provider": "polkachu" + }, + { + "address": "https://api.testnet.noble.strange.love", + "provider": "strangelove" + } + ], + "grpc": [ + { + "address": "noble-testnet-grpc.polkachu.com:21590", + "provider": "polkachu" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/nobletestnet/ibc.ts b/packages/chain-registry/src/testnet/nobletestnet/ibc.ts new file mode 100644 index 000000000..3092d3044 --- /dev/null +++ b/packages/chain-registry/src/testnet/nobletestnet/ibc.ts @@ -0,0 +1,94 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4280", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-4504", + "connection_id": "connection-3905" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3651", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-17", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/nobletestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/nobletestnet/ibc_chain1.ts new file mode 100644 index 000000000..3092d3044 --- /dev/null +++ b/packages/chain-registry/src/testnet/nobletestnet/ibc_chain1.ts @@ -0,0 +1,94 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4280", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-4504", + "connection_id": "connection-3905" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3651", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-17", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/nobletestnet/index.ts b/packages/chain-registry/src/testnet/nobletestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/nobletestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/noistestnet/assets.ts b/packages/chain-registry/src/testnet/noistestnet/assets.ts new file mode 100644 index 000000000..0593a6680 --- /dev/null +++ b/packages/chain-registry/src/testnet/noistestnet/assets.ts @@ -0,0 +1,41 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "noistestnet", + "assets": [ + { + "description": "The native token of Nois", + "denom_units": [ + { + "denom": "unois", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/noistestnet/chain.ts b/packages/chain-registry/src/testnet/noistestnet/chain.ts new file mode 100644 index 000000000..c5e164dab --- /dev/null +++ b/packages/chain-registry/src/testnet/noistestnet/chain.ts @@ -0,0 +1,127 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "unois" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" + }, + "images": [ + { + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://nois-testnet-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://nois-testnet-rpc.itrocket.net:443", + "provider": "itrocket" + }, + { + "address": "https://rpc.nois.mcbnode.online:443", + "provider": "mcbnode" + }, + { + "address": "https://nois-testnet.rpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "https://tnois-rpc.systemd.run:443", + "provider": "systemd" + } + ], + "grpc": [ + { + "address": "tnois-grpc.systemd.run:443", + "provider": "systemd" + }, + { + "address": "http://nois.grpc.t.stavr.tech:191", + "provider": "🔥STAVR🔥" + }, + { + "address": "nois-testnet-grpc.itrocket.net:21090", + "provider": "itrocket" + } + ], + "rest": [ + { + "address": "https://api.nois.mcbnode.online", + "provider": "mcbnode" + }, + { + "address": "https://nois3.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://tnois-api.systemd.run:443", + "provider": "systemd" + } + ] + }, + "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": "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" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/noistestnet/ibc.ts b/packages/chain-registry/src/testnet/noistestnet/ibc.ts new file mode 100644 index 000000000..1d57670e4 --- /dev/null +++ b/packages/chain-registry/src/testnet/noistestnet/ibc.ts @@ -0,0 +1,192 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-74", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-77", + "port_id": "wasm.inj14nendtsz0c40n7xtzwkjmdc8dkuz835jdydxhn" + }, + "chain_2": { + "channel_id": "channel-36", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-877", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-198", + "port_id": "wasm.juno1pjpntyvkxeuxd709jlupuea3xzxlzsfq574kqefv77fr2kcg4mcqvwqedq" + }, + "chain_2": { + "channel_id": "channel-17", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-133", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-135", + "port_id": "wasm.neutron1tw9sg9e4l09l5rjglf4qfvcft470ljk5grdq3luagysyk83nzfusw2sxgq" + }, + "chain_2": { + "channel_id": "channel-42", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-485", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "chain_2": { + "channel_id": "channel-486", + "port_id": "wasm.stars1h99p7u2tvz79jppjwdddmkplvcpnsh0pmatl7dqkmdhnkgx59y2q6s0x9s" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/noistestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/noistestnet/ibc_chain1.ts new file mode 100644 index 000000000..aa10f7296 --- /dev/null +++ b/packages/chain-registry/src/testnet/noistestnet/ibc_chain1.ts @@ -0,0 +1,51 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-485", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "chain_2": { + "channel_id": "channel-486", + "port_id": "wasm.stars1h99p7u2tvz79jppjwdddmkplvcpnsh0pmatl7dqkmdhnkgx59y2q6s0x9s" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/noistestnet/index.ts b/packages/chain-registry/src/testnet/noistestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/noistestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/nolustestnet/assets.ts b/packages/chain-registry/src/testnet/nolustestnet/assets.ts new file mode 100644 index 000000000..c02c45991 --- /dev/null +++ b/packages/chain-registry/src/testnet/nolustestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "nolustestnet", + "assets": [ + { + "description": "The native token of Nolus chain", + "denom_units": [ + { + "denom": "unls", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/nolustestnet/chain.ts b/packages/chain-registry/src/testnet/nolustestnet/chain.ts new file mode 100644 index 000000000..06a32304e --- /dev/null +++ b/packages/chain-registry/src/testnet/nolustestnet/chain.ts @@ -0,0 +1,84 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "unls" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "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" + }, + "apis": { + "rpc": [ + { + "address": "https://rila-cl.nolus.network:26657", + "provider": "NolusProtocol" + } + ], + "rest": [ + { + "address": "https://rila-cl.nolus.network:1317", + "provider": "NolusProtocol" + } + ], + "grpc": [ + { + "address": "https://rila-cl.nolus.network:9090", + "provider": "NolusProtocol" + } + ] + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/nolustestnet/ibc.ts b/packages/chain-registry/src/testnet/nolustestnet/ibc.ts new file mode 100644 index 000000000..3cf475e1e --- /dev/null +++ b/packages/chain-registry/src/testnet/nolustestnet/ibc.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-208", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1990", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-110", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/nolustestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/nolustestnet/ibc_chain1.ts new file mode 100644 index 000000000..977369e3a --- /dev/null +++ b/packages/chain-registry/src/testnet/nolustestnet/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "nolustestnet", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-102", + "connection_id": "connection-120" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-110", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/nolustestnet/index.ts b/packages/chain-registry/src/testnet/nolustestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/nolustestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/okp4testnet/assets.ts b/packages/chain-registry/src/testnet/okp4testnet/assets.ts new file mode 100644 index 000000000..cf6ad8889 --- /dev/null +++ b/packages/chain-registry/src/testnet/okp4testnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "okp4testnet", + "assets": [ + { + "description": "The native token of ØKP4.", + "denom_units": [ + { + "denom": "uknow", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/okp4testnet/chain.ts b/packages/chain-registry/src/testnet/okp4testnet/chain.ts new file mode 100644 index 000000000..d38391272 --- /dev/null +++ b/packages/chain-registry/src/testnet/okp4testnet/chain.ts @@ -0,0 +1,93 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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://okptest-rpc.quickapi.com", + "provider": "Chainlayer" + }, + { + "address": "https://okp4-testnet-rpc.polkachu.com", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://okptest-lcd.quickapi.com", + "provider": "Chainlayer" + }, + { + "address": "https://okp4-testnet-api.polkachu.com/", + "provider": "Polkachu" + } + ], + "grpc": [ + { + "address": "okp4-testnet-grpc.polkachu.com:17690", + "provider": "Polkachu" + }, + { + "address": "grpc.testnet.okp4.network:443", + "provider": "OKP4" + } + ] + }, + "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://explore.okp4.network/OKP4%20testnet", + "tx_page": "https://explore.okp4.network/OKP4%20testnet/tx/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/okp4testnet/index.ts b/packages/chain-registry/src/testnet/okp4testnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/okp4testnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/osmosistestnet/assets.ts b/packages/chain-registry/src/testnet/osmosistestnet/assets.ts new file mode 100644 index 000000000..308018221 --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet/assets.ts @@ -0,0 +1,72 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "osmosistestnet", + "assets": [ + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "uosmo", + "exponent": 0, + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "uion", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/osmosistestnet/chain.ts b/packages/chain-registry/src/testnet/osmosistestnet/chain.ts new file mode 100644 index 000000000..6594ca814 --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet/chain.ts @@ -0,0 +1,90 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uosmo" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.osmotest5.osmosis.zone/", + "provider": "Osmosis" + }, + { + "address": "https://rpc.testnet.osl.zone/", + "provider": "OSL" + } + ], + "rest": [ + { + "address": "https://lcd.osmotest5.osmosis.zone/", + "provider": "Osmosis" + } + ], + "grpc": [ + { + "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" + }, + "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": "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": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts b/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts new file mode 100644 index 000000000..d1978b159 --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts @@ -0,0 +1,795 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4171", + "port_id": "transfer" + }, + "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-77", + "connection_id": "connection-73" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1195", + "connection_id": "connection-1101" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-58", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3938", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-339", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4170", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4370", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-104", + "connection_id": "connection-122" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-111", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-273", + "connection_id": "connection-237" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-329", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2528", + "connection_id": "connection-2886" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1262", + "connection_id": "connection-1157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3306", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4156", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1260", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-146", + "connection_id": "connection-157" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-155", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-930", + "connection_id": "connection-840" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1543", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1010", + "connection_id": "connection-911" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1637", + "port_id": "transfer" + }, + "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-189", + "connection_id": "connection-180" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1273", + "connection_id": "connection-1173" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-129", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4174", + "port_id": "transfer" + }, + "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-682", + "connection_id": "connection-774" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1268", + "connection_id": "connection-1166" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-811", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4167", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-11", + "connection_id": "connection-11" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1431", + "connection_id": "connection-1336" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4357", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1269", + "connection_id": "connection-1167" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-27", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4168", + "port_id": "transfer" + }, + "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-133", + "connection_id": "connection-123" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1272", + "connection_id": "connection-1172" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-196", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4172", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1374", + "connection_id": "connection-1275" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-22", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4280", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-110", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1037", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilvertestnet", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sagatestnet", + "client_id": "07-tendermint-26", + "connection_id": "connection-21" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4946", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sgetestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1568", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargazetestnet", + "client_id": "07-tendermint-621", + "connection_id": "connection-633" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4175", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-638", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-22", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4410", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/osmosistestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/osmosistestnet/ibc_chain1.ts new file mode 100644 index 000000000..ee17eb6a7 --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet/ibc_chain1.ts @@ -0,0 +1,194 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1037", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "quicksilvertestnet", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sagatestnet", + "client_id": "07-tendermint-26", + "connection_id": "connection-21" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4946", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "sgetestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1568", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "stargazetestnet", + "client_id": "07-tendermint-621", + "connection_id": "connection-633" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4175", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-638", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-22", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4410", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/osmosistestnet/index.ts b/packages/chain-registry/src/testnet/osmosistestnet/index.ts new file mode 100644 index 000000000..af8a2d557 --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet/index.ts @@ -0,0 +1,9 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/osmosistestnet4/assets.ts b/packages/chain-registry/src/testnet/osmosistestnet4/assets.ts new file mode 100644 index 000000000..3dbf3e59e --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet4/assets.ts @@ -0,0 +1,72 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "osmosistestnet4", + "assets": [ + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "uosmo", + "exponent": 0, + "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" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "uion", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/osmosistestnet4/chain.ts b/packages/chain-registry/src/testnet/osmosistestnet4/chain.ts new file mode 100644 index 000000000..462d811e2 --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet4/chain.ts @@ -0,0 +1,88 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uosmo" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.29" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.osmo-test.ccvalidators.com/", + "provider": "CryptoCrew" + }, + { + "address": "https://osmosistest-rpc.quickapi.com/", + "provider": "ChainLayer" + }, + { + "address": "https://rpc.testnet.osmosis.zone/", + "provider": "Osmosis" + } + ], + "rest": [ + { + "address": "https://osmosistest-lcd.quickapi.com/", + "provider": "CryptoCrew" + }, + { + "address": "https://lcd.osmo-test.ccvalidators.com/", + "provider": "ChainLayer" + }, + { + "address": "https://testnet-rest.osmosis.zone/", + "provider": "" + } + ], + "grpc": [ + { + "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" + }, + "keywords": [ + "dex", + "testnet" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/osmosistestnet4/ibc.ts b/packages/chain-registry/src/testnet/osmosistestnet4/ibc.ts new file mode 100644 index 000000000..5e251b294 --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet4/ibc.ts @@ -0,0 +1,130 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-135", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1946", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-4413", + "connection_id": "connection-3814" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-140", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3316", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-3419", + "connection_id": "connection-2887" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2083", + "port_id": "transfer" + }, + "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-6", + "connection_id": "connection-6" + }, + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-4504", + "connection_id": "connection-3905" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3651", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/osmosistestnet4/index.ts b/packages/chain-registry/src/testnet/osmosistestnet4/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/osmosistestnet4/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/testnet/permtestnet/assets.ts b/packages/chain-registry/src/testnet/permtestnet/assets.ts new file mode 100644 index 000000000..0a94b1cf1 --- /dev/null +++ b/packages/chain-registry/src/testnet/permtestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "permtestnet", + "assets": [ + { + "description": "Perm A Permissioned Blockchain", + "denom_units": [ + { + "denom": "uperm", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/permtestnet/chain.ts b/packages/chain-registry/src/testnet/permtestnet/chain.ts new file mode 100644 index 000000000..95416f402 --- /dev/null +++ b/packages/chain-registry/src/testnet/permtestnet/chain.ts @@ -0,0 +1,66 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uperm" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.3.finance/", + "provider": "Perm Network" + } + ], + "rest": [ + { + "address": "https://rest.3.finance/", + "provider": "Perm Network" + } + ], + "grpc": [ + { + "address": "https://grpc.3.finance/", + "provider": "Perm Network" + } + ] + }, + "explorers": [ + { + "kind": "bigdipper", + "url": "https://explorer.testnet.perm.ooo/", + "tx_page": "https://explorer.testnet.perm.ooo/transactions/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/permtestnet/index.ts b/packages/chain-registry/src/testnet/permtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/permtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/persistencetestnet/assets.ts b/packages/chain-registry/src/testnet/persistencetestnet/assets.ts new file mode 100644 index 000000000..68b1c1c83 --- /dev/null +++ b/packages/chain-registry/src/testnet/persistencetestnet/assets.ts @@ -0,0 +1,67 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "persistencetestnet", + "assets": [ + { + "description": "The XPRT token is primarily a governance token for the Persistence chain.", + "denom_units": [ + { + "denom": "uxprt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "PSTAKE Liquid-Staked ATOM", + "denom_units": [ + { + "denom": "stk/uatom", + "exponent": 0, + "aliases": [] + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/persistencetestnet/chain.ts b/packages/chain-registry/src/testnet/persistencetestnet/chain.ts new file mode 100644 index 000000000..6c8b57d3e --- /dev/null +++ b/packages/chain-registry/src/testnet/persistencetestnet/chain.ts @@ -0,0 +1,102 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-testnet-persistence.architectnodes.com/", + "provider": "Architect Nodes" + }, + { + "address": "https://persistence-testnet-rpc.baryon.dev/", + "provider": "Baryon" + }, + { + "address": "https://persistence-testnet-rpc.cosmonautstakes.com/", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://rpc.testnet.persistence.one/", + "provider": "Persistence" + }, + { + "address": "https://persistence-testnet-rpc.polkachu.com/", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://rest-testnet-persistence.architectnodes.com/", + "provider": "Architect Nodes" + }, + { + "address": "https://persistence-testnet-api.baryon.dev/", + "provider": "Baryon" + }, + { + "address": "https://persistence-testnet-rest.cosmonautstakes.com/", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://rest.testnet.persistence.one/", + "provider": "Persistence" + }, + { + "address": "https://persistence-testnet-api.polkachu.com/", + "provider": "Polkachu" + } + ], + "grpc": [ + { + "address": "persistence-testnet-grpc.polkachu.com:15490", + "provider": "Polkachu" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/persistencetestnet/index.ts b/packages/chain-registry/src/testnet/persistencetestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/persistencetestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/persistencetestnet2/assets.ts b/packages/chain-registry/src/testnet/persistencetestnet2/assets.ts new file mode 100644 index 000000000..a51e7e1c7 --- /dev/null +++ b/packages/chain-registry/src/testnet/persistencetestnet2/assets.ts @@ -0,0 +1,129 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "persistencetestnet2", + "assets": [ + { + "description": "The XPRT token is primarily a governance token for the Persistence chain.", + "denom_units": [ + { + "denom": "uxprt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + }, + { + "description": "PSTAKE Liquid-Staked ATOM", + "denom_units": [ + { + "denom": "stk/uatom", + "exponent": 0, + "aliases": [] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" + } + ] + }, + { + "description": "PSTAKE Liquid-Staked OSMO", + "denom_units": [ + { + "denom": "stk/uosmo", + "exponent": 0, + "aliases": [] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" + } + ] + }, + { + "description": "PSTAKE Liquid-Staked DV4TNT", + "denom_units": [ + { + "denom": "stk/adv4tnt", + "exponent": 0, + "aliases": [] + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/persistencetestnet2/chain.ts b/packages/chain-registry/src/testnet/persistencetestnet2/chain.ts new file mode 100644 index 000000000..3cb777f91 --- /dev/null +++ b/packages/chain-registry/src/testnet/persistencetestnet2/chain.ts @@ -0,0 +1,128 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-persistence-testnet-01.stakeflow.io/", + "provider": "StakeFlow" + }, + { + "address": "https://persistence-testnet-rpc.baryon.dev/", + "provider": "Baryon" + }, + { + "address": "https://persistence-testnet-rpc.cosmonautstakes.com/", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://rpc.testnet2.persistence.one/", + "provider": "Persistence" + }, + { + "address": "https://persistence-testnet-rpc.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://persistencecoretest-rpc.ytwofund.pro/", + "provider": "YTWOFUND" + }, + { + "address": "http://persistence-testnet.paranorm.pro:24657/", + "provider": "Paranorm" + } + ], + "rest": [ + { + "address": "https://api-persistence-testnet-01.stakeflow.io/", + "provider": "StakeFlow" + }, + { + "address": "https://persistence-testnet-api.baryon.dev/", + "provider": "Baryon" + }, + { + "address": "https://persistence-testnet-rest.cosmonautstakes.com/", + "provider": "Cosmonaut Stakes" + }, + { + "address": "https://rest.testnet2.persistence.one/", + "provider": "Persistence" + }, + { + "address": "https://persistence-testnet-api.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://persistenceCoreTest-rest.ytwofund.pro", + "provider": "YTWOFUND" + } + ], + "grpc": [ + { + "address": "persistence-testnet-grpc.polkachu.com:15490", + "provider": "Polkachu" + }, + { + "address": "persistenceCoreTest-grpc.ytwofund.pro:9090", + "provider": "YTWOFUND" + } + ] + }, + "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": "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/persistencetestnet2/ibc.ts b/packages/chain-registry/src/testnet/persistencetestnet2/ibc.ts new file mode 100644 index 000000000..3e1edefa2 --- /dev/null +++ b/packages/chain-registry/src/testnet/persistencetestnet2/ibc.ts @@ -0,0 +1,98 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-261", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2100", + "connection_id": "connection-2447" + }, + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2777", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-595", + "connection_id": "connection-529" + }, + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1037", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/persistencetestnet2/index.ts b/packages/chain-registry/src/testnet/persistencetestnet2/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/persistencetestnet2/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/testnet/pryzmtestnet/assets.ts b/packages/chain-registry/src/testnet/pryzmtestnet/assets.ts new file mode 100644 index 000000000..a0d14ab27 --- /dev/null +++ b/packages/chain-registry/src/testnet/pryzmtestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "pryzmtestnet", + "assets": [ + { + "description": "The native token of PRYZM", + "denom_units": [ + { + "denom": "upryzm", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/pryzmtestnet/chain.ts b/packages/chain-registry/src/testnet/pryzmtestnet/chain.ts new file mode 100644 index 000000000..7e0987fa1 --- /dev/null +++ b/packages/chain-registry/src/testnet/pryzmtestnet/chain.ts @@ -0,0 +1,76 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "upryzm" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.47" + }, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc.pryzm.zone", + "provider": "PRYZM" + } + ], + "rest": [ + { + "address": "https://testnet-api.pryzm.zone", + "provider": "PRYZM" + } + ], + "grpc": [ + { + "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" + }, + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/pryzmtestnet/index.ts b/packages/chain-registry/src/testnet/pryzmtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/pryzmtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/quasartestnet/assets.ts b/packages/chain-registry/src/testnet/quasartestnet/assets.ts new file mode 100644 index 000000000..fb7ff6757 --- /dev/null +++ b/packages/chain-registry/src/testnet/quasartestnet/assets.ts @@ -0,0 +1,59 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "quasartestnet", + "assets": [ + { + "description": "The native token of Quasar", + "denom_units": [ + { + "denom": "uqsr", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qsr", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqsr", + "name": "Quasar", + "display": "qsr", + "symbol": "QSR" + }, + { + "denom_units": [ + { + "denom": "uayy", + "exponent": 0 + }, + { + "denom": "ayy", + "exponent": 6 + } + ], + "base": "uay", + "name": "AYY", + "display": "ayy", + "symbol": "AYY" + }, + { + "denom_units": [ + { + "denom": "uoro", + "exponent": 0 + }, + { + "denom": "oro", + "exponent": 6 + } + ], + "base": "oro", + "name": "oro", + "display": "oro", + "symbol": "ORO" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/quasartestnet/chain.ts b/packages/chain-registry/src/testnet/quasartestnet/chain.ts new file mode 100644 index 000000000..6632dba23 --- /dev/null +++ b/packages/chain-registry/src/testnet/quasartestnet/chain.ts @@ -0,0 +1,82 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.27" + }, + "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": [ + { + "address": "https://quasar-testnet-rpc.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://questnet.quasar-finance.rhinostake.com/", + "provider": "Rhino Stake" + }, + { + "address": "https://quasar-testnet-rpc.swiss-staking.ch", + "provider": "Swiss Staking" + } + ], + "rest": [ + { + "address": "https://quasar-testnet-api.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://questnet.quasar-finance.rhinostake.com/", + "provider": "Rhino Stake" + }, + { + "address": "https://quasar-testnet-api.swiss-staking.ch/", + "provider": "Swiss Staking" + } + ], + "grpc": [ + { + "address": "quasar-testnet-grpc.polkachu.com:18290", + "provider": "Polkachu" + }, + { + "address": "quasar-testnet-grpc.swiss-staking.ch:10090", + "provider": "Swiss Staking" + } + ] + }, + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/quasartestnet/index.ts b/packages/chain-registry/src/testnet/quasartestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/quasartestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/quicksilvertestnet/assets.ts b/packages/chain-registry/src/testnet/quicksilvertestnet/assets.ts new file mode 100644 index 000000000..46eaa5879 --- /dev/null +++ b/packages/chain-registry/src/testnet/quicksilvertestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "quicksilvertestnet", + "assets": [ + { + "description": "QCK - native token of Quicksilver", + "denom_units": [ + { + "denom": "uqck", + "exponent": 0, + "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" + }, + "coingecko_id": "quicksilver", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/quicksilvertestnet/chain.ts b/packages/chain-registry/src/testnet/quicksilvertestnet/chain.ts new file mode 100644 index 000000000..83e9408a9 --- /dev/null +++ b/packages/chain-registry/src/testnet/quicksilvertestnet/chain.ts @@ -0,0 +1,92 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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": "https://quicksilver-testnet-rpc.polkachu.com/", + "provider": "polkachu" + } + ], + "rest": [ + { + "address": "https://quick.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://quicksilver-testnet-api.polkachu.com/", + "provider": "polkachu" + } + ], + "grpc": [ + { + "address": "http://quick.grpc.t.stavr.tech:9112", + "provider": "🔥STAVR🔥" + }, + { + "address": "quicksilver-testnet-grpc.polkachu.com:11190", + "provider": "polkachu" + } + ] + }, + "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}" + }, + { + "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": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/quicksilvertestnet/ibc.ts b/packages/chain-registry/src/testnet/quicksilvertestnet/ibc.ts new file mode 100644 index 000000000..dccb0cbb1 --- /dev/null +++ b/packages/chain-registry/src/testnet/quicksilvertestnet/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/quicksilvertestnet/index.ts b/packages/chain-registry/src/testnet/quicksilvertestnet/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/quicksilvertestnet/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/testnet/qwoyntestnet/assets.ts b/packages/chain-registry/src/testnet/qwoyntestnet/assets.ts new file mode 100644 index 000000000..8b3d7e8cb --- /dev/null +++ b/packages/chain-registry/src/testnet/qwoyntestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "qwoyntestnet", + "assets": [ + { + "description": "QWOYN is the native governance token for the Qwoyn Studios Platform", + "denom_units": [ + { + "denom": "uqwoyn", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/qwoyntestnet/chain.ts b/packages/chain-registry/src/testnet/qwoyntestnet/chain.ts new file mode 100644 index 000000000..4918946a4 --- /dev/null +++ b/packages/chain-registry/src/testnet/qwoyntestnet/chain.ts @@ -0,0 +1,71 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.47.3" + }, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc.qwoyn.studio", + "provider": "Qwoyn Studios" + } + ], + "grpc": [ + { + "address": "http://66.42.74.12:9090", + "provider": "Qwoyn Studios" + } + ], + "rest": [ + { + "address": "https://testnet-api.qwoyn.studio", + "provider": "Qwoyn Studios" + } + ] + }, + "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}" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/qwoyntestnet/index.ts b/packages/chain-registry/src/testnet/qwoyntestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/qwoyntestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/rsprovidertestnet/assets.ts b/packages/chain-registry/src/testnet/rsprovidertestnet/assets.ts new file mode 100644 index 000000000..5dbb357e7 --- /dev/null +++ b/packages/chain-registry/src/testnet/rsprovidertestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "rsprovidertestnet", + "assets": [ + { + "description": "The native staking and governance token of the Replicated Security Testnet.", + "denom_units": [ + { + "denom": "uatom", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/rsprovidertestnet/chain.ts b/packages/chain-registry/src/testnet/rsprovidertestnet/chain.ts new file mode 100644 index 000000000..f365bac1d --- /dev/null +++ b/packages/chain-registry/src/testnet/rsprovidertestnet/chain.ts @@ -0,0 +1,101 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "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-state-sync-01.rs-testnet.polypore.xyz", + "provider": "Hypha" + }, + { + "address": "https://rpc.provider-state-sync-02.rs-testnet.polypore.xyz", + "provider": "Hypha" + } + ], + "rest": [ + { + "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-state-sync-01.rs-testnet.polypore.xyz", + "provider": "Hypha" + }, + { + "address": "https://rest.provider-state-sync-02.rs-testnet.polypore.xyz", + "provider": "Hypha" + } + ], + "grpc": [ + { + "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-state-sync-01.rs-testnet.polypore.xyz", + "provider": "Hypha" + }, + { + "address": "https://grpc.provider-state-sync-02.rs-testnet.polypore.xyz", + "provider": "Hypha" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/rsprovidertestnet/index.ts b/packages/chain-registry/src/testnet/rsprovidertestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/rsprovidertestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/sagatestnet/assets.ts b/packages/chain-registry/src/testnet/sagatestnet/assets.ts new file mode 100644 index 000000000..aa236192e --- /dev/null +++ b/packages/chain-registry/src/testnet/sagatestnet/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "sagatestnet", + "assets": [ + { + "description": "The native token of Saga Testnet", + "denom_units": [ + { + "denom": "utsaga", + "exponent": 0, + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sagatestnet/chain.ts b/packages/chain-registry/src/testnet/sagatestnet/chain.ts new file mode 100644 index 000000000..48feadf4b --- /dev/null +++ b/packages/chain-registry/src/testnet/sagatestnet/chain.ts @@ -0,0 +1,79 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "utsaga" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.47", + "cosmwasm_enabled": false + }, + "apis": { + "rpc": [ + { + "address": "https://testnet-ssc.sagarpc.io/", + "provider": "Saga" + } + ], + "rest": [ + { + "address": "https://testnet-ssc-lcd.sagarpc.io/", + "provider": "Saga" + } + ], + "grpc": [ + { + "address": "testnet-ssc-grpc.sagarpc.io:443", + "provider": "Saga" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png" + }, + "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}" + } + ], + "keywords": [ + "testnet", + "chainlet" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sagatestnet/ibc.ts b/packages/chain-registry/src/testnet/sagatestnet/ibc.ts new file mode 100644 index 000000000..fb17ab150 --- /dev/null +++ b/packages/chain-registry/src/testnet/sagatestnet/ibc.ts @@ -0,0 +1,67 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-370", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1448", + "connection_id": "connection-1552" + }, + "chain_2": { + "chain_name": "sagatestnet", + "client_id": "07-tendermint-26", + "connection_id": "connection-21" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4946", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-20", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sagatestnet/index.ts b/packages/chain-registry/src/testnet/sagatestnet/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/sagatestnet/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/testnet/secretnetworktestnet/assets.ts b/packages/chain-registry/src/testnet/secretnetworktestnet/assets.ts new file mode 100644 index 000000000..96b058635 --- /dev/null +++ b/packages/chain-registry/src/testnet/secretnetworktestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "secretnetworktestnet", + "assets": [ + { + "description": "The native token of Secret Network", + "denom_units": [ + { + "denom": "uscrt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/secretnetworktestnet/chain.ts b/packages/chain-registry/src/testnet/secretnetworktestnet/chain.ts new file mode 100644 index 000000000..221cca0c1 --- /dev/null +++ b/packages/chain-registry/src/testnet/secretnetworktestnet/chain.ts @@ -0,0 +1,66 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" + }, + { + "address": "https://rpc.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" + } + ], + "rest": [ + { + "address": "https://lcd.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" + }, + { + "address": "https://api.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" + } + ], + "grpc-web": [ + { + "address": "https://grpc.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" + }, + { + "address": "https://grpc.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://testnet.ping.pub/secret", + "tx_page": "https://testnet.ping.pub/secret/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/secretnetworktestnet/index.ts b/packages/chain-registry/src/testnet/secretnetworktestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/secretnetworktestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/secretnetworktestnet2/assets.ts b/packages/chain-registry/src/testnet/secretnetworktestnet2/assets.ts new file mode 100644 index 000000000..bcbce9202 --- /dev/null +++ b/packages/chain-registry/src/testnet/secretnetworktestnet2/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "secretnetworktestnet2", + "assets": [ + { + "description": "The native token of Secret Network", + "denom_units": [ + { + "denom": "uscrt", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/secretnetworktestnet2/chain.ts b/packages/chain-registry/src/testnet/secretnetworktestnet2/chain.ts new file mode 100644 index 000000000..3d089ec34 --- /dev/null +++ b/packages/chain-registry/src/testnet/secretnetworktestnet2/chain.ts @@ -0,0 +1,74 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" + }, + { + "address": "https://rpc.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" + } + ], + "rest": [ + { + "address": "http://testnet.securesecrets.org:1317", + "provider": "Trivium | Trivium.Network" + }, + { + "address": "https://lcd.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" + }, + { + "address": "https://api.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" + } + ], + "grpc-web": [ + { + "address": "https://grpc.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" + }, + { + "address": "https://grpc.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/secretnetworktestnet2/index.ts b/packages/chain-registry/src/testnet/secretnetworktestnet2/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/secretnetworktestnet2/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/seitestnet/assets.ts b/packages/chain-registry/src/testnet/seitestnet/assets.ts new file mode 100644 index 000000000..cf897e379 --- /dev/null +++ b/packages/chain-registry/src/testnet/seitestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "seitestnet", + "assets": [ + { + "description": "The native staking and governance token of the Atlantic testnet version of Sei.", + "denom_units": [ + { + "denom": "usei", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet/images/sei.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/seitestnet/chain.ts b/packages/chain-registry/src/testnet/seitestnet/chain.ts new file mode 100644 index 000000000..b58699a26 --- /dev/null +++ b/packages/chain-registry/src/testnet/seitestnet/chain.ts @@ -0,0 +1,64 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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-testnet-rpc.brocha.in", + "provider": "Brochain" + } + ], + "rest": [ + { + "address": "https://sei-testnet-rest.brocha.in", + "provider": "Brochain" + } + ] + }, + "explorers": [ + { + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/seitestnet/index.ts b/packages/chain-registry/src/testnet/seitestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/seitestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/seitestnet2/assets.ts b/packages/chain-registry/src/testnet/seitestnet2/assets.ts new file mode 100644 index 000000000..1896e5f06 --- /dev/null +++ b/packages/chain-registry/src/testnet/seitestnet2/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "seitestnet2", + "assets": [ + { + "description": "The native staking and governance token of the Atlantic testnet version of Sei.", + "denom_units": [ + { + "denom": "usei", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/seitestnet2/chain.ts b/packages/chain-registry/src/testnet/seitestnet2/chain.ts new file mode 100644 index 000000000..e1689fe54 --- /dev/null +++ b/packages/chain-registry/src/testnet/seitestnet2/chain.ts @@ -0,0 +1,52 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://sei-testnet-2-rpc.brocha.in", + "provider": "Brochain" + } + ], + "rest": [ + { + "address": "https://sei-testnet-2-rest.brocha.in", + "provider": "Brochain" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/seitestnet2/index.ts b/packages/chain-registry/src/testnet/seitestnet2/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/seitestnet2/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/selfchaindevnet/assets.ts b/packages/chain-registry/src/testnet/selfchaindevnet/assets.ts new file mode 100644 index 000000000..615ba1449 --- /dev/null +++ b/packages/chain-registry/src/testnet/selfchaindevnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uself", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/selfchaindevnet/images/selfchain.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/selfchaindevnet/chain.ts b/packages/chain-registry/src/testnet/selfchaindevnet/chain.ts new file mode 100644 index 000000000..d359f9885 --- /dev/null +++ b/packages/chain-registry/src/testnet/selfchaindevnet/chain.ts @@ -0,0 +1,47 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc-devnet.selfchain.xyz", + "provider": "Selfchain" + } + ], + "rest": [ + { + "address": "https://api-devnet.selfchain.xyz/", + "provider": "Selfchain" + } + ] + }, + "explorers": [ + { + "kind": "Selfchain", + "url": "https://explorer-devnet.selfchain.xyz", + "tx_page": "https://explorer-devnet.selfchain.xyz/self/transactions/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/selfchaindevnet/index.ts b/packages/chain-registry/src/testnet/selfchaindevnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/selfchaindevnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/sgetestnet/assets.ts b/packages/chain-registry/src/testnet/sgetestnet/assets.ts new file mode 100644 index 000000000..d07429c63 --- /dev/null +++ b/packages/chain-registry/src/testnet/sgetestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "sgetestnet", + "assets": [ + { + "description": "The SGE token is primarily a governance token for the SGE Network blockchain.", + "denom_units": [ + { + "denom": "usge", + "exponent": 0, + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sgetestnet/chain.ts b/packages/chain-registry/src/testnet/sgetestnet/chain.ts new file mode 100644 index 000000000..2f42d416b --- /dev/null +++ b/packages/chain-registry/src/testnet/sgetestnet/chain.ts @@ -0,0 +1,92 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "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": [ + { + "address": "https://rpc.testnet.sgenetwork.io", + "provider": "Sge Network" + }, + { + "address": "https://testnet-saage-rpc.lavenderfive.com/ ", + "provider": "Lavender.Five" + }, + { + "address": "https://saage-testnet-rpc.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://rpc-t.sge.nodestake.top/", + "provider": "Nodestake.top" + }, + { + "address": "https://sge.rpc.t.stavr.tech:443", + "provider": "🔥STAVR🔥" + } + ], + "rest": [ + { + "address": "https://api.testnet.sgenetwork.io", + "provider": "Sge Network" + }, + { + "address": "https://api-t.sge.nodestake.top/", + "provider": "Nodestake.top" + }, + { + "address": "https://saage-testnet-api.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://sge.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + } + ] + }, + "explorers": [ + { + "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}" + } + ], + "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" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sgetestnet/ibc.ts b/packages/chain-registry/src/testnet/sgetestnet/ibc.ts new file mode 100644 index 000000000..d4da7ca88 --- /dev/null +++ b/packages/chain-registry/src/testnet/sgetestnet/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1568", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sgetestnet/index.ts b/packages/chain-registry/src/testnet/sgetestnet/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/sgetestnet/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/testnet/sixtestnet/assets.ts b/packages/chain-registry/src/testnet/sixtestnet/assets.ts new file mode 100644 index 000000000..cf2e715c7 --- /dev/null +++ b/packages/chain-registry/src/testnet/sixtestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "sixtestnet", + "assets": [ + { + "description": "The native staking token of the SIX Protocol.", + "denom_units": [ + { + "denom": "usix", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sixtestnet/images/six.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sixtestnet/chain.ts b/packages/chain-registry/src/testnet/sixtestnet/chain.ts new file mode 100644 index 000000000..a4e07eff0 --- /dev/null +++ b/packages/chain-registry/src/testnet/sixtestnet/chain.ts @@ -0,0 +1,63 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.45" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc1.fivenet.sixprotocol.net:443", + "provider": "" + } + ], + "rest": [ + { + "address": "https://api1.fivenet.sixprotocol.net:443", + "provider": "" + } + ] + }, + "explorers": [ + { + "kind": "sixscan", + "url": "https://sixscan.io/fivenet", + "tx_page": "https://sixscan.io/fivenet/tx/${txHash}" + } + ], + "keywords": [ + "sixprotocol", + "testnet" + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sixtestnet/index.ts b/packages/chain-registry/src/testnet/sixtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/sixtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/sourcetestnet/assets.ts b/packages/chain-registry/src/testnet/sourcetestnet/assets.ts new file mode 100644 index 000000000..90ecd0f96 --- /dev/null +++ b/packages/chain-registry/src/testnet/sourcetestnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "sourcetestnet", + "assets": [ + { + "description": "The native token of SOURCE Chain", + "denom_units": [ + { + "denom": "usource", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sourcetestnet/chain.ts b/packages/chain-registry/src/testnet/sourcetestnet/chain.ts new file mode 100644 index 000000000..60503f3ba --- /dev/null +++ b/packages/chain-registry/src/testnet/sourcetestnet/chain.ts @@ -0,0 +1,96 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "usource" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.25" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-t.source.nodestake.top", + "provider": "Nodestake" + }, + { + "address": "https://rpc-source.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://source-testnet.rpc.kjnodes.com", + "provider": "kjnodes" + } + ], + "rest": [ + { + "address": "https://api-t.source.nodestake.top", + "provider": "Nodestake" + }, + { + "address": "https://api-source.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://source.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://source-testnet.api.kjnodes.com", + "provider": "kjnodes" + } + ], + "grpc": [ + { + "address": "https://grpc-t.source.nodestake.top", + "provider": "nodestake" + } + ] + }, + "explorers": [ + { + "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": "kjnodes", + "url": "https://explorer.kjnodes.com/source-testnet", + "tx_page": "https://explorer.kjnodes.com/source-testnet/txs/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/sourcetestnet/index.ts b/packages/chain-registry/src/testnet/sourcetestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/sourcetestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/stargazetestnet/assets.ts b/packages/chain-registry/src/testnet/stargazetestnet/assets.ts new file mode 100644 index 000000000..881be645b --- /dev/null +++ b/packages/chain-registry/src/testnet/stargazetestnet/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "stargazetestnet", + "assets": [ + { + "description": "The native token of Stargaze", + "denom_units": [ + { + "denom": "ustars", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "stargaze", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/stargazetestnet/chain.ts b/packages/chain-registry/src/testnet/stargazetestnet/chain.ts new file mode 100644 index 000000000..46de3e9bb --- /dev/null +++ b/packages/chain-registry/src/testnet/stargazetestnet/chain.ts @@ -0,0 +1,61 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.28" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.elgafar-1.stargaze-apis.com", + "provider": "Stargaze Foundation" + } + ], + "rest": [ + { + "address": "https://rest.elgafar-1.stargaze-apis.com", + "provider": "Stargaze Foundation" + } + ], + "grpc": [ + { + "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" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://testnet-explorer.publicawesome.dev/stargaze", + "tx_page": "https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/stargazetestnet/ibc.ts b/packages/chain-registry/src/testnet/stargazetestnet/ibc.ts new file mode 100644 index 000000000..a3a38589a --- /dev/null +++ b/packages/chain-registry/src/testnet/stargazetestnet/ibc.ts @@ -0,0 +1,114 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-459", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-48", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-485", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" + }, + "chain_2": { + "channel_id": "channel-486", + "port_id": "wasm.stars1h99p7u2tvz79jppjwdddmkplvcpnsh0pmatl7dqkmdhnkgx59y2q6s0x9s" + }, + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4175", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-638", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/stargazetestnet/index.ts b/packages/chain-registry/src/testnet/stargazetestnet/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/stargazetestnet/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/testnet/statesettestnet/assets.ts b/packages/chain-registry/src/testnet/statesettestnet/assets.ts new file mode 100644 index 000000000..ec9453b72 --- /dev/null +++ b/packages/chain-registry/src/testnet/statesettestnet/assets.ts @@ -0,0 +1,27 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../assetlist.schema.json", + "chain_name": "statesettestnet", + "assets": [ + { + "description": "The native token of the Stateset Network", + "denom_units": [ + { + "denom": "ustate", + "exponent": 0, + "aliases": [] + }, + { + "denom": "state", + "exponent": 6, + "aliases": [] + } + ], + "base": "ustate", + "name": "Stateset", + "display": "state", + "symbol": "STATE" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/statesettestnet/chain.ts b/packages/chain-registry/src/testnet/statesettestnet/chain.ts new file mode 100644 index 000000000..a0df8f0b3 --- /dev/null +++ b/packages/chain-registry/src/testnet/statesettestnet/chain.ts @@ -0,0 +1,47 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.stateset.zone/", + "provider": "stateset" + } + ], + "rest": [ + { + "address": "https://rest-api.stateset.zone", + "provider": "stateset" + } + ] + }, + "explorers": [ + { + "kind": "bigdipper", + "url": "https://explore.stateset.zone", + "tx_page": "https://explore.stateset.zone/transactions/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/statesettestnet/index.ts b/packages/chain-registry/src/testnet/statesettestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/statesettestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/stridetestnet/assets.ts b/packages/chain-registry/src/testnet/stridetestnet/assets.ts new file mode 100644 index 000000000..07cfcaf44 --- /dev/null +++ b/packages/chain-registry/src/testnet/stridetestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "stridetestnet", + "assets": [ + { + "description": "The native token of Stride", + "denom_units": [ + { + "denom": "ustrd", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/stridetestnet/chain.ts b/packages/chain-registry/src/testnet/stridetestnet/chain.ts new file mode 100644 index 000000000..4c6584a47 --- /dev/null +++ b/packages/chain-registry/src/testnet/stridetestnet/chain.ts @@ -0,0 +1,57 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "ustrd" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.46" + }, + "apis": { + "rpc": [ + { + "address": "https://stride.testnet-1.stridenet.co", + "provider": "Stride" + } + ], + "rest": [ + { + "address": "https://stride.testnet-1.stridenet.co/api", + "provider": "Stride" + } + ], + "grpc": [] + }, + "explorers": [ + { + "kind": "PingPub", + "url": "https://testnet.ping.pub/stride", + "tx_page": "https://testnet.ping.pub/stride/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/stridetestnet/index.ts b/packages/chain-registry/src/testnet/stridetestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/stridetestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/temporaltestnet/assets.ts b/packages/chain-registry/src/testnet/temporaltestnet/assets.ts new file mode 100644 index 000000000..8baa76355 --- /dev/null +++ b/packages/chain-registry/src/testnet/temporaltestnet/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "temporaltestnet", + "assets": [ + { + "description": "The native staking and governance token of the testnet version of Temporal.", + "denom_units": [ + { + "denom": "utprl", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/temporaltestnet/images/temporal.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/temporaltestnet/chain.ts b/packages/chain-registry/src/testnet/temporaltestnet/chain.ts new file mode 100644 index 000000000..7cbfddee9 --- /dev/null +++ b/packages/chain-registry/src/testnet/temporaltestnet/chain.ts @@ -0,0 +1,78 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.yieldmos.com/temporal-test-2", + "provider": "Yieldmos" + }, + { + "address": "https://testnet-temporal-rpc.lavenderfive.com:443", + "provider": "Lavender.Five" + } + ], + "rest": [ + { + "address": "https://lcd.yieldmos.com/temporal-test-2", + "provider": "Yieldmos" + }, + { + "address": "https://testnet-temporal-api.lavenderfive.com:443", + "provider": "Lavender.Five" + } + ], + "grpc": [ + { + "address": "142.132.157.153:24190", + "provider": "Yieldmos" + } + ] + }, + "explorers": [ + { + "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": "ping.pub", + "url": "https://testnet.ping.pub/temporal", + "tx_page": "https://testnet.ping.pub/temporal/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/temporaltestnet/index.ts b/packages/chain-registry/src/testnet/temporaltestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/temporaltestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/terpnettestnet/assets.ts b/packages/chain-registry/src/testnet/terpnettestnet/assets.ts new file mode 100644 index 000000000..362ead58c --- /dev/null +++ b/packages/chain-registry/src/testnet/terpnettestnet/assets.ts @@ -0,0 +1,58 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "uterpx", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "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": [ + { + "denom": "uthiolx", + "exponent": 0 + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/terpnettestnet/chain.ts b/packages/chain-registry/src/testnet/terpnettestnet/chain.ts new file mode 100644 index 000000000..aca067a90 --- /dev/null +++ b/packages/chain-registry/src/testnet/terpnettestnet/chain.ts @@ -0,0 +1,69 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://terp-testnet-rpc.itrocket.net:443/", + "provider": "itrocket" + } + ], + "rest": [ + { + "address": "https://terp-testnet-api.itrocket.net:443/", + "provider": "itrocket" + } + ], + "grpc": [ + { + "address": "terp-testnet-grpc.itrocket.net/", + "provider": "itrocket" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/terpnettestnet/index.ts b/packages/chain-registry/src/testnet/terpnettestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/terpnettestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/terra2testnet/assets.ts b/packages/chain-registry/src/testnet/terra2testnet/assets.ts new file mode 100644 index 000000000..6220b47a8 --- /dev/null +++ b/packages/chain-registry/src/testnet/terra2testnet/assets.ts @@ -0,0 +1,36 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "terra2testnet", + "assets": [ + { + "description": "The native staking token of Terra.", + "denom_units": [ + { + "denom": "uluna", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/terra2testnet/chain.ts b/packages/chain-registry/src/testnet/terra2testnet/chain.ts new file mode 100644 index 000000000..16783ba1e --- /dev/null +++ b/packages/chain-registry/src/testnet/terra2testnet/chain.ts @@ -0,0 +1,69 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "apis": { + "rpc": [ + { + "address": "https://pisco-rpc.terra.dev:443", + "provider": "Terraform Labs" + }, + { + "address": "https://terra-testnet-rpc.polkachu.com:443", + "provider": "Polkachu" + } + ], + "rest": [ + { + "address": "https://pisco-lcd.terra.dev:443", + "provider": "Terraform Labs" + }, + { + "address": "https://terra-testnet-api.polkachu.com:443", + "provider": "Polkachu" + } + ], + "grpc": [ + { + "address": "terra-testnet-grpc.polkachu.com:11790", + "provider": "Polkachu" + } + ] + }, + "explorers": [ + { + "kind": "finder", + "url": "http://finder.terra.money/testnet/", + "tx_page": "https://finder.terra.money/testnet/tx/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/terra2testnet/index.ts b/packages/chain-registry/src/testnet/terra2testnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/terra2testnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/ulastestnet/assets.ts b/packages/chain-registry/src/testnet/ulastestnet/assets.ts new file mode 100644 index 000000000..7221507d7 --- /dev/null +++ b/packages/chain-registry/src/testnet/ulastestnet/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "ulastestnet", + "assets": [ + { + "description": "WEB3 twitter", + "denom_units": [ + { + "denom": "uulas", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "ulas", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/ulastestnet/chain.ts b/packages/chain-registry/src/testnet/ulastestnet/chain.ts new file mode 100644 index 000000000..1fa61ffb2 --- /dev/null +++ b/packages/chain-registry/src/testnet/ulastestnet/chain.ts @@ -0,0 +1,42 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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" + } + ], + "rest": [ + { + "address": "http://65.49.204.199:1317", + "provider": "UlasNetwork" + } + ], + "grpc": [ + { + "address": "http://65.49.204.199:9090", + "provider": "UlasNetwork" + } + ] + }, + "explorers": [ + { + "kind": "ulas-scan", + "url": "https://testnet-explorer.ulas.network", + "tx_page": "https://testnet-explorer.ulas.network/ulas/tx/${txHash}" + } + ], + "slip44": 118 +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/ulastestnet/index.ts b/packages/chain-registry/src/testnet/ulastestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/ulastestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/uniontestnet/assets.ts b/packages/chain-registry/src/testnet/uniontestnet/assets.ts new file mode 100644 index 000000000..128d5c59d --- /dev/null +++ b/packages/chain-registry/src/testnet/uniontestnet/assets.ts @@ -0,0 +1,39 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "uniontestnet", + "assets": [ + { + "description": "The native token of union", + "denom_units": [ + { + "denom": "muno", + "exponent": 0, + "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" + }, + "coingecko_id": "unionlabs", + "keywords": [ + "staking" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/uniontestnet/chain.ts b/packages/chain-registry/src/testnet/uniontestnet/chain.ts new file mode 100644 index 000000000..61a21552d --- /dev/null +++ b/packages/chain-registry/src/testnet/uniontestnet/chain.ts @@ -0,0 +1,98 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "muno" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.cryptware.io", + "provider": "cryptware" + }, + { + "address": "https://union-testnet-rpc.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://rpc-testnet-union.nodeist.net", + "provider": "Nodeist" + } + ], + "rest": [ + { + "address": "https://api.cryptware.io", + "provider": "cryptware" + }, + { + "address": "https://union-testnet-api.polkachu.com", + "provider": "Polkachu" + }, + { + "address": "https://api-testnet-union.nodeist.net", + "provider": "Nodeist" + } + ], + "grpc": [ + { + "address": "https://grpc.cryptware.io", + "provider": "cryptware" + }, + { + "address": "http://union-testnet-grpc.polkachu.com:24690", + "provider": "Polkachu" + }, + { + "address": "https://grpc-testnet-union.nodeist.net", + "provider": "Nodeist" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" + }, + "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}" + } + ], + "keywords": [ + "testnet" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/uniontestnet/index.ts b/packages/chain-registry/src/testnet/uniontestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/uniontestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/upticktestnet/assets.ts b/packages/chain-registry/src/testnet/upticktestnet/assets.ts new file mode 100644 index 000000000..2f61b3000 --- /dev/null +++ b/packages/chain-registry/src/testnet/upticktestnet/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "upticktestnet", + "assets": [ + { + "description": "The native token of Uptick", + "denom_units": [ + { + "denom": "auptick", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/upticktestnet/images/uptick.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/upticktestnet/chain.ts b/packages/chain-registry/src/testnet/upticktestnet/chain.ts new file mode 100644 index 000000000..8c88ad725 --- /dev/null +++ b/packages/chain-registry/src/testnet/upticktestnet/chain.ts @@ -0,0 +1,66 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "cosmos_sdk_version": "0.46.5" + }, + "apis": { + "rpc": [ + { + "address": "https://uptick-7000-2-rpc.staketab.org:443", + "provider": "Staketab" + } + ], + "rest": [ + { + "address": "https://uptick-7000-2-rest.staketab.org", + "provider": "Staketab" + } + ], + "grpc": [ + { + "address": "services.staketab.com:9004", + "provider": "Staketab" + } + ] + }, + "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": "Nodes.Guru", + "url": "https://uptick.explorers.guru/", + "tx_page": "https://uptick.explorers.guru/transaction/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/upticktestnet/index.ts b/packages/chain-registry/src/testnet/upticktestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/upticktestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/vincechaintestnet/assets.ts b/packages/chain-registry/src/testnet/vincechaintestnet/assets.ts new file mode 100644 index 000000000..faa66d2bb --- /dev/null +++ b/packages/chain-registry/src/testnet/vincechaintestnet/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$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": [ + { + "denom": "avce", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/vincechaintestnet/chain.ts b/packages/chain-registry/src/testnet/vincechaintestnet/chain.ts new file mode 100644 index 000000000..a6baf8a16 --- /dev/null +++ b/packages/chain-registry/src/testnet/vincechaintestnet/chain.ts @@ -0,0 +1,74 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" + }, + "apis": { + "rpc": [ + { + "address": "http://api-testnet.vincechain.com/:26657/", + "provider": "vincescan.com" + } + ], + "rest": [ + { + "address": "http://lcd-testnet.vincechain.com/:1317/", + "provider": "vincescan.com" + } + ], + "grpc": [], + "evm-http-jsonrpc": [ + { + "address": "http://rpc-testnet.vincechain.com", + "provider": "vincescan.com" + } + ] + }, + "explorers": [ + { + "kind": "blockscout", + "url": "https://scan-testnet.vincechain.com", + "tx_page": "https://scan-testnet.vincechain.com/tx/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/vincechaintestnet/index.ts b/packages/chain-registry/src/testnet/vincechaintestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/vincechaintestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/wavehashtestnet/assets.ts b/packages/chain-registry/src/testnet/wavehashtestnet/assets.ts new file mode 100644 index 000000000..4c9970c5e --- /dev/null +++ b/packages/chain-registry/src/testnet/wavehashtestnet/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "wavehashtestnet", + "assets": [ + { + "description": "WaveHash A Permissioned Blockchain", + "denom_units": [ + { + "denom": "uwahax", + "exponent": 0 + }, + { + "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" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/wavehashtestnet/images/WaveHash.png" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/wavehashtestnet/chain.ts b/packages/chain-registry/src/testnet/wavehashtestnet/chain.ts new file mode 100644 index 000000000..f57916687 --- /dev/null +++ b/packages/chain-registry/src/testnet/wavehashtestnet/chain.ts @@ -0,0 +1,66 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": [ + { + "denom": "uwahax" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.wavehash.online/", + "provider": "WaveHash Network" + } + ], + "rest": [ + { + "address": "https://lcd.wavehash.online/", + "provider": "WaveHash Network" + } + ], + "grpc": [ + { + "address": "https://grpc.wavehash.online/", + "provider": "WaveHash Network" + } + ] + }, + "explorers": [ + { + "kind": "atomscan", + "url": "https://atomscan.com/directory/testnet/wavehashtestnet", + "tx_page": "https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/wavehashtestnet/index.ts b/packages/chain-registry/src/testnet/wavehashtestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/wavehashtestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/xiontestnet/assets.ts b/packages/chain-registry/src/testnet/xiontestnet/assets.ts new file mode 100644 index 000000000..25fc12301 --- /dev/null +++ b/packages/chain-registry/src/testnet/xiontestnet/assets.ts @@ -0,0 +1,188 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "xiontestnet", + "assets": [ + { + "description": "The native staking token of the Xion network.", + "denom_units": [ + { + "denom": "uxion", + "exponent": 0, + "aliases": [ + "microxion" + ] + }, + { + "denom": "mxion", + "exponent": 3, + "aliases": [ + "millixion" + ] + }, + { + "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" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", + "exponent": 0, + "aliases": [ + "uaxl" + ] + }, + { + "denom": "axl", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-5", + "path": "transfer/channel-5/uaxl" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "axelartestnet", + "base_denom": "uaxl" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B", + "name": "Osmosis OSMO Token", + "display": "osmo", + "symbol": "OSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosistestnet", + "base_denom": "uosmo", + "channel_id": "channel-1299" + }, + "chain": { + "channel_id": "channel-8", + "path": "transfer/channel-8/uosmo" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosistestnet", + "base_denom": "uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "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" + }, + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nobletestnet", + "base_denom": "uusdc" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/xiontestnet/chain.ts b/packages/chain-registry/src/testnet/xiontestnet/chain.ts new file mode 100644 index 000000000..3e2beaac2 --- /dev/null +++ b/packages/chain-registry/src/testnet/xiontestnet/chain.ts @@ -0,0 +1,73 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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": { + "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" + } + ], + "rest": [ + { + "address": "https://api.xion-testnet-1.burnt.com", + "provider": "burnt-labs" + } + ], + "grpc": [ + { + "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" + }, + "keywords": [ + "xion", + "burnt", + "testnet" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/xiontestnet/ibc.ts b/packages/chain-registry/src/testnet/xiontestnet/ibc.ts new file mode 100644 index 000000000..97b5880d3 --- /dev/null +++ b/packages/chain-registry/src/testnet/xiontestnet/ibc.ts @@ -0,0 +1,94 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-283", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "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" + }, + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-17", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + }, + { + "$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" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4410", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } +]; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/xiontestnet/index.ts b/packages/chain-registry/src/testnet/xiontestnet/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/xiontestnet/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/testnet/zetachaintestnet/assets.ts b/packages/chain-registry/src/testnet/zetachaintestnet/assets.ts new file mode 100644 index 000000000..fcdb2d566 --- /dev/null +++ b/packages/chain-registry/src/testnet/zetachaintestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + "$schema": "../../assetlist.schema.json", + "chain_name": "zetachaintestnet", + "assets": [ + { + "description": "The native token of ZetaChain", + "denom_units": [ + { + "denom": "azeta", + "exponent": 0 + }, + { + "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" + }, + "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" + } + ] + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/zetachaintestnet/chain.ts b/packages/chain-registry/src/testnet/zetachaintestnet/chain.ts new file mode 100644 index 000000000..73c659967 --- /dev/null +++ b/packages/chain-registry/src/testnet/zetachaintestnet/chain.ts @@ -0,0 +1,72 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + "$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 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "azeta" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.46" + }, + "apis": { + "rpc": [ + { + "address": "https://zetachain-athens.blockpi.network/rpc/v1/public", + "provider": "BlockPI" + } + ], + "rest": [ + { + "address": "https://zetachain-athens.blockpi.network/lcd/v1/public", + "provider": "BlockPI" + } + ], + "grpc": [ + { + "address": "https://zetachain-testnet.nodejumper.io:9090", + "provider": "NodeJumper" + } + ] + }, + "explorers": [ + { + "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}" + } + ] +}; +export default info; \ No newline at end of file diff --git a/packages/chain-registry/src/testnet/zetachaintestnet/index.ts b/packages/chain-registry/src/testnet/zetachaintestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/zetachaintestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/yarn.lock b/yarn.lock index 63c3dcb4c..50be067dc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,15 +2,12 @@ # yarn lockfile v1 -"@ampproject/remapping@^2.1.0": - version "2.2.0" - resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" - integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== - dependencies: - "@jridgewell/gen-mapping" "^0.1.0" - "@jridgewell/trace-mapping" "^0.3.9" +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== -"@ampproject/remapping@^2.2.0": +"@ampproject/remapping@^2.1.0", "@ampproject/remapping@^2.2.0": version "2.2.1" resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== @@ -34,31 +31,20 @@ "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.3" chokidar "^3.4.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4", "@babel/code-frame@^7.23.5": + version "7.23.5" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/code-frame@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== - dependencies: - "@babel/highlight" "^7.18.6" + "@babel/highlight" "^7.23.4" + chalk "^2.4.2" -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.4", "@babel/compat-data@^7.20.0": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz#f2e6ef7790d8c8dbf03d379502dcc246dcce0b30" - integrity sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ== +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.4", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.4", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.3", "@babel/compat-data@^7.23.5": + version "7.23.5" + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" + integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== -"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.4.tgz#457ffe647c480dff59c2be092fc3acf71195c87f" - integrity sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g== - -"@babel/core@7.19.6", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.16.0": +"@babel/core@7.19.6": version "7.19.6" resolved "https://registry.npmjs.org/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f" integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg== @@ -100,121 +86,94 @@ json5 "^2.2.2" semver "^6.3.0" -"@babel/eslint-parser@^7.16.3": - version "7.19.1" - resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz#4f68f6b0825489e00a24b41b6a1ae35414ecd2f4" - integrity sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ== +"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.16.0": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz#b028820718000f267870822fec434820e9b1e4d1" + integrity sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw== dependencies: - "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" - eslint-visitor-keys "^2.1.0" - semver "^6.3.0" + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.23.9" + "@babel/parser" "^7.23.9" + "@babel/template" "^7.23.9" + "@babel/traverse" "^7.23.9" + "@babel/types" "^7.23.9" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" -"@babel/eslint-parser@^7.21.3": - version "7.21.3" - resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.3.tgz#d79e822050f2de65d7f368a076846e7184234af7" - integrity sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg== +"@babel/eslint-parser@^7.16.3", "@babel/eslint-parser@^7.21.3": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.9.tgz#052c13b39144e21fdd1e03fc9b67e98976a1ebfc" + integrity sha512-xPndlO7qxiJbn0ATvfXQBjCS7qApc9xmKHArgI/FTEFxXas5dnjC/VqM37lfZun9dclRYcn+YQAr6uDFy0bB2g== dependencies: "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" eslint-visitor-keys "^2.1.0" - semver "^6.3.0" + semver "^6.3.1" -"@babel/generator@^7.19.6", "@babel/generator@^7.20.1", "@babel/generator@^7.7.2": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.20.1.tgz#ef32ecd426222624cbd94871a7024639cf61a9fa" - integrity sha512-u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg== +"@babel/generator@^7.19.6", "@babel/generator@^7.21.4", "@babel/generator@^7.23.6", "@babel/generator@^7.7.2": + version "7.23.6" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== dependencies: - "@babel/types" "^7.20.0" - "@jridgewell/gen-mapping" "^0.3.2" - jsesc "^2.5.1" - -"@babel/generator@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz#64a94b7448989f421f919d5239ef553b37bb26bc" - integrity sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA== - dependencies: - "@babel/types" "^7.21.4" + "@babel/types" "^7.23.6" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" - integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== +"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.22.5" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" - integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15": + version "7.22.15" + resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" + integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== dependencies: - "@babel/helper-explode-assignable-expression" "^7.18.6" - "@babel/types" "^7.18.9" + "@babel/types" "^7.22.15" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a" - integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ== +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.19.3", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.4", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== dependencies: - "@babel/compat-data" "^7.20.0" - "@babel/helper-validator-option" "^7.18.6" - browserslist "^4.21.3" - semver "^6.3.0" - -"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz#770cd1ce0889097ceacb99418ee6934ef0572656" - integrity sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg== - dependencies: - "@babel/compat-data" "^7.21.4" - "@babel/helper-validator-option" "^7.21.0" - browserslist "^4.21.3" + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" lru-cache "^5.1.1" - semver "^6.3.0" - -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.19.0": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz#bfd6904620df4e46470bae4850d66be1054c404b" - integrity sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.19.0" - "@babel/helper-member-expression-to-functions" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.9" - "@babel/helper-split-export-declaration" "^7.18.6" - -"@babel/helper-create-class-features-plugin@^7.21.0": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz#3a017163dc3c2ba7deb9a7950849a9586ea24c18" - integrity sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-member-expression-to-functions" "^7.21.0" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.20.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/helper-split-export-declaration" "^7.18.6" - -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b" - integrity sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - regexpu-core "^5.1.0" - -"@babel/helper-create-regexp-features-plugin@^7.20.5": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.4.tgz#40411a8ab134258ad2cf3a3d987ec6aa0723cee5" - integrity sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.23.6", "@babel/helper-create-class-features-plugin@^7.23.9": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.9.tgz#fddfdf51fca28f23d16b9e3935a4732690acfad6" + integrity sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-member-expression-to-functions" "^7.23.0" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.15" + resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" + integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" regexpu-core "^5.3.1" + semver "^6.3.1" "@babel/helper-define-polyfill-provider@^0.3.3": version "0.3.3" @@ -228,290 +187,197 @@ resolve "^1.14.2" semver "^6.1.2" -"@babel/helper-environment-visitor@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" - integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== - -"@babel/helper-explode-assignable-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096" - integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" - integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== - dependencies: - "@babel/template" "^7.18.10" - "@babel/types" "^7.19.0" - -"@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== - dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" - -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-member-expression-to-functions@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815" - integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg== - dependencies: - "@babel/types" "^7.18.9" - -"@babel/helper-member-expression-to-functions@^7.20.7", "@babel/helper-member-expression-to-functions@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz#319c6a940431a133897148515877d2f3269c3ba5" - integrity sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q== - dependencies: - "@babel/types" "^7.21.0" - -"@babel/helper-module-imports@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" - integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-module-imports@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" - integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== - dependencies: - "@babel/types" "^7.21.4" - -"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6": - version "7.19.6" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f" - integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.19.4" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.6" - "@babel/types" "^7.19.4" - -"@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.2": - version "7.21.2" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2" - integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.20.2" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.2" - "@babel/types" "^7.21.2" - -"@babel/helper-optimise-call-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" - integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf" - integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw== - -"@babel/helper-plugin-utils@^7.20.2": - version "7.20.2" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" - integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== - -"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" - integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-wrap-function" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9", "@babel/helper-replace-supers@^7.19.1": - version "7.19.1" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78" - integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/traverse" "^7.19.1" - "@babel/types" "^7.19.0" - -"@babel/helper-replace-supers@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331" - integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.20.7" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/helper-simple-access@^7.19.4": - version "7.19.4" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" - integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== - dependencies: - "@babel/types" "^7.19.4" - -"@babel/helper-simple-access@^7.20.2": - version "7.20.2" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" - integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== - dependencies: - "@babel/types" "^7.20.2" - -"@babel/helper-skip-transparent-expression-wrappers@^7.18.9", "@babel/helper-skip-transparent-expression-wrappers@^7.20.0": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" - integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== - dependencies: - "@babel/types" "^7.20.0" - -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== +"@babel/helper-define-polyfill-provider@^0.5.0": + version "0.5.0" + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz#465805b7361f461e86c680f1de21eaf88c25901b" + integrity sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q== dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-string-parser@^7.19.4": - version "7.19.4" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" - integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== - -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== - -"@babel/helper-validator-option@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" - integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" -"@babel/helper-validator-option@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" - integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== +"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== -"@babel/helper-wrap-function@^7.18.9": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1" - integrity sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg== +"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== dependencies: - "@babel/helper-function-name" "^7.19.0" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.0" - "@babel/types" "^7.19.0" + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" -"@babel/helpers@^7.19.4": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz#2ab7a0fcb0a03b5bf76629196ed63c2d7311f4c9" - integrity sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg== +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== dependencies: - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.20.1" - "@babel/types" "^7.20.0" + "@babel/types" "^7.22.5" -"@babel/helpers@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz#9dd184fb5599862037917cdc9eecb84577dc4e7e" - integrity sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA== +"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": + version "7.23.0" + resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" + integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.0" - "@babel/types" "^7.21.0" + "@babel/types" "^7.23.0" + +"@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4", "@babel/helper-module-imports@^7.22.15": + version "7.22.15" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== + dependencies: + "@babel/types" "^7.22.15" -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== +"@babel/helper-module-transforms@^7.19.6", "@babel/helper-module-transforms@^7.21.2", "@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.22.20": + version "7.22.20" + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" + integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-wrap-function" "^7.22.20" + +"@babel/helper-replace-supers@^7.22.20": + version "7.22.20" + resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" + integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-optimise-call-expression" "^7.22.5" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== + +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== + +"@babel/helper-validator-option@^7.18.6", "@babel/helper-validator-option@^7.21.0", "@babel/helper-validator-option@^7.22.15", "@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + +"@babel/helper-wrap-function@^7.22.20": + version "7.22.20" + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569" + integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.15" + "@babel/types" "^7.22.19" + +"@babel/helpers@^7.19.4", "@babel/helpers@^7.21.0", "@babel/helpers@^7.23.9": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz#c3e20bbe7f7a7e10cb9b178384b4affdf5995c7d" + integrity sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ== dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" + "@babel/template" "^7.23.9" + "@babel/traverse" "^7.23.9" + "@babel/types" "^7.23.9" + +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== + dependencies: + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" js-tokens "^4.0.0" "@babel/node@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/node/-/node-7.20.7.tgz#609be7f841893e24931b7910263babfde84040a9" - integrity sha512-AQt3gVcP+fpFuoFn4FmIW/+5JovvEoA9og4Y1LrRw0pv3jkl4tujZMMy3X/3ugjLrEy3k1aNywo3JIl3g+jVXQ== + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/node/-/node-7.23.9.tgz#fc40dc371439f1a45535ebf515232f4f046ef7a9" + integrity sha512-/d4ju/POwlGIJlZ+NqWH1qu61wt6ZlTZZZutrK2MOSdaH1JCh726nLw/GSvAjG+LTY6CO9SsB8uWcttnFKm6yg== dependencies: - "@babel/register" "^7.18.9" + "@babel/register" "^7.23.7" commander "^4.0.1" - core-js "^3.26.0" + core-js "^3.30.2" node-environment-flags "^1.0.5" - regenerator-runtime "^0.13.11" + regenerator-runtime "^0.14.0" v8flags "^3.1.1" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.19.6", "@babel/parser@^7.20.1", "@babel/parser@^7.7.0": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.20.1.tgz#3e045a92f7b4623cafc2425eddcb8cf2e54f9cc5" - integrity sha512-hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.19.6", "@babel/parser@^7.20.7", "@babel/parser@^7.21.4", "@babel/parser@^7.23.9", "@babel/parser@^7.7.0": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz#7b903b6149b0f8fa7ad564af646c4c38a77fc44b" + integrity sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA== -"@babel/parser@^7.20.7", "@babel/parser@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz#94003fdfc520bbe2875d4ae557b43ddb6d880f17" - integrity sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw== - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" - integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50" - integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" + integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - "@babel/plugin-proposal-optional-chaining" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1" - integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" + integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/plugin-proposal-optional-chaining" "^7.20.7" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.23.3" -"@babel/plugin-proposal-async-generator-functions@^7.19.1": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz#352f02baa5d69f4e7529bdac39aaa02d41146af9" - integrity sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g== +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.7": + version "7.23.7" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz#516462a95d10a9618f197d39ad291a9b47ae1d7b" + integrity sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw== dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-remap-async-to-generator" "^7.18.9" - "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-proposal-async-generator-functions@^7.20.7": +"@babel/plugin-proposal-async-generator-functions@^7.19.1", "@babel/plugin-proposal-async-generator-functions@^7.20.7": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== @@ -529,16 +395,7 @@ "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-proposal-class-static-block@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020" - integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-proposal-class-static-block@^7.21.0": +"@babel/plugin-proposal-class-static-block@^7.18.6", "@babel/plugin-proposal-class-static-block@^7.21.0": version "7.21.0" resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d" integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw== @@ -548,15 +405,13 @@ "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-proposal-decorators@^7.16.4": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.0.tgz#3acef1f1206d7a6a1436aa6ccf9ed7b1bd06aff7" - integrity sha512-vnuRRS20ygSxclEYikHzVrP9nZDFXaSzvJxGLQNAiBX041TmhS4hOUHWNIpq/q4muENuEP9XPJFXTNFejhemkg== + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.9.tgz#126d947d62ee72022ec46813983c6dd861456fa3" + integrity sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA== dependencies: - "@babel/helper-create-class-features-plugin" "^7.19.0" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-replace-supers" "^7.19.1" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/plugin-syntax-decorators" "^7.19.0" + "@babel/helper-create-class-features-plugin" "^7.23.9" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-decorators" "^7.23.3" "@babel/plugin-proposal-dynamic-import@^7.18.6": version "7.18.6" @@ -590,15 +445,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-proposal-logical-assignment-operators@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23" - integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-logical-assignment-operators@^7.20.7": +"@babel/plugin-proposal-logical-assignment-operators@^7.18.9", "@babel/plugin-proposal-logical-assignment-operators@^7.20.7": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== @@ -622,7 +469,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@7.19.4", "@babel/plugin-proposal-object-rest-spread@^7.19.4": +"@babel/plugin-proposal-object-rest-spread@7.19.4": version "7.19.4" resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz#a8fc86e8180ff57290c91a75d83fe658189b642d" integrity sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q== @@ -633,7 +480,7 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.18.8" -"@babel/plugin-proposal-object-rest-spread@7.20.7", "@babel/plugin-proposal-object-rest-spread@^7.20.7": +"@babel/plugin-proposal-object-rest-spread@7.20.7", "@babel/plugin-proposal-object-rest-spread@^7.19.4", "@babel/plugin-proposal-object-rest-spread@^7.20.7": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== @@ -652,16 +499,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993" - integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-proposal-optional-chaining@^7.20.7", "@babel/plugin-proposal-optional-chaining@^7.21.0": +"@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.18.9", "@babel/plugin-proposal-optional-chaining@^7.21.0": version "7.21.0" resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== @@ -678,20 +516,15 @@ "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-proposal-private-property-in-object@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503" - integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== -"@babel/plugin-proposal-private-property-in-object@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz#19496bd9883dd83c23c7d7fc45dcd9ad02dfa1dc" - integrity sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw== +"@babel/plugin-proposal-private-property-in-object@^7.18.6", "@babel/plugin-proposal-private-property-in-object@^7.21.0": + version "7.21.11" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz#69d597086b6760c4126525cfa154f34631ff272c" + integrity sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-create-class-features-plugin" "^7.21.0" @@ -734,12 +567,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-decorators@^7.19.0": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz#5f13d1d8fce96951bea01a10424463c9a5b3a599" - integrity sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ== +"@babel/plugin-syntax-decorators@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz#a1d351d6c25bfdcf2e16f99b039101bc0ffcb0ca" + integrity sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" @@ -749,11 +582,11 @@ "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-export-default-from@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.18.6.tgz#8df076711a4818c4ce4f23e61d622b0ba2ff84bc" - integrity sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew== + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.23.3.tgz#7e6d4bf595d5724230200fb2b7401d4734b15335" + integrity sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-export-namespace-from@^7.8.3": version "7.8.3" @@ -762,21 +595,28 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-flow@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz#774d825256f2379d06139be0c723c4dd444f3ca1" - integrity sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A== +"@babel/plugin-syntax-flow@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz#084564e0f3cc21ea6c70c44cff984a1c0509729a" + integrity sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-import-assertions@^7.18.6", "@babel/plugin-syntax-import-assertions@^7.20.0": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" - integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== +"@babel/plugin-syntax-import-assertions@^7.18.6", "@babel/plugin-syntax-import-assertions@^7.20.0", "@babel/plugin-syntax-import-assertions@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" + integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-import-meta@^7.8.3": +"@babel/plugin-syntax-import-attributes@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" + integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== @@ -790,19 +630,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.18.6", "@babel/plugin-syntax-jsx@^7.7.2": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" - integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== +"@babel/plugin-syntax-jsx@^7.23.3", "@babel/plugin-syntax-jsx@^7.7.2": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" + integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-jsx@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2" - integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" @@ -860,364 +693,384 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.20.0", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7" - integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ== +"@babel/plugin-syntax-typescript@^7.23.3", "@babel/plugin-syntax-typescript@^7.7.2": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f" + integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-arrow-functions@^7.18.6": +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe" - integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz#bea332b0e8b2dab3dafe55a163d8227531ab0551" - integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ== +"@babel/plugin-transform-arrow-functions@^7.18.6", "@babel/plugin-transform-arrow-functions@^7.20.7", "@babel/plugin-transform-arrow-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" + integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-to-generator@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615" - integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== +"@babel/plugin-transform-async-generator-functions@^7.23.9": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz#9adaeb66fc9634a586c5df139c6240d41ed801ce" + integrity sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ== dependencies: - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-remap-async-to-generator" "^7.18.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" + "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-transform-async-to-generator@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354" - integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q== +"@babel/plugin-transform-async-to-generator@^7.18.6", "@babel/plugin-transform-async-to-generator@^7.20.7", "@babel/plugin-transform-async-to-generator@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" + integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== dependencies: - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-remap-async-to-generator" "^7.18.9" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" -"@babel/plugin-transform-block-scoped-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" - integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== +"@babel/plugin-transform-block-scoped-functions@^7.18.6", "@babel/plugin-transform-block-scoped-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" + integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.19.4": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.0.tgz#91fe5e6ffc9ba13cb6c95ed7f0b1204f68c988c5" - integrity sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w== +"@babel/plugin-transform-block-scoping@^7.19.4", "@babel/plugin-transform-block-scoping@^7.21.0", "@babel/plugin-transform-block-scoping@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" + integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02" - integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ== +"@babel/plugin-transform-class-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" + integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-classes@^7.19.0": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz#0e61ec257fba409c41372175e7c1e606dc79bb20" - integrity sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A== +"@babel/plugin-transform-class-static-block@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" + integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-compilation-targets" "^7.19.0" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.19.0" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-replace-supers" "^7.18.9" - "@babel/helper-split-export-declaration" "^7.18.6" - globals "^11.1.0" + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-transform-classes@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665" - integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-replace-supers" "^7.20.7" - "@babel/helper-split-export-declaration" "^7.18.6" +"@babel/plugin-transform-classes@^7.19.0", "@babel/plugin-transform-classes@^7.21.0", "@babel/plugin-transform-classes@^7.23.8": + version "7.23.8" + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz#d08ae096c240347badd68cdf1b6d1624a6435d92" + integrity sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e" - integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== +"@babel/plugin-transform-computed-properties@^7.18.9", "@babel/plugin-transform-computed-properties@^7.20.7", "@babel/plugin-transform-computed-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" + integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/template" "^7.22.15" -"@babel/plugin-transform-computed-properties@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz#704cc2fd155d1c996551db8276d55b9d46e4d0aa" - integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ== +"@babel/plugin-transform-destructuring@^7.19.4", "@babel/plugin-transform-destructuring@^7.21.3", "@babel/plugin-transform-destructuring@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" + integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/template" "^7.20.7" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-destructuring@^7.19.4": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.0.tgz#712829ef4825d9cc04bb379de316f981e9a6f648" - integrity sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA== +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.23.3", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" + integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-destructuring@^7.21.3": - version "7.21.3" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401" - integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA== +"@babel/plugin-transform-duplicate-keys@^7.18.9", "@babel/plugin-transform-duplicate-keys@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" + integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" - integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== +"@babel/plugin-transform-dynamic-import@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" + integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-transform-duplicate-keys@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" - integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== +"@babel/plugin-transform-exponentiation-operator@^7.18.6", "@babel/plugin-transform-exponentiation-operator@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" + integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-exponentiation-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" - integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== +"@babel/plugin-transform-export-namespace-from@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" + integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" "@babel/plugin-transform-flow-strip-types@^7.16.0": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz#e9e8606633287488216028719638cbbb2f2dde8f" - integrity sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg== + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz#cfa7ca159cc3306fab526fc67091556b51af26ff" + integrity sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/plugin-syntax-flow" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-flow" "^7.23.3" -"@babel/plugin-transform-for-of@^7.18.8": - version "7.18.8" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1" - integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== +"@babel/plugin-transform-for-of@^7.18.8", "@babel/plugin-transform-for-of@^7.21.0", "@babel/plugin-transform-for-of@^7.23.6": + version "7.23.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e" + integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-for-of@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz#964108c9988de1a60b4be2354a7d7e245f36e86e" - integrity sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ== +"@babel/plugin-transform-function-name@^7.18.9", "@babel/plugin-transform-function-name@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" + integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-function-name@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" - integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== +"@babel/plugin-transform-json-strings@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" + integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== dependencies: - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-transform-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" - integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== +"@babel/plugin-transform-literals@^7.18.9", "@babel/plugin-transform-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" + integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-member-expression-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" - integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== +"@babel/plugin-transform-logical-assignment-operators@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" + integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-transform-modules-amd@^7.18.6": - version "7.19.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd" - integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg== +"@babel/plugin-transform-member-expression-literals@^7.18.6", "@babel/plugin-transform-member-expression-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" + integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== dependencies: - "@babel/helper-module-transforms" "^7.19.6" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-amd@^7.20.11": - version "7.20.11" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a" - integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== +"@babel/plugin-transform-modules-amd@^7.18.6", "@babel/plugin-transform-modules-amd@^7.20.11", "@babel/plugin-transform-modules-amd@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" + integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== dependencies: - "@babel/helper-module-transforms" "^7.20.11" - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.18.6": - version "7.19.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c" - integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ== +"@babel/plugin-transform-modules-commonjs@^7.18.6", "@babel/plugin-transform-modules-commonjs@^7.21.2", "@babel/plugin-transform-modules-commonjs@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" + integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== dependencies: - "@babel/helper-module-transforms" "^7.19.6" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-simple-access" "^7.19.4" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.21.2": - version "7.21.2" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz#6ff5070e71e3192ef2b7e39820a06fb78e3058e7" - integrity sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA== +"@babel/plugin-transform-modules-systemjs@^7.19.0", "@babel/plugin-transform-modules-systemjs@^7.20.11", "@babel/plugin-transform-modules-systemjs@^7.23.9": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz#105d3ed46e4a21d257f83a2f9e2ee4203ceda6be" + integrity sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw== dependencies: - "@babel/helper-module-transforms" "^7.21.2" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-simple-access" "^7.20.2" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.20" -"@babel/plugin-transform-modules-systemjs@^7.19.0": - version "7.19.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d" - integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ== +"@babel/plugin-transform-modules-umd@^7.18.6", "@babel/plugin-transform-modules-umd@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" + integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== dependencies: - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-module-transforms" "^7.19.6" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-validator-identifier" "^7.19.1" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.20.11": - version "7.20.11" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz#467ec6bba6b6a50634eea61c9c232654d8a4696e" - integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== +"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1", "@babel/plugin-transform-named-capturing-groups-regex@^7.20.5", "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== dependencies: - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-module-transforms" "^7.20.11" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-validator-identifier" "^7.19.1" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-umd@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" - integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== +"@babel/plugin-transform-new-target@^7.18.6", "@babel/plugin-transform-new-target@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" + integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1": - version "7.19.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888" - integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw== +"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" + integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.19.0" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-transform-named-capturing-groups-regex@^7.20.5": - version "7.20.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8" - integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== +"@babel/plugin-transform-numeric-separator@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" + integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.20.5" - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-new-target@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" - integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== +"@babel/plugin-transform-object-rest-spread@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz#2b9c2d26bf62710460bdc0d1730d4f1048361b83" + integrity sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/compat-data" "^7.23.3" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.23.3" -"@babel/plugin-transform-object-super@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" - integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== +"@babel/plugin-transform-object-super@^7.18.6", "@babel/plugin-transform-object-super@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" + integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" -"@babel/plugin-transform-parameters@^7.18.8": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.1.tgz#9a5aa370fdcce36f110455e9369db7afca0f9eeb" - integrity sha512-nDvKLrAvl+kf6BOy1UJ3MGwzzfTMgppxwiD2Jb4LO3xjYyZq30oQzDNJbCQpMdG9+j2IXHoiMrw5Cm/L6ZoxXQ== +"@babel/plugin-transform-optional-catch-binding@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" + integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3": - version "7.21.3" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db" - integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ== +"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" + integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-transform-property-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" - integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== +"@babel/plugin-transform-parameters@^7.18.8", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3", "@babel/plugin-transform-parameters@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" + integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415" - integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA== +"@babel/plugin-transform-private-methods@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" + integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-react-jsx-development@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5" - integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== +"@babel/plugin-transform-private-property-in-object@^7.23.4": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" + integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== dependencies: - "@babel/plugin-transform-react-jsx" "^7.18.6" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-transform-react-jsx@^7.18.6": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9" - integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg== +"@babel/plugin-transform-property-literals@^7.18.6", "@babel/plugin-transform-property-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" + integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/plugin-syntax-jsx" "^7.18.6" - "@babel/types" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-react-pure-annotations@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz#561af267f19f3e5d59291f9950fd7b9663d0d844" - integrity sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ== +"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.18.6", "@babel/plugin-transform-react-display-name@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz#70529f034dd1e561045ad3c8152a267f0d7b6200" + integrity sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw== dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-regenerator@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73" - integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== +"@babel/plugin-transform-react-jsx-development@^7.18.6", "@babel/plugin-transform-react-jsx-development@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" + integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - regenerator-transform "^0.15.0" + "@babel/plugin-transform-react-jsx" "^7.22.5" -"@babel/plugin-transform-regenerator@^7.20.5": - version "7.20.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz#57cda588c7ffb7f4f8483cc83bdcea02a907f04d" - integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ== +"@babel/plugin-transform-react-jsx@^7.18.6", "@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5": + version "7.23.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz#393f99185110cea87184ea47bcb4a7b0c2e39312" + integrity sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - regenerator-transform "^0.15.1" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/types" "^7.23.4" -"@babel/plugin-transform-reserved-words@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" - integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== +"@babel/plugin-transform-react-pure-annotations@^7.18.6", "@babel/plugin-transform-react-pure-annotations@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz#fabedbdb8ee40edf5da96f3ecfc6958e3783b93c" + integrity sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-regenerator@^7.18.6", "@babel/plugin-transform-regenerator@^7.20.5", "@babel/plugin-transform-regenerator@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" + integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + regenerator-transform "^0.15.2" + +"@babel/plugin-transform-reserved-words@^7.18.6", "@babel/plugin-transform-reserved-words@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" + integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-runtime@7.19.6", "@babel/plugin-transform-runtime@^7.16.4": +"@babel/plugin-transform-runtime@7.19.6": version "7.19.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz#9d2a9dbf4e12644d6f46e5e75bfbf02b5d6e9194" integrity sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw== @@ -1241,85 +1094,96 @@ babel-plugin-polyfill-regenerator "^0.4.1" semver "^6.3.0" -"@babel/plugin-transform-shorthand-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" - integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== +"@babel/plugin-transform-runtime@^7.16.4": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.9.tgz#2c64d0680fc8e09e1dfe8fd5c646fe72abd82004" + integrity sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + babel-plugin-polyfill-corejs2 "^0.4.8" + babel-plugin-polyfill-corejs3 "^0.9.0" + babel-plugin-polyfill-regenerator "^0.5.5" + semver "^6.3.1" -"@babel/plugin-transform-spread@^7.19.0": - version "7.19.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6" - integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w== +"@babel/plugin-transform-shorthand-properties@^7.18.6", "@babel/plugin-transform-shorthand-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" + integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-spread@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e" - integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== +"@babel/plugin-transform-spread@^7.19.0", "@babel/plugin-transform-spread@^7.20.7", "@babel/plugin-transform-spread@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" + integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" - integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== +"@babel/plugin-transform-sticky-regex@^7.18.6", "@babel/plugin-transform-sticky-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" + integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-template-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" - integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== +"@babel/plugin-transform-template-literals@^7.18.9", "@babel/plugin-transform-template-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" + integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typeof-symbol@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" - integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== +"@babel/plugin-transform-typeof-symbol@^7.18.9", "@babel/plugin-transform-typeof-symbol@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" + integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typescript@^7.18.6": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.0.tgz#2c7ec62b8bfc21482f3748789ba294a46a375169" - integrity sha512-xOAsAFaun3t9hCwZ13Qe7gq423UgMZ6zAgmLxeGGapFqlT/X3L5qT2btjiVLlFn7gWtMaVyceS5VxGAuKbgizw== +"@babel/plugin-transform-typescript@^7.23.3": + version "7.23.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz#aa36a94e5da8d94339ae3a4e22d40ed287feb34c" + integrity sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA== dependencies: - "@babel/helper-create-class-features-plugin" "^7.19.0" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/plugin-syntax-typescript" "^7.20.0" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.23.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-typescript" "^7.23.3" -"@babel/plugin-transform-typescript@^7.21.3": - version "7.21.3" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz#316c5be579856ea890a57ebc5116c5d064658f2b" - integrity sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw== +"@babel/plugin-transform-unicode-escapes@^7.18.10", "@babel/plugin-transform-unicode-escapes@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" + integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.21.0" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-typescript" "^7.20.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-escapes@^7.18.10": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246" - integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== +"@babel/plugin-transform-unicode-property-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" + integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" - integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== +"@babel/plugin-transform-unicode-regex@^7.18.6", "@babel/plugin-transform-unicode-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" + integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/preset-env@7.19.4", "@babel/preset-env@^7.16.4": +"@babel/plugin-transform-unicode-sets-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" + integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/preset-env@7.19.4": version "7.19.4" resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.4.tgz#4c91ce2e1f994f717efb4237891c3ad2d808c94b" integrity sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg== @@ -1481,10 +1345,105 @@ core-js-compat "^3.25.1" semver "^6.3.0" +"@babel/preset-env@^7.16.4": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz#beace3b7994560ed6bf78e4ae2073dff45387669" + integrity sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.7" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.23.3" + "@babel/plugin-syntax-import-attributes" "^7.23.3" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.23.3" + "@babel/plugin-transform-async-generator-functions" "^7.23.9" + "@babel/plugin-transform-async-to-generator" "^7.23.3" + "@babel/plugin-transform-block-scoped-functions" "^7.23.3" + "@babel/plugin-transform-block-scoping" "^7.23.4" + "@babel/plugin-transform-class-properties" "^7.23.3" + "@babel/plugin-transform-class-static-block" "^7.23.4" + "@babel/plugin-transform-classes" "^7.23.8" + "@babel/plugin-transform-computed-properties" "^7.23.3" + "@babel/plugin-transform-destructuring" "^7.23.3" + "@babel/plugin-transform-dotall-regex" "^7.23.3" + "@babel/plugin-transform-duplicate-keys" "^7.23.3" + "@babel/plugin-transform-dynamic-import" "^7.23.4" + "@babel/plugin-transform-exponentiation-operator" "^7.23.3" + "@babel/plugin-transform-export-namespace-from" "^7.23.4" + "@babel/plugin-transform-for-of" "^7.23.6" + "@babel/plugin-transform-function-name" "^7.23.3" + "@babel/plugin-transform-json-strings" "^7.23.4" + "@babel/plugin-transform-literals" "^7.23.3" + "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" + "@babel/plugin-transform-member-expression-literals" "^7.23.3" + "@babel/plugin-transform-modules-amd" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-modules-systemjs" "^7.23.9" + "@babel/plugin-transform-modules-umd" "^7.23.3" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.23.3" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" + "@babel/plugin-transform-numeric-separator" "^7.23.4" + "@babel/plugin-transform-object-rest-spread" "^7.23.4" + "@babel/plugin-transform-object-super" "^7.23.3" + "@babel/plugin-transform-optional-catch-binding" "^7.23.4" + "@babel/plugin-transform-optional-chaining" "^7.23.4" + "@babel/plugin-transform-parameters" "^7.23.3" + "@babel/plugin-transform-private-methods" "^7.23.3" + "@babel/plugin-transform-private-property-in-object" "^7.23.4" + "@babel/plugin-transform-property-literals" "^7.23.3" + "@babel/plugin-transform-regenerator" "^7.23.3" + "@babel/plugin-transform-reserved-words" "^7.23.3" + "@babel/plugin-transform-shorthand-properties" "^7.23.3" + "@babel/plugin-transform-spread" "^7.23.3" + "@babel/plugin-transform-sticky-regex" "^7.23.3" + "@babel/plugin-transform-template-literals" "^7.23.3" + "@babel/plugin-transform-typeof-symbol" "^7.23.3" + "@babel/plugin-transform-unicode-escapes" "^7.23.3" + "@babel/plugin-transform-unicode-property-regex" "^7.23.3" + "@babel/plugin-transform-unicode-regex" "^7.23.3" + "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" + "@babel/preset-modules" "0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2 "^0.4.8" + babel-plugin-polyfill-corejs3 "^0.9.0" + babel-plugin-polyfill-regenerator "^0.5.5" + core-js-compat "^3.31.0" + semver "^6.3.1" + +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + "@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + version "0.1.6" + resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz#31bcdd8f19538437339d17af00d177d854d9d458" + integrity sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" @@ -1492,7 +1451,7 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-react@7.18.6", "@babel/preset-react@^7.16.0": +"@babel/preset-react@7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d" integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg== @@ -1504,35 +1463,38 @@ "@babel/plugin-transform-react-jsx-development" "^7.18.6" "@babel/plugin-transform-react-pure-annotations" "^7.18.6" -"@babel/preset-typescript@^7.16.0": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399" - integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-validator-option" "^7.18.6" - "@babel/plugin-transform-typescript" "^7.18.6" - -"@babel/preset-typescript@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.4.tgz#b913ac8e6aa8932e47c21b01b4368d8aa239a529" - integrity sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-validator-option" "^7.21.0" - "@babel/plugin-syntax-jsx" "^7.21.4" - "@babel/plugin-transform-modules-commonjs" "^7.21.2" - "@babel/plugin-transform-typescript" "^7.21.3" - -"@babel/register@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c" - integrity sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw== +"@babel/preset-react@^7.16.0": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz#f73ca07e7590f977db07eb54dbe46538cc015709" + integrity sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-transform-react-display-name" "^7.23.3" + "@babel/plugin-transform-react-jsx" "^7.22.15" + "@babel/plugin-transform-react-jsx-development" "^7.22.5" + "@babel/plugin-transform-react-pure-annotations" "^7.23.3" + +"@babel/preset-typescript@^7.16.0", "@babel/preset-typescript@^7.21.4": + version "7.23.3" + resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz#14534b34ed5b6d435aa05f1ae1c5e7adcc01d913" + integrity sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-typescript" "^7.23.3" + +"@babel/register@^7.23.7": + version "7.23.7" + resolved "https://registry.npmjs.org/@babel/register/-/register-7.23.7.tgz#485a5e7951939d21304cae4af1719fdb887bc038" + integrity sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ== dependencies: clone-deep "^4.0.1" find-cache-dir "^2.0.0" make-dir "^2.1.0" - pirates "^4.0.5" + pirates "^4.0.6" source-map-support "^0.5.16" "@babel/regjsgen@^0.8.0": @@ -1540,94 +1502,45 @@ resolved "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime-corejs3@^7.10.2": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz#d0775a49bb5fba77e42cbb7276c9955c7b05af8d" - integrity sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg== - dependencies: - core-js-pure "^3.25.1" - regenerator-runtime "^0.13.10" - -"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.18.9", "@babel/runtime@^7.8.4": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz#1148bb33ab252b165a06698fde7576092a78b4a9" - integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg== - dependencies: - regenerator-runtime "^0.13.10" - -"@babel/runtime@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" - integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== - dependencies: - regenerator-runtime "^0.13.11" - -"@babel/template@^7.18.10", "@babel/template@^7.3.3": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" - integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.18.10" - "@babel/types" "^7.18.10" - -"@babel/template@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" - integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.6", "@babel/traverse@^7.20.1", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.2": - version "7.20.1" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz#9b15ccbf882f6d107eeeecf263fbcdd208777ec8" - integrity sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.20.1" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.19.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.20.1" - "@babel/types" "^7.20.0" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz#a836aca7b116634e97a6ed99976236b3282c9d36" - integrity sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.4" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.21.4" - "@babel/types" "^7.21.4" - debug "^4.1.0" +"@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.21.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.8.4": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz#47791a15e4603bb5f905bc0753801cf21d6345f7" + integrity sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.22.15", "@babel/template@^7.23.9", "@babel/template@^7.3.3": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz#f881d0487cba2828d3259dcb9ef5005a9731011a" + integrity sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/parser" "^7.23.9" + "@babel/types" "^7.23.9" + +"@babel/traverse@^7.19.6", "@babel/traverse@^7.21.4", "@babel/traverse@^7.23.9", "@babel/traverse@^7.7.0": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz#2f9d6aead6b564669394c5ce0f9302bb65b9d950" + integrity sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.23.9" + "@babel/types" "^7.23.9" + debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.4", "@babel/types@^7.20.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": - version "7.20.0" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479" - integrity sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg== - dependencies: - "@babel/helper-string-parser" "^7.19.4" - "@babel/helper-validator-identifier" "^7.19.1" - to-fast-properties "^2.0.0" - -"@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.4": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz#2d5d6bb7908699b3b416409ffd3b5daa25b030d4" - integrity sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA== +"@babel/types@^7.0.0", "@babel/types@^7.19.4", "@babel/types@^7.20.7", "@babel/types@^7.21.4", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.4", "@babel/types@^7.23.6", "@babel/types@^7.23.9", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.23.9" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz#1dd7b59a9a2b5c87f8b41e52770b5ecbf492e002" + integrity sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q== dependencies: - "@babel/helper-string-parser" "^7.19.4" - "@babel/helper-validator-identifier" "^7.19.1" + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" "@bcoe/v8-coverage@^0.2.3": @@ -1647,19 +1560,19 @@ dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.4.0": - version "4.5.0" - resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz#f6f729b02feee2c749f57e334b7a1b5f40a81724" - integrity sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ== +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": + version "4.10.0" + resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" + integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== -"@eslint/eslintrc@^2.0.2": - version "2.0.2" - resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz#01575e38707add677cf73ca1589abba8da899a02" - integrity sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ== +"@eslint/eslintrc@^2.0.2", "@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.5.1" + espree "^9.6.0" globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" @@ -1672,6 +1585,11 @@ resolved "https://registry.npmjs.org/@eslint/js/-/js-8.38.0.tgz#73a8a0d8aa8a8e6fe270431c5e72ae91b5337892" integrity sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g== +"@eslint/js@8.56.0": + version "8.56.0" + resolved "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz#ef20350fec605a7f7035a01764731b2de0f3782b" + integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A== + "@ethersproject/address@^5.6.0": version "5.7.0" resolved "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" @@ -1794,13 +1712,13 @@ unique-filename "^1.1.1" which "^1.3.1" -"@humanwhocodes/config-array@^0.11.8": - version "0.11.8" - resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" - integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== +"@humanwhocodes/config-array@^0.11.13", "@humanwhocodes/config-array@^0.11.8": + version "0.11.14" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" + integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" + "@humanwhocodes/object-schema" "^2.0.2" + debug "^4.3.1" minimatch "^3.0.5" "@humanwhocodes/module-importer@^1.0.1": @@ -1808,10 +1726,10 @@ resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@humanwhocodes/object-schema@^2.0.2": + version "2.0.2" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917" + integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" @@ -1829,117 +1747,110 @@ resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== -"@jest/console@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" - integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== +"@jest/console@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" + integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" slash "^3.0.0" -"@jest/core@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" - integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== +"@jest/core@^29.5.0", "@jest/core@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" + integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== dependencies: - "@jest/console" "^29.5.0" - "@jest/reporters" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/console" "^29.7.0" + "@jest/reporters" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" ci-info "^3.2.0" exit "^0.1.2" graceful-fs "^4.2.9" - jest-changed-files "^29.5.0" - jest-config "^29.5.0" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-resolve-dependencies "^29.5.0" - jest-runner "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - jest-watcher "^29.5.0" + jest-changed-files "^29.7.0" + jest-config "^29.7.0" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-resolve-dependencies "^29.7.0" + jest-runner "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + jest-watcher "^29.7.0" micromatch "^4.0.4" - pretty-format "^29.5.0" + pretty-format "^29.7.0" slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" - integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== +"@jest/environment@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" + integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== dependencies: - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" - jest-mock "^29.5.0" - -"@jest/expect-utils@^29.2.2": - version "29.2.2" - resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.2.2.tgz#460a5b5a3caf84d4feb2668677393dd66ff98665" - integrity sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg== - dependencies: - jest-get-type "^29.2.0" + jest-mock "^29.7.0" -"@jest/expect-utils@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" - integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== +"@jest/expect-utils@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" + integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== dependencies: - jest-get-type "^29.4.3" + jest-get-type "^29.6.3" -"@jest/expect@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" - integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== +"@jest/expect@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" + integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== dependencies: - expect "^29.5.0" - jest-snapshot "^29.5.0" + expect "^29.7.0" + jest-snapshot "^29.7.0" -"@jest/fake-timers@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" - integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== +"@jest/fake-timers@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" + integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@sinonjs/fake-timers" "^10.0.2" "@types/node" "*" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-util "^29.7.0" -"@jest/globals@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" - integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== +"@jest/globals@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" + integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/types" "^29.5.0" - jest-mock "^29.5.0" + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/types" "^29.6.3" + jest-mock "^29.7.0" -"@jest/reporters@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" - integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== +"@jest/reporters@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" + integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" + "@jest/console" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" "@types/node" "*" chalk "^4.0.0" collect-v8-coverage "^1.0.0" @@ -1947,115 +1858,88 @@ glob "^7.1.3" graceful-fs "^4.2.9" istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^5.1.0" + istanbul-lib-instrument "^6.0.0" istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.1.3" - jest-message-util "^29.5.0" - jest-util "^29.5.0" - jest-worker "^29.5.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + jest-worker "^29.7.0" slash "^3.0.0" string-length "^4.0.1" strip-ansi "^6.0.0" v8-to-istanbul "^9.0.1" -"@jest/schemas@^29.0.0": - version "29.0.0" - resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.0.0.tgz#5f47f5994dd4ef067fb7b4188ceac45f77fe952a" - integrity sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA== +"@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== dependencies: - "@sinclair/typebox" "^0.24.1" + "@sinclair/typebox" "^0.27.8" -"@jest/schemas@^29.4.3": - version "29.4.3" - resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" - integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== +"@jest/source-map@^29.6.3": + version "29.6.3" + resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" + integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== dependencies: - "@sinclair/typebox" "^0.25.16" - -"@jest/source-map@^29.4.3": - version "29.4.3" - resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" - integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== - dependencies: - "@jridgewell/trace-mapping" "^0.3.15" + "@jridgewell/trace-mapping" "^0.3.18" callsites "^3.0.0" graceful-fs "^4.2.9" -"@jest/test-result@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" - integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== +"@jest/test-result@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" + integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== dependencies: - "@jest/console" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/console" "^29.7.0" + "@jest/types" "^29.6.3" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" - integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== +"@jest/test-sequencer@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" + integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== dependencies: - "@jest/test-result" "^29.5.0" + "@jest/test-result" "^29.7.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.7.0" slash "^3.0.0" -"@jest/transform@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" - integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== +"@jest/transform@^29.5.0", "@jest/transform@^29.7.0": + version "29.7.0" + resolved "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" + integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== dependencies: "@babel/core" "^7.11.6" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" babel-plugin-istanbul "^6.1.1" chalk "^4.0.0" convert-source-map "^2.0.0" fast-json-stable-stringify "^2.1.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-regex-util "^29.4.3" - jest-util "^29.5.0" + jest-haste-map "^29.7.0" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" micromatch "^4.0.4" pirates "^4.0.4" slash "^3.0.0" write-file-atomic "^4.0.2" -"@jest/types@^29.2.1": - version "29.2.1" - resolved "https://registry.npmjs.org/@jest/types/-/types-29.2.1.tgz#ec9c683094d4eb754e41e2119d8bdaef01cf6da0" - integrity sha512-O/QNDQODLnINEPAI0cl9U6zUIDXEWXt6IC1o2N2QENuos7hlGUIthlKyV4p6ki3TvXFX071blj8HUhgLGquPjw== - dependencies: - "@jest/schemas" "^29.0.0" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jest/types@^29.5.0": - version "29.5.0" - resolved "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" - integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== +"@jest/types@^29.5.0", "@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== dependencies: - "@jest/schemas" "^29.4.3" + "@jest/schemas" "^29.6.3" "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^3.0.0" "@types/node" "*" "@types/yargs" "^17.0.8" chalk "^4.0.0" -"@jridgewell/gen-mapping@^0.1.0": - version "0.1.1" - resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" - integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== - dependencies: - "@jridgewell/set-array" "^1.0.0" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/gen-mapping@^0.3.0": +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": version "0.3.3" resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== @@ -2064,45 +1948,28 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/gen-mapping@^0.3.2": - version "0.3.2" - resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" - integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.1" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== -"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": +"@jridgewell/set-array@^1.0.1": version "1.1.2" resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.14" - resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.17" - resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" - integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.17": - version "0.3.18" - resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.22" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz#72a621e5de59f5f1ef792d0793a82ee20f645e4c" + integrity sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw== dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" "@keplr-wallet/common@0.12.28": version "0.12.28" @@ -2880,6 +2747,11 @@ dependencies: eslint-scope "5.1.1" +"@noble/hashes@^1.2.0": + version "1.3.3" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.3.tgz#39908da56a4adc270147bb07968bf3b16cfe1699" + integrity sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -3085,71 +2957,66 @@ "@babel/preset-react" "7.18.6" "@rushstack/eslint-patch@^1.1.0": - version "1.2.0" - resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" - integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== - -"@sinclair/typebox@^0.24.1": - version "0.24.51" - resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" - integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== + version "1.7.2" + resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz#2d4260033e199b3032a08b41348ac10de21c47e9" + integrity sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA== -"@sinclair/typebox@^0.25.16": - version "0.25.24" - resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" - integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== -"@sinonjs/commons@^2.0.0": - version "2.0.0" - resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz#fd4ca5b063554307e8327b4564bd56d3b73924a3" - integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg== +"@sinonjs/commons@^3.0.0": + version "3.0.1" + resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" + integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== dependencies: type-detect "4.0.8" "@sinonjs/fake-timers@^10.0.2": - version "10.0.2" - resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz#d10549ed1f423d80639c528b6c7f5a1017747d0c" - integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw== + version "10.3.0" + resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== dependencies: - "@sinonjs/commons" "^2.0.0" + "@sinonjs/commons" "^3.0.0" "@types/babel__core@^7.1.14": - version "7.1.19" - resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460" - integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== + version "7.20.5" + resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" "@types/babel__generator" "*" "@types/babel__template" "*" "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.6.4" - resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + version "7.6.8" + resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": - version "7.4.1" - resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + version "7.4.4" + resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.18.2" - resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.2.tgz#235bf339d17185bdec25e024ca19cce257cc7309" - integrity sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg== + version "7.20.5" + resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz#7b7502be0aa80cc4ef22978846b983edaafcd4dd" + integrity sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ== dependencies: - "@babel/types" "^7.3.0" + "@babel/types" "^7.20.7" -"@types/cookiejar@*": - version "2.1.2" - resolved "https://registry.npmmirror.com/@types/cookiejar/-/cookiejar-2.1.2.tgz#66ad9331f63fe8a3d3d9d8c6e3906dd10f6446e8" - integrity sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog== +"@types/cookiejar@^2.1.5": + version "2.1.5" + resolved "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.5.tgz#14a3e83fa641beb169a2dd8422d91c3c345a9a78" + integrity sha512-he+DHOWReW0nghN24E1WUqM0efK4kI9oTqDm6XmK8ZPe2djZ90BSNdGnIyCLzCPw7/pogPlGbzI2wHGGmi4O/Q== "@types/glob@^7.1.1": version "7.2.0" @@ -3160,43 +3027,43 @@ "@types/node" "*" "@types/graceful-fs@^4.1.3": - version "4.1.5" - resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" - integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== + version "4.1.9" + resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== dependencies: "@types/node" "*" "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + version "2.0.6" + resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== "@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + version "3.0.3" + resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + version "3.0.4" + resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== dependencies: "@types/istanbul-lib-report" "*" "@types/jest@^29.5.1": - version "29.5.1" - resolved "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz#83c818aa9a87da27d6da85d3378e5a34d2f31a47" - integrity sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ== + version "29.5.11" + resolved "https://registry.npmjs.org/@types/jest/-/jest-29.5.11.tgz#0c13aa0da7d0929f078ab080ae5d4ced80fa2f2c" + integrity sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ== dependencies: expect "^29.0.0" pretty-format "^29.0.0" "@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + version "7.0.15" + resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/json5@^0.0.29": version "0.0.29" @@ -3208,87 +3075,85 @@ resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== +"@types/methods@^1.1.4": + version "1.1.4" + resolved "https://registry.npmjs.org/@types/methods/-/methods-1.1.4.tgz#d3b7ac30ac47c91054ea951ce9eed07b1051e547" + integrity sha512-ymXWVrDiCxTBE3+RIrrP533E70eA+9qu7zdWoHuOmGujkYtzf4HQF96b8nwHLqhuf4ykX61IGRIB38CC6/sImQ== + "@types/minimatch@*": version "5.1.2" resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== "@types/minimist@^1.2.0": - version "1.2.2" - resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" - integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== + version "1.2.5" + resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" + integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== "@types/node@*", "@types/node@>= 8", "@types/node@>=13.7.0": - version "18.11.9" - resolved "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4" - integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg== + version "20.11.10" + resolved "https://registry.npmjs.org/@types/node/-/node-20.11.10.tgz#6c3de8974d65c362f82ee29db6b5adf4205462f9" + integrity sha512-rZEfe/hJSGYmdfX9tvcPMYeYPW2sNl50nsw4jZmRcaG0HIAb0WYEpsB05GOb53vjqpyE9GUhlDQ4jLSoB5q9kg== + dependencies: + undici-types "~5.26.4" "@types/node@10.12.18": version "10.12.18" resolved "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" integrity sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ== -"@types/node@11.11.6": - version "11.11.6" - resolved "https://registry.npmjs.org/@types/node/-/node-11.11.6.tgz#df929d1bb2eee5afdda598a41930fe50b43eaa6a" - integrity sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ== - "@types/normalize-package-data@^2.4.0": - version "2.4.1" - resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" - integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== + version "2.4.4" + resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== "@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/prettier@^2.1.5": - version "2.7.1" - resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.1.tgz#dfd20e2dc35f027cdd6c1908e80a5ddc7499670e" - integrity sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow== + version "4.0.2" + resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== "@types/semver@^7.3.12": - version "7.3.13" - resolved "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" - integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== + version "7.5.6" + resolved "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz#c65b2bfce1bec346582c07724e3f8c1017a20339" + integrity sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A== "@types/sha.js@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@types/sha.js/-/sha.js-2.4.0.tgz#bce682ef860b40f419d024fa08600c3b8d24bb01" - integrity sha512-amxKgPy6WJTKuw8mpUwjX2BSxuBtBmZfRwIUDIuPJKNwGN8CWDli8JTg5ONTWOtcTkHIstvT7oAhhYXqEjStHQ== + version "2.4.4" + resolved "https://registry.npmjs.org/@types/sha.js/-/sha.js-2.4.4.tgz#36be3d0bbc02f790617181709831fd4fc4be942d" + integrity sha512-Qukd+D6S2Hm0wLVt2Vh+/eWBIoUt+wF8jWjBsG4F8EFQRwKtYvtXCPcNl2OEUQ1R+eTr3xuSaBYUyM3WD1x/Qw== dependencies: "@types/node" "*" "@types/stack-utils@^2.0.0": - version "2.0.1" - resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" - integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== + version "2.0.3" + resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" + integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== "@types/superagent@*": - version "4.1.18" - resolved "https://registry.npmmirror.com/@types/superagent/-/superagent-4.1.18.tgz#e8f037d015cb3b55e64dd00c4d07a84be6d16d34" - integrity sha512-LOWgpacIV8GHhrsQU+QMZuomfqXiqzz3ILLkCtKx3Us6AmomFViuzKT9D693QTKgyut2oCytMG8/efOop+DB+w== + version "8.1.3" + resolved "https://registry.npmjs.org/@types/superagent/-/superagent-8.1.3.tgz#6222a466e89eac9c84ad8de11870d92097e6554a" + integrity sha512-R/CfN6w2XsixLb1Ii8INfn+BT9sGPvw74OavfkW4SwY+jeUcAwLZv2+bXLJkndnimxjEBm0RPHgcjW9pLCa8cw== dependencies: - "@types/cookiejar" "*" + "@types/cookiejar" "^2.1.5" + "@types/methods" "^1.1.4" "@types/node" "*" "@types/supertest@2.0.12": version "2.0.12" - resolved "https://registry.npmmirror.com/@types/supertest/-/supertest-2.0.12.tgz#ddb4a0568597c9aadff8dbec5b2e8fddbe8692fc" + resolved "https://registry.npmjs.org/@types/supertest/-/supertest-2.0.12.tgz#ddb4a0568597c9aadff8dbec5b2e8fddbe8692fc" integrity sha512-X3HPWTwXRerBZS7Mo1k6vMVR1Z6zmJcDVn5O/31whe0tnjE4te6ZJSJGq1RiqHPjzPdMTfjCFogDJmwng9xHaQ== dependencies: "@types/superagent" "*" "@types/yargs-parser@*": - version "21.0.0" - resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + version "21.0.3" + resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== "@types/yargs@^17.0.8": - version "17.0.13" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.13.tgz#34cced675ca1b1d51fcf4d34c3c6f0fa142a5c76" - integrity sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg== + version "17.0.32" + resolved "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" + integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== dependencies: "@types/yargs-parser" "*" @@ -3309,26 +3174,27 @@ tsutils "^3.21.0" "@typescript-eslint/eslint-plugin@^5.5.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.42.0.tgz#36a8c0c379870127059889a9cc7e05c260d2aaa5" - integrity sha512-5TJh2AgL6+wpL8H/GTSjNb4WrjKoR2rqvFxR/DDTqYNk6uXn8BJMEcncLSpMbf/XV1aS0jAjYwn98uvVCiAywQ== + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" + integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== dependencies: - "@typescript-eslint/scope-manager" "5.42.0" - "@typescript-eslint/type-utils" "5.42.0" - "@typescript-eslint/utils" "5.42.0" + "@eslint-community/regexpp" "^4.4.0" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/type-utils" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" + graphemer "^1.4.0" ignore "^5.2.0" natural-compare-lite "^1.4.0" - regexpp "^3.2.0" semver "^7.3.7" tsutils "^3.21.0" "@typescript-eslint/experimental-utils@^5.0.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.42.0.tgz#a2b6b24c75bf41ce22501f8669082efdac689909" - integrity sha512-B51HySW9wWIwLantEMqJi0FXVp1IMKRAyNASrYhJV3/nl4r6aEz6FJTJtscgu7YrGWigs7OypQExmcVqGQoDFQ== + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz#14559bf73383a308026b427a4a6129bae2146741" + integrity sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw== dependencies: - "@typescript-eslint/utils" "5.42.0" + "@typescript-eslint/utils" "5.62.0" "@typescript-eslint/parser@5.59.0": version "5.59.0" @@ -3341,23 +3207,15 @@ debug "^4.3.4" "@typescript-eslint/parser@^5.5.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.42.0.tgz#be0ffbe279e1320e3d15e2ef0ad19262f59e9240" - integrity sha512-Ixh9qrOTDRctFg3yIwrLkgf33AHyEIn6lhyf5cCfwwiGtkWhNpVKlEZApi3inGQR/barWnY7qY8FbGKBO7p3JA== + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== dependencies: - "@typescript-eslint/scope-manager" "5.42.0" - "@typescript-eslint/types" "5.42.0" - "@typescript-eslint/typescript-estree" "5.42.0" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" debug "^4.3.4" -"@typescript-eslint/scope-manager@5.42.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.42.0.tgz#e1f2bb26d3b2a508421ee2e3ceea5396b192f5ef" - integrity sha512-l5/3IBHLH0Bv04y+H+zlcLiEMEMjWGaCX6WyHE5Uk2YkSGAMlgdUPsT/ywTSKgu9D1dmmKMYgYZijObfA39Wow== - dependencies: - "@typescript-eslint/types" "5.42.0" - "@typescript-eslint/visitor-keys" "5.42.0" - "@typescript-eslint/scope-manager@5.59.0": version "5.59.0" resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.0.tgz#86501d7a17885710b6716a23be2e93fc54a4fe8c" @@ -3366,15 +3224,13 @@ "@typescript-eslint/types" "5.59.0" "@typescript-eslint/visitor-keys" "5.59.0" -"@typescript-eslint/type-utils@5.42.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.42.0.tgz#4206d7192d4fe903ddf99d09b41d4ac31b0b7dca" - integrity sha512-HW14TXC45dFVZxnVW8rnUGnvYyRC0E/vxXShFCthcC9VhVTmjqOmtqj6H5rm9Zxv+ORxKA/1aLGD7vmlLsdlOg== +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== dependencies: - "@typescript-eslint/typescript-estree" "5.42.0" - "@typescript-eslint/utils" "5.42.0" - debug "^4.3.4" - tsutils "^3.21.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" "@typescript-eslint/type-utils@5.59.0": version "5.59.0" @@ -3386,28 +3242,25 @@ debug "^4.3.4" tsutils "^3.21.0" -"@typescript-eslint/types@5.42.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.42.0.tgz#5aeff9b5eced48f27d5b8139339bf1ef805bad7a" - integrity sha512-t4lzO9ZOAUcHY6bXQYRuu+3SSYdD9TS8ooApZft4WARt4/f2Cj/YpvbTe8A4GuhT4bNW72goDMOy7SW71mZwGw== +"@typescript-eslint/type-utils@5.62.0": + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" + integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== + dependencies: + "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/utils" "5.62.0" + debug "^4.3.4" + tsutils "^3.21.0" "@typescript-eslint/types@5.59.0": version "5.59.0" resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.0.tgz#3fcdac7dbf923ec5251545acdd9f1d42d7c4fe32" integrity sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA== -"@typescript-eslint/typescript-estree@5.42.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.42.0.tgz#2592d24bb5f89bf54a63384ff3494870f95b3fd8" - integrity sha512-2O3vSq794x3kZGtV7i4SCWZWCwjEtkWfVqX4m5fbUBomOsEOyd6OAD1qU2lbvV5S8tgy/luJnOYluNyYVeOTTg== - dependencies: - "@typescript-eslint/types" "5.42.0" - "@typescript-eslint/visitor-keys" "5.42.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== "@typescript-eslint/typescript-estree@5.59.0": version "5.59.0" @@ -3422,19 +3275,18 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.42.0", "@typescript-eslint/utils@^5.13.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.42.0.tgz#f06bd43b9a9a06ed8f29600273240e84a53f2f15" - integrity sha512-JZ++3+h1vbeG1NUECXQZE3hg0kias9kOtcQr3+JVQ3whnjvKuMyktJAAIj6743OeNPnGBmjj7KEmiDL7qsdnCQ== +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== dependencies: - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.42.0" - "@typescript-eslint/types" "5.42.0" - "@typescript-eslint/typescript-estree" "5.42.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" semver "^7.3.7" + tsutils "^3.21.0" "@typescript-eslint/utils@5.59.0": version "5.59.0" @@ -3450,13 +3302,19 @@ eslint-scope "^5.1.1" semver "^7.3.7" -"@typescript-eslint/visitor-keys@5.42.0": - version "5.42.0" - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.42.0.tgz#ee8d62d486f41cfe646632fab790fbf0c1db5bb0" - integrity sha512-QHbu5Hf/2lOEOwy+IUw0GoSCuAzByTAWWrOTKzTzsotiUnWFpuKnXcAhC9YztAf2EElQ0VvIK+pHJUPkM0q7jg== +"@typescript-eslint/utils@5.62.0", "@typescript-eslint/utils@^5.58.0": + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" + integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== dependencies: - "@typescript-eslint/types" "5.42.0" - eslint-visitor-keys "^3.3.0" + "@eslint-community/eslint-utils" "^4.2.0" + "@types/json-schema" "^7.0.9" + "@types/semver" "^7.3.12" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + eslint-scope "^5.1.1" + semver "^7.3.7" "@typescript-eslint/visitor-keys@5.59.0": version "5.59.0" @@ -3466,6 +3324,19 @@ "@typescript-eslint/types" "5.59.0" eslint-visitor-keys "^3.3.0" +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + +"@ungap/structured-clone@^1.2.0": + version "1.2.0" + resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + "@zkochan/cmd-shim@^3.1.0": version "3.1.0" resolved "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-3.1.0.tgz#2ab8ed81f5bb5452a85f25758eb9b8681982fd2e" @@ -3493,10 +3364,10 @@ acorn-jsx@^5.3.2: resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn@^8.8.0: - version "8.8.1" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" - integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== +acorn@^8.9.0: + version "8.11.3" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== agent-base@4, agent-base@^4.3.0: version "4.3.0" @@ -3586,9 +3457,9 @@ any-promise@^1.0.0: integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== anymatch@^3.0.3, anymatch@~3.1.2: - version "3.1.2" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + version "3.1.3" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" @@ -3623,13 +3494,12 @@ argparse@^2.0.1: resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-query@^4.2.2: - version "4.2.2" - resolved "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" - integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== +aria-query@^5.3.0: + version "5.3.0" + resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== dependencies: - "@babel/runtime" "^7.10.2" - "@babel/runtime-corejs3" "^7.10.2" + dequal "^2.0.3" arr-diff@^4.0.0: version "4.0.0" @@ -3669,26 +3539,15 @@ array-ify@^1.0.0: resolved "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== -array-includes@^3.1.4, array-includes@^3.1.5: - version "3.1.5" - resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" - integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - get-intrinsic "^1.1.1" - is-string "^1.0.7" - -array-includes@^3.1.6: - version "3.1.6" - resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" - integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== +array-includes@^3.1.6, array-includes@^3.1.7: + version "3.1.7" + resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz#8cd2e01b26f7a3086cbc87271593fe921c62abda" + integrity sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - get-intrinsic "^1.1.3" + define-properties "^1.2.0" + es-abstract "^1.22.1" + get-intrinsic "^1.2.1" is-string "^1.0.7" array-union@^1.0.2: @@ -3713,57 +3572,71 @@ array-unique@^0.3.2: resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== -array.prototype.flat@^1.2.5: - version "1.3.0" - resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" - integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== +array.prototype.findlastindex@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz#b37598438f97b579166940814e2c0493a4f50207" + integrity sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" es-shim-unscopables "^1.0.0" + get-intrinsic "^1.2.1" -array.prototype.flatmap@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" - integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== +array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: + version "1.3.2" + resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" + integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" es-shim-unscopables "^1.0.0" -array.prototype.flatmap@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" - integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== +array.prototype.flatmap@^1.3.1, array.prototype.flatmap@^1.3.2: + version "1.3.2" + resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" + integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" es-shim-unscopables "^1.0.0" -array.prototype.reduce@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz#8167e80089f78bff70a99e20bd4201d4663b0a6f" - integrity sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw== +array.prototype.reduce@^1.0.6: + version "1.0.6" + resolved "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz#63149931808c5fc1e1354814923d92d45f7d96d5" + integrity sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" es-array-method-boxes-properly "^1.0.0" is-string "^1.0.7" array.prototype.tosorted@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" - integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== + version "1.1.2" + resolved "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz#620eff7442503d66c799d95503f82b475745cefd" + integrity sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" es-shim-unscopables "^1.0.0" - get-intrinsic "^1.1.3" + get-intrinsic "^1.2.1" + +arraybuffer.prototype.slice@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz#98bd561953e3e74bb34938e77647179dfe6e9f12" + integrity sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + get-intrinsic "^1.2.1" + is-array-buffer "^3.0.2" + is-shared-array-buffer "^1.0.2" arrify@^1.0.1: version "1.0.1" @@ -3792,10 +3665,17 @@ assign-symbols@^1.0.0: resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== -ast-types-flow@^0.0.7: - version "0.0.7" - resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" - integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== +ast-types-flow@^0.0.8: + version "0.0.8" + resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6" + integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ== + +asynciterator.prototype@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62" + integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== + dependencies: + has-symbols "^1.0.3" asynckit@^0.4.0: version "0.4.0" @@ -3823,19 +3703,21 @@ aws-sign2@~0.7.0: integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== aws4@^1.8.0: - version "1.11.0" - resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== + version "1.12.0" + resolved "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" + integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== -axe-core@^4.4.3: - version "4.5.1" - resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.5.1.tgz#04d561c11b6d76d096d34e9d14ba2c294fb20cdc" - integrity sha512-1exVbW0X1O/HSr/WMwnaweyqcWOgZgLiVxdLG34pvSQk4NlYQr9OUy0JLwuhFfuVNQzzqgH57eYzkFBCb3bIsQ== +axe-core@=4.7.0: + version "4.7.0" + resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz#34ba5a48a8b564f67e103f0aa5768d76e15bbbbf" + integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ== -axobject-query@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" - integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== +axobject-query@^3.2.1: + version "3.2.1" + resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== + dependencies: + dequal "^2.0.3" babel-core@7.0.0-bridge.0: version "7.0.0-bridge.0" @@ -3854,7 +3736,7 @@ babel-eslint@10.1.0: eslint-visitor-keys "^1.0.0" resolve "^1.12.0" -babel-jest@29.5.0, babel-jest@^29.5.0: +babel-jest@29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== @@ -3867,6 +3749,19 @@ babel-jest@29.5.0, babel-jest@^29.5.0: graceful-fs "^4.2.9" slash "^3.0.0" +babel-jest@^29.5.0, babel-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" + integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== + dependencies: + "@jest/transform" "^29.7.0" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^29.6.3" + chalk "^4.0.0" + graceful-fs "^4.2.9" + slash "^3.0.0" + babel-plugin-istanbul@^6.1.1: version "6.1.1" resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" @@ -3878,10 +3773,10 @@ babel-plugin-istanbul@^6.1.1: istanbul-lib-instrument "^5.0.4" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a" - integrity sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w== +babel-plugin-jest-hoist@^29.6.3: + version "29.6.3" + resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" + integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== dependencies: "@babel/template" "^7.3.3" "@babel/types" "^7.3.3" @@ -3906,6 +3801,15 @@ babel-plugin-polyfill-corejs2@^0.3.3: "@babel/helper-define-polyfill-provider" "^0.3.3" semver "^6.1.1" +babel-plugin-polyfill-corejs2@^0.4.8: + version "0.4.8" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz#dbcc3c8ca758a290d47c3c6a490d59429b0d2269" + integrity sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.5.0" + semver "^6.3.1" + babel-plugin-polyfill-corejs3@^0.6.0: version "0.6.0" resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a" @@ -3914,6 +3818,14 @@ babel-plugin-polyfill-corejs3@^0.6.0: "@babel/helper-define-polyfill-provider" "^0.3.3" core-js-compat "^3.25.1" +babel-plugin-polyfill-corejs3@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz#9eea32349d94556c2ad3ab9b82ebb27d4bf04a81" + integrity sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.5.0" + core-js-compat "^3.34.0" + babel-plugin-polyfill-regenerator@^0.4.1: version "0.4.1" resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" @@ -3921,6 +3833,13 @@ babel-plugin-polyfill-regenerator@^0.4.1: dependencies: "@babel/helper-define-polyfill-provider" "^0.3.3" +babel-plugin-polyfill-regenerator@^0.5.5: + version "0.5.5" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz#8b0c8fc6434239e5d7b8a9d1f832bb2b0310f06a" + integrity sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.5.0" + babel-plugin-transform-react-remove-prop-types@^0.4.24: version "0.4.24" resolved "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" @@ -3944,12 +3863,12 @@ babel-preset-current-node-syntax@^1.0.0: "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-top-level-await" "^7.8.3" -babel-preset-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2" - integrity sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg== +babel-preset-jest@^29.5.0, babel-preset-jest@^29.6.3: + version "29.6.3" + resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" + integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== dependencies: - babel-plugin-jest-hoist "^29.5.0" + babel-plugin-jest-hoist "^29.6.3" babel-preset-current-node-syntax "^1.0.0" babel-preset-react-app@^10.0.1: @@ -3975,9 +3894,9 @@ babel-preset-react-app@^10.0.1: babel-plugin-transform-react-remove-prop-types "^0.4.24" babel-watch@^7.7.2: - version "7.7.2" - resolved "https://registry.npmjs.org/babel-watch/-/babel-watch-7.7.2.tgz#9e4ff39f03dc344b0b9b462ba899c91e95ff0e56" - integrity sha512-KjC/VHLzAeg9CCSzjGXJvI6hxrQFBMk8H3l78TgN7jgLDmK7jXt2HvyvDLfQCb+KNCvY/Cuv6ia0TtgcqtpcqQ== + version "7.8.1" + resolved "https://registry.npmjs.org/babel-watch/-/babel-watch-7.8.1.tgz#3be4016d61bfefae9522c116ef9ba209088e6498" + integrity sha512-TnAlLAaorqMruh3BaTiXbbuv/b8iHqqvlljaWkCCJQLRsVFn7nUKO+38+DGxEaFvlj/IgIlQlx+DMirxSHiC4g== dependencies: chalk "^4.1.0" chokidar "^3.4.3" @@ -3986,9 +3905,9 @@ babel-watch@^7.7.2: lodash.debounce "^4.0.8" lodash.isregexp "^4.0.1" lodash.isstring "^4.0.1" - signal-exit "^3.0.7" + signal-exit "^4.0.2" source-map-support "^0.5.19" - string-argv "^0.3.1" + string-argv "^0.3.2" balanced-match@^1.0.0: version "1.0.2" @@ -4043,13 +3962,13 @@ bfs-path@^1.0.2: integrity sha512-KTKx2JJtAAAT7C/rJYDXXWA2VLPycAS4kwFktKsxUo0hj4UTtw/Gm5PJuY7Uf3xSlIQNo7HRCSWei2ivncVwbQ== big-integer@^1.6.48: - version "1.6.51" - resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" - integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== + version "1.6.52" + resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" + integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== bignumber.js@9.1.1: version "9.1.1" - resolved "https://registry.npmmirror.com/bignumber.js/-/bignumber.js-9.1.1.tgz#c4df7dc496bd849d4c9464344c1aa74228b4dac6" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.1.tgz#c4df7dc496bd849d4c9464344c1aa74228b4dac6" integrity sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig== binary-extensions@^2.0.0: @@ -4078,14 +3997,11 @@ bip32@^2.0.6: wif "^2.0.6" bip39@^3.0.3: - version "3.0.4" - resolved "https://registry.npmjs.org/bip39/-/bip39-3.0.4.tgz#5b11fed966840b5e1b8539f0f54ab6392969b2a0" - integrity sha512-YZKQlb752TrUWqHWj7XAwCSjYEgGAk+/Aas3V7NyjQeZYsztO8JnQUaCWhcnL4T+jL8nvB8typ2jRPzTlgugNw== + version "3.1.0" + resolved "https://registry.npmjs.org/bip39/-/bip39-3.1.0.tgz#c55a418deaf48826a6ceb34ac55b3ee1577e18a3" + integrity sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A== dependencies: - "@types/node" "11.11.6" - create-hash "^1.1.0" - pbkdf2 "^3.0.9" - randombytes "^2.0.1" + "@noble/hashes" "^1.2.0" bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5: version "3.7.2" @@ -4145,15 +4061,15 @@ brorand@^1.1.0: resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== -browserslist@^4.21.3, browserslist@^4.21.4: - version "4.21.4" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" - integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== +browserslist@^4.22.2: + version "4.22.3" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz#299d11b7e947a6b843981392721169e27d60c5a6" + integrity sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A== dependencies: - caniuse-lite "^1.0.30001400" - electron-to-chromium "^1.4.251" - node-releases "^2.0.6" - update-browserslist-db "^1.0.9" + caniuse-lite "^1.0.30001580" + electron-to-chromium "^1.4.648" + node-releases "^2.0.14" + update-browserslist-db "^1.0.13" bs-logger@0.x: version "0.2.6" @@ -4254,13 +4170,14 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== +call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.4, call-bind@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz#6fa2b7845ce0ea49bf4d8b9ef64727a2c2e2e513" + integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ== dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" + function-bind "^1.1.2" + get-intrinsic "^1.2.1" + set-function-length "^1.1.1" call-me-maybe@^1.0.1: version "1.0.2" @@ -4337,17 +4254,17 @@ camelcase@^6.2.0: resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001400: - version "1.0.30001429" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001429.tgz#70cdae959096756a85713b36dd9cb82e62325639" - integrity sha512-511ThLu1hF+5RRRt0zYCf2U2yRr9GPF6m5y90SBCWsvSoYoW7yAGlv/elyPaNfvGCkp6kj/KFZWU0BMA69Prsg== +caniuse-lite@^1.0.30001580: + version "1.0.30001581" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001581.tgz#0dfd4db9e94edbdca67d57348ebc070dece279f4" + integrity sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ== caseless@~0.12.0: version "0.12.0" resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== -chalk@^2.0.0, chalk@^2.3.1, chalk@^2.4.2: +chalk@^2.3.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -4400,9 +4317,9 @@ ci-info@^2.0.0: integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== ci-info@^3.2.0: - version "3.5.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz#bfac2a29263de4c829d806b1ab478e35091e171f" - integrity sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw== + version "3.9.0" + resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== cipher-base@^1.0.1, cipher-base@^1.0.3: version "1.0.4" @@ -4413,9 +4330,9 @@ cipher-base@^1.0.1, cipher-base@^1.0.3: safe-buffer "^5.0.1" cjs-module-lexer@^1.0.0: - version "1.2.2" - resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" - integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== + version "1.2.3" + resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" + integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== class-utils@^0.3.5: version "0.3.6" @@ -4482,9 +4399,9 @@ code-point-at@^1.0.0: integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== + version "1.0.2" + resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== collection-visit@^1.0.0: version "1.0.0" @@ -4557,9 +4474,9 @@ compare-func@^2.0.0: dot-prop "^5.1.0" component-emitter@^1.2.1, component-emitter@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + version "1.3.1" + resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz#ef1d5796f7d93f135ee6fb684340b26403c97d17" + integrity sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ== concat-map@0.0.1: version "0.0.1" @@ -4686,7 +4603,7 @@ conventional-recommended-bump@^5.0.0: meow "^4.0.0" q "^1.5.1" -convert-source-map@^1.1.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: +convert-source-map@^1.1.0, convert-source-map@^1.7.0: version "1.9.0" resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== @@ -4698,7 +4615,7 @@ convert-source-map@^2.0.0: cookiejar@^2.1.4: version "2.1.4" - resolved "https://registry.npmmirror.com/cookiejar/-/cookiejar-2.1.4.tgz#ee669c1fea2cf42dc31585469d193fef0d65771b" + resolved "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz#ee669c1fea2cf42dc31585469d193fef0d65771b" integrity sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw== copy-concurrently@^1.0.0: @@ -4718,22 +4635,17 @@ copy-descriptor@^0.1.0: resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== -core-js-compat@^3.25.1: - version "3.26.0" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz#94e2cf8ba3e63800c4956ea298a6473bc9d62b44" - integrity sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A== +core-js-compat@^3.25.1, core-js-compat@^3.31.0, core-js-compat@^3.34.0: + version "3.35.1" + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz#215247d7edb9e830efa4218ff719beb2803555e2" + integrity sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw== dependencies: - browserslist "^4.21.4" + browserslist "^4.22.2" -core-js-pure@^3.25.1: - version "3.26.0" - resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz#7ad8a5dd7d910756f3124374b50026e23265ca9a" - integrity sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA== - -core-js@^3.26.0: - version "3.30.1" - resolved "https://registry.npmjs.org/core-js/-/core-js-3.30.1.tgz#fc9c5adcc541d8e9fa3e381179433cbf795628ba" - integrity sha512-ZNS5nbiSwDTq4hFosEDqm65izl2CWmLz0hARJMyNQBgkUZMIF51cQiMvIQKA6hvuaeWxQDP3hEedM1JZIgTldQ== +core-js@^3.30.2: + version "3.35.1" + resolved "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz#9c28f8b7ccee482796f8590cc8d15739eaaf980c" + integrity sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw== core-util-is@1.0.2: version "1.0.2" @@ -4756,9 +4668,9 @@ cosmiconfig@^5.1.0: parse-json "^4.0.0" cosmiconfig@^7.0.0: - version "7.0.1" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" - integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== + version "7.1.0" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== dependencies: "@types/parse-json" "^4.0.0" import-fresh "^3.2.1" @@ -4766,7 +4678,7 @@ cosmiconfig@^7.0.0: path-type "^4.0.0" yaml "^1.10.0" -create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: +create-hash@^1.1.0, create-hash@^1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== @@ -4777,7 +4689,7 @@ create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: ripemd160 "^2.0.1" sha.js "^2.4.0" -create-hmac@^1.1.4, create-hmac@^1.1.7: +create-hmac@^1.1.7: version "1.1.7" resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== @@ -4789,6 +4701,19 @@ create-hmac@^1.1.4, create-hmac@^1.1.7: safe-buffer "^5.0.1" sha.js "^2.4.8" +create-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" + integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== + dependencies: + "@jest/types" "^29.6.3" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-config "^29.7.0" + jest-util "^29.7.0" + prompts "^2.0.1" + cross-env@^7.0.2: version "7.0.3" resolved "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf" @@ -4797,11 +4722,11 @@ cross-env@^7.0.2: cross-spawn "^7.0.1" cross-fetch@^3.1.5: - version "3.1.5" - resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" - integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + version "3.1.8" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" + integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== dependencies: - node-fetch "2.6.7" + node-fetch "^2.6.12" cross-spawn@^6.0.0: version "6.0.5" @@ -4824,9 +4749,9 @@ cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: which "^2.0.1" crypto-js@^4.0.0: - version "4.1.1" - resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" - integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + version "4.2.0" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz#4d931639ecdfd12ff80e8186dba6af2c2e856631" + integrity sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q== currently-unhandled@^0.4.1: version "0.4.1" @@ -4836,9 +4761,9 @@ currently-unhandled@^0.4.1: array-find-index "^1.0.1" cyclist@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" - integrity sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A== + version "1.0.2" + resolved "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz#673b5f233bf34d8e602b949429f8171d9121bea3" + integrity sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA== damerau-levenshtein@^1.0.8: version "1.0.8" @@ -4871,7 +4796,7 @@ debug@3.1.0: dependencies: ms "2.0.0" -debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: +debug@^2.2.0, debug@^2.3.3: version "2.6.9" resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -4911,24 +4836,29 @@ decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== + version "0.2.2" + resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== dedent@^0.7.0: version "0.7.0" resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== +dedent@^1.0.0: + version "1.5.1" + resolved "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz#4f3fc94c8b711e9bb2800d185cd6ad20f2a90aff" + integrity sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg== + deep-is@^0.1.3: version "0.1.4" resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + version "4.3.1" + resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== defaults@^1.0.3: version "1.0.4" @@ -4937,11 +4867,21 @@ defaults@^1.0.3: dependencies: clone "^1.0.2" -define-properties@^1.1.3, define-properties@^1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" - integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== +define-data-property@^1.0.1, define-data-property@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3" + integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== + dependencies: + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" + +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== dependencies: + define-data-property "^1.0.1" has-property-descriptors "^1.0.0" object-keys "^1.1.1" @@ -4987,6 +4927,11 @@ deprecation@^2.0.0, deprecation@^2.3.1: resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== +dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + detect-indent@^5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" @@ -5005,15 +4950,10 @@ dezalgo@^1.0.0, dezalgo@^1.0.4: asap "^2.0.0" wrappy "1" -diff-sequences@^29.2.0: - version "29.2.0" - resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.2.0.tgz#4c55b5b40706c7b5d2c5c75999a50c56d214e8f6" - integrity sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw== - -diff-sequences@^29.4.3: - version "29.4.3" - resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" - integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== +diff-sequences@^29.6.3: + version "29.6.3" + resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== dir-glob@^2.2.2: version "2.2.2" @@ -5080,10 +5020,10 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -electron-to-chromium@^1.4.251: - version "1.4.284" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" - integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== +electron-to-chromium@^1.4.648: + version "1.4.648" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.648.tgz#c7b46c9010752c37bb4322739d6d2dd82354fbe4" + integrity sha512-EmFMarXeqJp9cUKu/QEciEApn0S/xRcpZWuAm32U7NgoZCimjsilKXHRO9saeEW55eHZagIDg6XTUOv32w9pjg== elliptic@^6.4.0, elliptic@^6.5.3: version "6.5.4" @@ -5138,9 +5078,9 @@ env-paths@^2.2.0: integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== envinfo@^7.3.1: - version "7.8.1" - resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" - integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== + version "7.11.0" + resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.11.0.tgz#c3793f44284a55ff8c82faf1ffd91bc6478ea01f" + integrity sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg== err-code@^1.0.0: version "1.1.2" @@ -5154,55 +5094,26 @@ error-ex@^1.2.0, error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5, es-abstract@^1.20.1: - version "1.20.4" - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" - integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== - dependencies: - call-bind "^1.0.2" - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.1.3" - get-symbol-description "^1.0.0" - has "^1.0.3" - has-property-descriptors "^1.0.0" - has-symbols "^1.0.3" - internal-slot "^1.0.3" - is-callable "^1.2.7" - is-negative-zero "^2.0.2" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - is-string "^1.0.7" - is-weakref "^1.0.2" - object-inspect "^1.12.2" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" - safe-regex-test "^1.0.0" - string.prototype.trimend "^1.0.5" - string.prototype.trimstart "^1.0.5" - unbox-primitive "^1.0.2" - -es-abstract@^1.20.4: - version "1.21.2" - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" - integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== +es-abstract@^1.22.1: + version "1.22.3" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz#48e79f5573198de6dee3589195727f4f74bc4f32" + integrity sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA== dependencies: array-buffer-byte-length "^1.0.0" + arraybuffer.prototype.slice "^1.0.2" available-typed-arrays "^1.0.5" - call-bind "^1.0.2" + call-bind "^1.0.5" es-set-tostringtag "^2.0.1" es-to-primitive "^1.2.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.2.0" + function.prototype.name "^1.1.6" + get-intrinsic "^1.2.2" get-symbol-description "^1.0.0" globalthis "^1.0.3" gopd "^1.0.1" - has "^1.0.3" has-property-descriptors "^1.0.0" has-proto "^1.0.1" has-symbols "^1.0.3" + hasown "^2.0.0" internal-slot "^1.0.5" is-array-buffer "^3.0.2" is-callable "^1.2.7" @@ -5210,40 +5121,64 @@ es-abstract@^1.20.4: is-regex "^1.1.4" is-shared-array-buffer "^1.0.2" is-string "^1.0.7" - is-typed-array "^1.1.10" + is-typed-array "^1.1.12" is-weakref "^1.0.2" - object-inspect "^1.12.3" + object-inspect "^1.13.1" object-keys "^1.1.1" object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" + regexp.prototype.flags "^1.5.1" + safe-array-concat "^1.0.1" safe-regex-test "^1.0.0" - string.prototype.trim "^1.2.7" - string.prototype.trimend "^1.0.6" - string.prototype.trimstart "^1.0.6" + string.prototype.trim "^1.2.8" + string.prototype.trimend "^1.0.7" + string.prototype.trimstart "^1.0.7" + typed-array-buffer "^1.0.0" + typed-array-byte-length "^1.0.0" + typed-array-byte-offset "^1.0.0" typed-array-length "^1.0.4" unbox-primitive "^1.0.2" - which-typed-array "^1.1.9" + which-typed-array "^1.1.13" es-array-method-boxes-properly@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== +es-iterator-helpers@^1.0.12, es-iterator-helpers@^1.0.15: + version "1.0.15" + resolved "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz#bd81d275ac766431d19305923707c3efd9f1ae40" + integrity sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g== + dependencies: + asynciterator.prototype "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.1" + es-abstract "^1.22.1" + es-set-tostringtag "^2.0.1" + function-bind "^1.1.1" + get-intrinsic "^1.2.1" + globalthis "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.5" + iterator.prototype "^1.1.2" + safe-array-concat "^1.0.1" + es-set-tostringtag@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" - integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + version "2.0.2" + resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz#11f7cc9f63376930a5f20be4915834f4bc74f9c9" + integrity sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q== dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" + get-intrinsic "^1.2.2" has-tostringtag "^1.0.0" + hasown "^2.0.0" es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + version "1.0.2" + resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== dependencies: - has "^1.0.3" + hasown "^2.0.0" es-to-primitive@^1.2.1: version "1.2.1" @@ -5287,9 +5222,9 @@ escape-string-regexp@^4.0.0: integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== eslint-config-prettier@^8.8.0: - version "8.8.0" - resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348" - integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA== + version "8.10.0" + resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11" + integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg== eslint-config-react-app@7.0.1: version "7.0.1" @@ -5311,18 +5246,19 @@ eslint-config-react-app@7.0.1: eslint-plugin-react-hooks "^4.3.0" eslint-plugin-testing-library "^5.0.1" -eslint-import-resolver-node@^0.3.6: - version "0.3.6" - resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" - integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== +eslint-import-resolver-node@^0.3.9: + version "0.3.9" + resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== dependencies: debug "^3.2.7" - resolve "^1.20.0" + is-core-module "^2.13.0" + resolve "^1.22.4" -eslint-module-utils@^2.7.3: - version "2.7.4" - resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" - integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== +eslint-module-utils@^2.8.0: + version "2.8.0" + resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" + integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== dependencies: debug "^3.2.7" @@ -5335,23 +5271,27 @@ eslint-plugin-flowtype@^8.0.3: string-natural-compare "^3.0.1" eslint-plugin-import@^2.25.3: - version "2.26.0" - resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" - integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== - dependencies: - array-includes "^3.1.4" - array.prototype.flat "^1.2.5" - debug "^2.6.9" + version "2.29.1" + resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643" + integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== + dependencies: + array-includes "^3.1.7" + array.prototype.findlastindex "^1.2.3" + array.prototype.flat "^1.3.2" + array.prototype.flatmap "^1.3.2" + debug "^3.2.7" doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.6" - eslint-module-utils "^2.7.3" - has "^1.0.3" - is-core-module "^2.8.1" + eslint-import-resolver-node "^0.3.9" + eslint-module-utils "^2.8.0" + hasown "^2.0.0" + is-core-module "^2.13.1" is-glob "^4.0.3" minimatch "^3.1.2" - object.values "^1.1.5" - resolve "^1.22.0" - tsconfig-paths "^3.14.1" + object.fromentries "^2.0.7" + object.groupby "^1.0.1" + object.values "^1.1.7" + semver "^6.3.1" + tsconfig-paths "^3.15.0" eslint-plugin-jest@^25.3.0: version "25.7.0" @@ -5361,23 +5301,26 @@ eslint-plugin-jest@^25.3.0: "@typescript-eslint/experimental-utils" "^5.0.0" eslint-plugin-jsx-a11y@^6.5.1: - version "6.6.1" - resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff" - integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q== - dependencies: - "@babel/runtime" "^7.18.9" - aria-query "^4.2.2" - array-includes "^3.1.5" - ast-types-flow "^0.0.7" - axe-core "^4.4.3" - axobject-query "^2.2.0" + version "6.8.0" + resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz#2fa9c701d44fcd722b7c771ec322432857fcbad2" + integrity sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA== + dependencies: + "@babel/runtime" "^7.23.2" + aria-query "^5.3.0" + array-includes "^3.1.7" + array.prototype.flatmap "^1.3.2" + ast-types-flow "^0.0.8" + axe-core "=4.7.0" + axobject-query "^3.2.1" damerau-levenshtein "^1.0.8" emoji-regex "^9.2.2" - has "^1.0.3" - jsx-ast-utils "^3.3.2" - language-tags "^1.0.5" + es-iterator-helpers "^1.0.15" + hasown "^2.0.0" + jsx-ast-utils "^3.3.5" + language-tags "^1.0.9" minimatch "^3.1.2" - semver "^6.3.0" + object.entries "^1.1.7" + object.fromentries "^2.0.7" eslint-plugin-prettier@^4.0.0, eslint-plugin-prettier@^4.2.1: version "4.2.1" @@ -5391,35 +5334,16 @@ eslint-plugin-react-hooks@4.6.0, eslint-plugin-react-hooks@^4.3.0: resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== -eslint-plugin-react@^7.27.1: - version "7.31.10" - resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz#6782c2c7fe91c09e715d536067644bbb9491419a" - integrity sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA== - dependencies: - array-includes "^3.1.5" - array.prototype.flatmap "^1.3.0" - doctrine "^2.1.0" - estraverse "^5.3.0" - jsx-ast-utils "^2.4.1 || ^3.0.0" - minimatch "^3.1.2" - object.entries "^1.1.5" - object.fromentries "^2.0.5" - object.hasown "^1.1.1" - object.values "^1.1.5" - prop-types "^15.8.1" - resolve "^2.0.0-next.3" - semver "^6.3.0" - string.prototype.matchall "^4.0.7" - -eslint-plugin-react@^7.32.2: - version "7.32.2" - resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" - integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== +eslint-plugin-react@^7.27.1, eslint-plugin-react@^7.32.2: + version "7.33.2" + resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz#69ee09443ffc583927eafe86ffebb470ee737608" + integrity sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== dependencies: array-includes "^3.1.6" array.prototype.flatmap "^1.3.1" array.prototype.tosorted "^1.1.1" doctrine "^2.1.0" + es-iterator-helpers "^1.0.12" estraverse "^5.3.0" jsx-ast-utils "^2.4.1 || ^3.0.0" minimatch "^3.1.2" @@ -5429,7 +5353,7 @@ eslint-plugin-react@^7.32.2: object.values "^1.1.6" prop-types "^15.8.1" resolve "^2.0.0-next.4" - semver "^6.3.0" + semver "^6.3.1" string.prototype.matchall "^4.0.8" eslint-plugin-simple-import-sort@8.0.0: @@ -5438,11 +5362,11 @@ eslint-plugin-simple-import-sort@8.0.0: integrity sha512-bXgJQ+lqhtQBCuWY/FUWdB27j4+lqcvXv5rUARkzbeWLwea+S5eBZEQrhnO+WgX3ZoJHVj0cn943iyXwByHHQw== eslint-plugin-testing-library@^5.0.1: - version "5.9.1" - resolved "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.9.1.tgz#12e4bd34c48683ee98af4df2e3318ec9f51dcf8a" - integrity sha512-6BQp3tmb79jLLasPHJmy8DnxREe+2Pgf7L+7o09TSWPfdqqtQfRZmZNetr5mOs3yqZk/MRNxpN3RUpJe0wB4LQ== + version "5.11.1" + resolved "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz#5b46cdae96d4a78918711c0b4792f90088e62d20" + integrity sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw== dependencies: - "@typescript-eslint/utils" "^5.13.0" + "@typescript-eslint/utils" "^5.58.0" eslint-plugin-unused-imports@2.0.0: version "2.0.0" @@ -5464,42 +5388,30 @@ eslint-scope@5.1.1, eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.1.1: - version "7.1.1" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" - integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== +eslint-scope@^7.1.1, eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - eslint-visitor-keys@^1.0.0: version "1.3.0" resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== -eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: +eslint-visitor-keys@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== -eslint-visitor-keys@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" - integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== - -eslint-visitor-keys@^3.4.0: - version "3.4.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz#c7f0f956124ce677047ddbc192a68f999454dedc" - integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ== +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@8.38.0, eslint@^8.38.0: +eslint@8.38.0: version "8.38.0" resolved "https://registry.npmjs.org/eslint/-/eslint-8.38.0.tgz#a62c6f36e548a5574dd35728ac3c6209bd1e2f1a" integrity sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg== @@ -5545,14 +5457,58 @@ eslint@8.38.0, eslint@^8.38.0: strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.5.1: - version "9.5.1" - resolved "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz#4f26a4d5f18905bf4f2e0bd99002aab807e96dd4" - integrity sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg== +eslint@^8.38.0: + version "8.56.0" + resolved "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz#4957ce8da409dc0809f99ab07a1b94832ab74b15" + integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.56.0" + "@humanwhocodes/config-array" "^0.11.13" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + "@ungap/structured-clone" "^1.2.0" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +espree@^9.5.1, espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.0" + eslint-visitor-keys "^3.4.1" esprima@^4.0.0: version "4.0.1" @@ -5639,27 +5595,16 @@ expand-brackets@^2.1.4: snapdragon "^0.8.1" to-regex "^3.0.1" -expect@^29.0.0: - version "29.2.2" - resolved "https://registry.npmjs.org/expect/-/expect-29.2.2.tgz#ba2dd0d7e818727710324a6e7f13dd0e6d086106" - integrity sha512-hE09QerxZ5wXiOhqkXy5d2G9ar+EqOyifnCXCpMNu+vZ6DG9TJ6CO2c2kPDSLqERTTWrO7OZj8EkYHQqSd78Yw== - dependencies: - "@jest/expect-utils" "^29.2.2" - jest-get-type "^29.2.0" - jest-matcher-utils "^29.2.2" - jest-message-util "^29.2.1" - jest-util "^29.2.1" - -expect@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" - integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== +expect@^29.0.0, expect@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" + integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== dependencies: - "@jest/expect-utils" "^29.5.0" - jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + "@jest/expect-utils" "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" extend-shallow@^2.0.1: version "2.0.1" @@ -5720,9 +5665,9 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-diff@^1.1.2: - version "1.2.0" - resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" - integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + version "1.3.0" + resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" + integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== fast-glob@^2.2.6: version "2.2.7" @@ -5737,9 +5682,9 @@ fast-glob@^2.2.6: micromatch "^3.1.10" fast-glob@^3.2.9: - version "3.2.12" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + version "3.3.2" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -5759,13 +5704,13 @@ fast-levenshtein@^2.0.6: fast-safe-stringify@^2.1.1: version "2.1.1" - resolved "https://registry.npmmirror.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" + resolved "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== fastq@^1.6.0: - version "1.13.0" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" - integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + version "1.17.0" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.17.0.tgz#ca5e1a90b5e68f97fc8b61330d5819b82f5fab03" + integrity sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w== dependencies: reusify "^1.0.4" @@ -5870,17 +5815,18 @@ find-up@^5.0.0: path-exists "^4.0.0" flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + version "3.2.0" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== dependencies: - flatted "^3.1.0" + flatted "^3.2.9" + keyv "^4.5.3" rimraf "^3.0.2" -flatted@^3.1.0: - version "3.2.7" - resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" - integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== +flatted@^3.2.9: + version "3.2.9" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" + integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== flush-write-stream@^1.0.0: version "1.1.1" @@ -5927,7 +5873,7 @@ form-data@~2.3.2: formidable@^2.1.2: version "2.1.2" - resolved "https://registry.npmmirror.com/formidable/-/formidable-2.1.2.tgz#fa973a2bec150e4ce7cac15589d7a25fc30ebd89" + resolved "https://registry.npmjs.org/formidable/-/formidable-2.1.2.tgz#fa973a2bec150e4ce7cac15589d7a25fc30ebd89" integrity sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g== dependencies: dezalgo "^1.0.4" @@ -5987,26 +5933,26 @@ fs.realpath@^1.0.0: integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@^2.3.2, fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + version "2.3.3" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.1, function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== +function.prototype.name@^1.1.5, function.prototype.name@^1.1.6: + version "1.1.6" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" - functions-have-names "^1.2.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + functions-have-names "^1.2.3" -functions-have-names@^1.2.2: +functions-have-names@^1.2.3: version "1.2.3" resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== @@ -6040,23 +5986,15 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" - integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.3" - -get-intrinsic@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" - integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b" + integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA== dependencies: - function-bind "^1.1.1" - has "^1.0.3" + function-bind "^1.1.2" + has-proto "^1.0.1" has-symbols "^1.0.3" + hasown "^2.0.0" get-package-type@^0.1.0: version "0.1.0" @@ -6221,9 +6159,9 @@ globals@^11.1.0: integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^13.19.0: - version "13.20.0" - resolved "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" - integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + version "13.24.0" + resolved "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== dependencies: type-fest "^0.20.2" @@ -6268,22 +6206,27 @@ gopd@^1.0.1: get-intrinsic "^1.1.3" graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.9: - version "4.2.10" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + version "4.2.11" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== grapheme-splitter@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + handlebars@^4.7.6: - version "4.7.7" - resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== + version "4.7.8" + resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9" + integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ== dependencies: minimist "^1.2.5" - neo-async "^2.6.0" + neo-async "^2.6.2" source-map "^0.6.1" wordwrap "^1.0.0" optionalDependencies: @@ -6322,12 +6265,12 @@ has-flag@^4.0.0: resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340" + integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg== dependencies: - get-intrinsic "^1.1.1" + get-intrinsic "^1.2.2" has-proto@^1.0.1: version "1.0.1" @@ -6382,13 +6325,6 @@ has-values@^1.0.0: is-number "^3.0.0" kind-of "^4.0.0" -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - hash-base@^3.0.0: version "3.1.0" resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" @@ -6406,9 +6342,16 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" +hasown@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" + integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== + dependencies: + function-bind "^1.1.2" + hexoid@^1.0.0: version "1.0.0" - resolved "https://registry.npmmirror.com/hexoid/-/hexoid-1.0.0.tgz#ad10c6573fb907de23d9ec63a711267d9dc9bc18" + resolved "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz#ad10c6573fb907de23d9ec63a711267d9dc9bc18" integrity sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g== hmac-drbg@^1.0.1: @@ -6523,9 +6466,9 @@ ignore@^4.0.3: integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== ignore@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + version "5.3.0" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz#67418ae40d34d6999c95ff56016759c718c82f78" + integrity sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg== import-fresh@^2.0.0: version "2.0.0" @@ -6637,22 +6580,13 @@ inquirer@^6.2.0: strip-ansi "^5.1.0" through "^2.3.6" -internal-slot@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" - integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== - dependencies: - get-intrinsic "^1.1.0" - has "^1.0.3" - side-channel "^1.0.4" - internal-slot@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" - integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + version "1.0.6" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz#37e756098c4911c5e912b8edbf71ed3aa116f930" + integrity sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg== dependencies: - get-intrinsic "^1.2.0" - has "^1.0.3" + get-intrinsic "^1.2.2" + hasown "^2.0.0" side-channel "^1.0.4" ip@1.1.5: @@ -6660,19 +6594,12 @@ ip@1.1.5: resolved "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" integrity sha512-rBtCAQAJm8A110nbwn6YdveUnuZH3WrC36IwkRXxDnq53JvXA2NVQvB7IHyKomxK1MJ4VDNw3UtFDdXQ+AvLYA== -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A== - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== +is-accessor-descriptor@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz#3223b10628354644b86260db29b3e693f5ceedd4" + integrity sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA== dependencies: - kind-of "^6.0.0" + hasown "^2.0.0" is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: version "3.0.2" @@ -6688,6 +6615,13 @@ is-arrayish@^0.2.1: resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + dependencies: + has-tostringtag "^1.0.0" + is-bigint@^1.0.1: version "1.0.4" resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" @@ -6727,28 +6661,21 @@ is-ci@^2.0.0: dependencies: ci-info "^2.0.0" -is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: - version "2.11.0" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" - integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== - dependencies: - has "^1.0.3" - -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg== +is-core-module@^2.13.0, is-core-module@^2.13.1, is-core-module@^2.5.0: + version "2.13.1" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: - kind-of "^3.0.2" + hasown "^2.0.0" -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== +is-data-descriptor@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz#2109164426166d32ea38c405c1e0945d9e6a4eeb" + integrity sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw== dependencies: - kind-of "^6.0.0" + hasown "^2.0.0" -is-date-object@^1.0.1: +is-date-object@^1.0.1, is-date-object@^1.0.5: version "1.0.5" resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== @@ -6756,22 +6683,20 @@ is-date-object@^1.0.1: has-tostringtag "^1.0.0" is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + version "0.1.7" + resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz#2727eb61fd789dcd5bdf0ed4569f551d2fe3be33" + integrity sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg== dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" + is-accessor-descriptor "^1.0.1" + is-data-descriptor "^1.0.1" is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + version "1.0.3" + resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz#92d27cb3cd311c4977a4db47df457234a13cb306" + integrity sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw== dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" + is-accessor-descriptor "^1.0.1" + is-data-descriptor "^1.0.1" is-directory@^0.3.1: version "0.3.1" @@ -6795,6 +6720,13 @@ is-extglob@^2.1.0, is-extglob@^2.1.1: resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-finalizationregistry@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" + integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== + dependencies: + call-bind "^1.0.2" + is-finite@^1.0.0: version "1.1.0" resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" @@ -6822,6 +6754,13 @@ is-generator-fn@^2.0.0: resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== +is-generator-function@^1.0.10: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + is-glob@^3.1.0: version "3.1.0" resolved "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" @@ -6836,6 +6775,11 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" +is-map@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" + integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== + is-negative-zero@^2.0.2: version "2.0.2" resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" @@ -6900,6 +6844,11 @@ is-regex@^1.1.4: call-bind "^1.0.2" has-tostringtag "^1.0.0" +is-set@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" + integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== + is-shared-array-buffer@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" @@ -6945,16 +6894,12 @@ is-text-path@^1.0.1: dependencies: text-extensions "^1.0.0" -is-typed-array@^1.1.10, is-typed-array@^1.1.9: - version "1.1.10" - resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" - integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== +is-typed-array@^1.1.10, is-typed-array@^1.1.12, is-typed-array@^1.1.9: + version "1.1.12" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" + integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" + which-typed-array "^1.1.11" is-typedarray@~1.0.0: version "1.0.0" @@ -6966,6 +6911,11 @@ is-utf8@^0.2.0: resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== +is-weakmap@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" + integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== + is-weakref@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" @@ -6973,6 +6923,14 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" +is-weakset@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" + integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + is-windows@^1.0.0, is-windows@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" @@ -6983,6 +6941,11 @@ isarray@1.0.0, isarray@~1.0.0: resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + isexe@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" @@ -7006,11 +6969,11 @@ isstream@~0.1.2: integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + version "3.2.2" + resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== -istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: +istanbul-lib-instrument@^5.0.4: version "5.2.1" resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== @@ -7021,13 +6984,24 @@ istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: istanbul-lib-coverage "^3.2.0" semver "^6.3.0" +istanbul-lib-instrument@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz#71e87707e8041428732518c6fb5211761753fbdf" + integrity sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^7.5.4" + istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + version "3.0.1" + resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== dependencies: istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" + make-dir "^4.0.0" supports-color "^7.1.0" istanbul-lib-source-maps@^4.0.0: @@ -7040,417 +7014,373 @@ istanbul-lib-source-maps@^4.0.0: source-map "^0.6.1" istanbul-reports@^3.1.3: - version "3.1.5" - resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" - integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== + version "3.1.6" + resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz#2544bcab4768154281a2f0870471902704ccaa1a" + integrity sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg== dependencies: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" -jest-changed-files@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e" - integrity sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag== +iterator.prototype@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0" + integrity sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== + dependencies: + define-properties "^1.2.1" + get-intrinsic "^1.2.1" + has-symbols "^1.0.3" + reflect.getprototypeof "^1.0.4" + set-function-name "^2.0.1" + +jest-changed-files@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" + integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== dependencies: execa "^5.0.0" + jest-util "^29.7.0" p-limit "^3.1.0" -jest-circus@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" - integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== +jest-circus@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" + integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" - dedent "^0.7.0" + dedent "^1.0.0" is-generator-fn "^2.0.0" - jest-each "^29.5.0" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" + jest-each "^29.7.0" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" p-limit "^3.1.0" - pretty-format "^29.5.0" + pretty-format "^29.7.0" pure-rand "^6.0.0" slash "^3.0.0" stack-utils "^2.0.3" -jest-cli@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" - integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== +jest-cli@^29.5.0, jest-cli@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" + integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== dependencies: - "@jest/core" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/core" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" chalk "^4.0.0" + create-jest "^29.7.0" exit "^0.1.2" - graceful-fs "^4.2.9" import-local "^3.0.2" - jest-config "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - prompts "^2.0.1" + jest-config "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" yargs "^17.3.1" -jest-config@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" - integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== +jest-config@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" + integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== dependencies: "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^29.5.0" - "@jest/types" "^29.5.0" - babel-jest "^29.5.0" + "@jest/test-sequencer" "^29.7.0" + "@jest/types" "^29.6.3" + babel-jest "^29.7.0" chalk "^4.0.0" ci-info "^3.2.0" deepmerge "^4.2.2" glob "^7.1.3" graceful-fs "^4.2.9" - jest-circus "^29.5.0" - jest-environment-node "^29.5.0" - jest-get-type "^29.4.3" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-runner "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-circus "^29.7.0" + jest-environment-node "^29.7.0" + jest-get-type "^29.6.3" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-runner "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" micromatch "^4.0.4" parse-json "^5.2.0" - pretty-format "^29.5.0" + pretty-format "^29.7.0" slash "^3.0.0" strip-json-comments "^3.1.1" -jest-diff@^29.2.1: - version "29.2.1" - resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.2.1.tgz#027e42f5a18b693fb2e88f81b0ccab533c08faee" - integrity sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA== - dependencies: - chalk "^4.0.0" - diff-sequences "^29.2.0" - jest-get-type "^29.2.0" - pretty-format "^29.2.1" - -jest-diff@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" - integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== +jest-diff@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" + integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== dependencies: chalk "^4.0.0" - diff-sequences "^29.4.3" - jest-get-type "^29.4.3" - pretty-format "^29.5.0" + diff-sequences "^29.6.3" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" -jest-docblock@^29.4.3: - version "29.4.3" - resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" - integrity sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg== +jest-docblock@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" + integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== dependencies: detect-newline "^3.0.0" -jest-each@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" - integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== +jest-each@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" + integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" chalk "^4.0.0" - jest-get-type "^29.4.3" - jest-util "^29.5.0" - pretty-format "^29.5.0" - -jest-environment-node@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" - integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + jest-get-type "^29.6.3" + jest-util "^29.7.0" + pretty-format "^29.7.0" + +jest-environment-node@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" + integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-mock "^29.7.0" + jest-util "^29.7.0" -jest-get-type@^29.2.0: - version "29.2.0" - resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.2.0.tgz#726646f927ef61d583a3b3adb1ab13f3a5036408" - integrity sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA== +jest-get-type@^29.6.3: + version "29.6.3" + resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" + integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== -jest-get-type@^29.4.3: - version "29.4.3" - resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" - integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== - -jest-haste-map@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" - integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== +jest-haste-map@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" + integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/graceful-fs" "^4.1.3" "@types/node" "*" anymatch "^3.0.3" fb-watchman "^2.0.0" graceful-fs "^4.2.9" - jest-regex-util "^29.4.3" - jest-util "^29.5.0" - jest-worker "^29.5.0" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + jest-worker "^29.7.0" micromatch "^4.0.4" walker "^1.0.8" optionalDependencies: fsevents "^2.3.2" -jest-leak-detector@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" - integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== - dependencies: - jest-get-type "^29.4.3" - pretty-format "^29.5.0" - -jest-matcher-utils@^29.2.2: - version "29.2.2" - resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.2.2.tgz#9202f8e8d3a54733266784ce7763e9a08688269c" - integrity sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw== - dependencies: - chalk "^4.0.0" - jest-diff "^29.2.1" - jest-get-type "^29.2.0" - pretty-format "^29.2.1" - -jest-matcher-utils@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" - integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== +jest-leak-detector@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" + integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== dependencies: - chalk "^4.0.0" - jest-diff "^29.5.0" - jest-get-type "^29.4.3" - pretty-format "^29.5.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" -jest-message-util@^29.2.1: - version "29.2.1" - resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.2.1.tgz#3a51357fbbe0cc34236f17a90d772746cf8d9193" - integrity sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw== +jest-matcher-utils@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" + integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.2.1" - "@types/stack-utils" "^2.0.0" chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^29.2.1" - slash "^3.0.0" - stack-utils "^2.0.3" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" -jest-message-util@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" - integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== +jest-message-util@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" + integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== dependencies: "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/stack-utils" "^2.0.0" chalk "^4.0.0" graceful-fs "^4.2.9" micromatch "^4.0.4" - pretty-format "^29.5.0" + pretty-format "^29.7.0" slash "^3.0.0" stack-utils "^2.0.3" -jest-mock@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" - integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== +jest-mock@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" + integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/node" "*" - jest-util "^29.5.0" + jest-util "^29.7.0" jest-pnp-resolver@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" - integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== + version "1.2.3" + resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== -jest-regex-util@^29.4.3: - version "29.4.3" - resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" - integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== +jest-regex-util@^29.6.3: + version "29.6.3" + resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" + integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== -jest-resolve-dependencies@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" - integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== +jest-resolve-dependencies@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" + integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== dependencies: - jest-regex-util "^29.4.3" - jest-snapshot "^29.5.0" + jest-regex-util "^29.6.3" + jest-snapshot "^29.7.0" -jest-resolve@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" - integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== +jest-resolve@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" + integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== dependencies: chalk "^4.0.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.7.0" jest-pnp-resolver "^1.2.2" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" resolve "^1.20.0" resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" - integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== +jest-runner@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" + integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== dependencies: - "@jest/console" "^29.5.0" - "@jest/environment" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/console" "^29.7.0" + "@jest/environment" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" emittery "^0.13.1" graceful-fs "^4.2.9" - jest-docblock "^29.4.3" - jest-environment-node "^29.5.0" - jest-haste-map "^29.5.0" - jest-leak-detector "^29.5.0" - jest-message-util "^29.5.0" - jest-resolve "^29.5.0" - jest-runtime "^29.5.0" - jest-util "^29.5.0" - jest-watcher "^29.5.0" - jest-worker "^29.5.0" + jest-docblock "^29.7.0" + jest-environment-node "^29.7.0" + jest-haste-map "^29.7.0" + jest-leak-detector "^29.7.0" + jest-message-util "^29.7.0" + jest-resolve "^29.7.0" + jest-runtime "^29.7.0" + jest-util "^29.7.0" + jest-watcher "^29.7.0" + jest-worker "^29.7.0" p-limit "^3.1.0" source-map-support "0.5.13" -jest-runtime@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" - integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/globals" "^29.5.0" - "@jest/source-map" "^29.4.3" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" +jest-runtime@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" + integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/globals" "^29.7.0" + "@jest/source-map" "^29.6.3" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" cjs-module-lexer "^1.0.0" collect-v8-coverage "^1.0.0" glob "^7.1.3" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" slash "^3.0.0" strip-bom "^4.0.0" -jest-snapshot@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" - integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== +jest-snapshot@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" + integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== dependencies: "@babel/core" "^7.11.6" "@babel/generator" "^7.7.2" "@babel/plugin-syntax-jsx" "^7.7.2" "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" "@babel/types" "^7.3.3" - "@jest/expect-utils" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/babel__traverse" "^7.0.6" - "@types/prettier" "^2.1.5" + "@jest/expect-utils" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" babel-preset-current-node-syntax "^1.0.0" chalk "^4.0.0" - expect "^29.5.0" + expect "^29.7.0" graceful-fs "^4.2.9" - jest-diff "^29.5.0" - jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" natural-compare "^1.4.0" - pretty-format "^29.5.0" - semver "^7.3.5" - -jest-util@^29.0.0, jest-util@^29.2.1: - version "29.2.1" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.2.1.tgz#f26872ba0dc8cbefaba32c34f98935f6cf5fc747" - integrity sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g== - dependencies: - "@jest/types" "^29.2.1" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" + pretty-format "^29.7.0" + semver "^7.5.3" -jest-util@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" - integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== +jest-util@^29.0.0, jest-util@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" ci-info "^3.2.0" graceful-fs "^4.2.9" picomatch "^2.2.3" -jest-validate@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" - integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== +jest-validate@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" + integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" camelcase "^6.2.0" chalk "^4.0.0" - jest-get-type "^29.4.3" + jest-get-type "^29.6.3" leven "^3.1.0" - pretty-format "^29.5.0" + pretty-format "^29.7.0" -jest-watcher@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" - integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== +jest-watcher@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" + integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== dependencies: - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" emittery "^0.13.1" - jest-util "^29.5.0" + jest-util "^29.7.0" string-length "^4.0.1" -jest-worker@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" - integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== +jest-worker@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== dependencies: "@types/node" "*" - jest-util "^29.5.0" + jest-util "^29.7.0" merge-stream "^2.0.0" supports-color "^8.0.0" -jest@29.5.0, jest@^29.5.0: +jest@29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== @@ -7460,10 +7390,20 @@ jest@29.5.0, jest@^29.5.0: import-local "^3.0.2" jest-cli "^29.5.0" +jest@^29.5.0: + version "29.7.0" + resolved "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" + integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== + dependencies: + "@jest/core" "^29.7.0" + "@jest/types" "^29.6.3" + import-local "^3.0.2" + jest-cli "^29.7.0" + js-sdsl@^4.1.4: - version "4.1.5" - resolved "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" - integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== + version "4.4.2" + resolved "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.2.tgz#2e3c031b1f47d3aca8b775532e3ebb0818e7f847" + integrity sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w== js-sha3@0.8.0: version "0.8.0" @@ -7505,6 +7445,11 @@ jsesc@~0.5.0: resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1: version "1.0.2" resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" @@ -7535,19 +7480,14 @@ json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== dependencies: minimist "^1.2.0" -json5@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" - integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== - -json5@^2.2.2, json5@^2.2.3: +json5@^2.2.1, json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== @@ -7574,13 +7514,22 @@ jsprim@^1.2.2: json-schema "0.4.0" verror "1.10.0" -"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2: - version "3.3.3" - resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" - integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5: + version "3.3.5" + resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" + integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== + dependencies: + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" + +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== dependencies: - array-includes "^3.1.5" - object.assign "^4.1.3" + json-buffer "3.0.1" kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" @@ -7596,12 +7545,7 @@ kind-of@^4.0.0: dependencies: is-buffer "^1.1.5" -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: +kind-of@^6.0.2, kind-of@^6.0.3: version "6.0.3" resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== @@ -7611,17 +7555,17 @@ kleur@^3.0.3: resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -language-subtag-registry@~0.3.2: +language-subtag-registry@^0.3.20: version "0.3.22" resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== -language-tags@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" - integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== +language-tags@^1.0.9: + version "1.0.9" + resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777" + integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA== dependencies: - language-subtag-registry "~0.3.2" + language-subtag-registry "^0.3.20" lerna@3.22.1: version "3.22.1" @@ -7842,9 +7786,9 @@ lru-cache@^6.0.0: yallist "^4.0.0" macos-release@^2.2.0: - version "2.5.0" - resolved "https://registry.npmjs.org/macos-release/-/macos-release-2.5.0.tgz#067c2c88b5f3fb3c56a375b2ec93826220fa1ff2" - integrity sha512-EIgv+QZ9r+814gjJj0Bt5vSLJLzswGmSUbUpbi9AIr/fsN2IWFBl2NucV9PAiek+U1STK468tEkxmVYUtuAN3g== + version "2.5.1" + resolved "https://registry.npmjs.org/macos-release/-/macos-release-2.5.1.tgz#bccac4a8f7b93163a8d163b8ebf385b3c5f55bf9" + integrity sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A== make-dir@^1.0.0: version "1.3.0" @@ -7861,12 +7805,12 @@ make-dir@^2.0.0, make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== +make-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== dependencies: - semver "^6.0.0" + semver "^7.5.3" make-error@1.x: version "1.3.6" @@ -7993,7 +7937,7 @@ merge2@^1.2.3, merge2@^1.3.0, merge2@^1.4.1: methods@^1.1.2: version "1.1.2" - resolved "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== micromatch@^3.1.10: @@ -8037,7 +7981,7 @@ mime-types@^2.1.12, mime-types@~2.1.19: mime@2.6.0: version "2.6.0" - resolved "https://registry.npmmirror.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== mimic-fn@^1.0.0: @@ -8073,9 +8017,9 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: brace-expansion "^1.1.7" minimatch@^5.0.1: - version "5.1.0" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" - integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + version "5.1.6" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== dependencies: brace-expansion "^2.0.1" @@ -8097,9 +8041,9 @@ minimist-options@^3.0.1: is-plain-obj "^1.1.0" minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: - version "1.2.7" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" - integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== + version "1.2.8" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== minipass@^2.3.5, minipass@^2.6.0, minipass@^2.9.0: version "2.9.0" @@ -8147,10 +8091,10 @@ mkdirp-promise@^5.0.1: dependencies: mkdirp "*" -mkdirp@*: - version "1.0.4" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== +mkdirp@*, mkdirp@3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz#e44e4c5607fb279c168241713cc6e0fea9adcb50" + integrity sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg== mkdirp@^0.5.1, mkdirp@^0.5.5: version "0.5.6" @@ -8160,9 +8104,9 @@ mkdirp@^0.5.1, mkdirp@^0.5.5: minimist "^1.2.6" mobx@^6.1.7: - version "6.10.2" - resolved "https://registry.npmjs.org/mobx/-/mobx-6.10.2.tgz#96e123deef140750360ca9a5b02a8b91fbffd4d9" - integrity sha512-B1UGC3ieK3boCjnMEcZSwxqRDMdzX65H/8zOHbuTY8ZhvrIjTUoLRR2TP2bPqIgYRfb3+dUigu8yMZufNjn0LQ== + version "6.12.0" + resolved "https://registry.npmjs.org/mobx/-/mobx-6.12.0.tgz#72b2685ca5af031aaa49e77a4d76ed67fcbf9135" + integrity sha512-Mn6CN6meXEnMa0a5u6a5+RKrqRedHBhZGd15AWLk9O6uFY4KYHzImdt8JI8WODo1bjTSRnwXhJox+FCUZhCKCQ== modify-values@^1.0.0: version "1.0.1" @@ -8226,9 +8170,9 @@ mz@^2.5.0: thenify-all "^1.0.0" nan@^2.13.2: - version "2.17.0" - resolved "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz#c0150a2368a182f033e9aa5195ec76ea41a199cb" - integrity sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ== + version "2.18.0" + resolved "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" + integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== nanomatch@^1.2.9: version "1.2.13" @@ -8257,7 +8201,7 @@ natural-compare@^1.4.0: resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -neo-async@^2.6.0: +neo-async@^2.6.2: version "2.6.2" resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== @@ -8269,7 +8213,7 @@ nice-try@^1.0.4: nock@13.3.2: version "13.3.2" - resolved "https://registry.npmmirror.com/nock/-/nock-13.3.2.tgz#bfa6be92d37f744b1b758ea89b1105cdaf5c8b3f" + resolved "https://registry.npmjs.org/nock/-/nock-13.3.2.tgz#bfa6be92d37f744b1b758ea89b1105cdaf5c8b3f" integrity sha512-CwbljitiWJhF1gL83NbanhoKs1l23TDlRioNraPTZrzZIEooPemrHRj5m0FZCPkB1ecdYCSWWGcHysJgX/ngnQ== dependencies: debug "^4.1.0" @@ -8294,10 +8238,10 @@ node-fetch-npm@^2.0.2: json-parse-better-errors "^1.0.0" safe-buffer "^5.1.1" -node-fetch@2.6.7, node-fetch@^2.5.0, node-fetch@^2.6.7: - version "2.6.7" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== +node-fetch@^2.5.0, node-fetch@^2.6.12, node-fetch@^2.6.7: + version "2.7.0" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== dependencies: whatwg-url "^5.0.0" @@ -8323,10 +8267,10 @@ node-int64@^0.4.0: resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" - integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== nopt@^4.0.1: version "4.0.3" @@ -8468,15 +8412,10 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" -object-inspect@^1.12.2, object-inspect@^1.9.0: - version "1.12.2" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" - integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== - -object-inspect@^1.12.3: - version "1.12.3" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== +object-inspect@^1.13.1, object-inspect@^1.9.0: + version "1.13.1" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== object-keys@^1.1.1: version "1.1.1" @@ -8490,77 +8429,62 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.assign@^4.1.3, object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== +object.assign@^4.1.4: + version "4.1.5" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" + call-bind "^1.0.5" + define-properties "^1.2.1" has-symbols "^1.0.3" object-keys "^1.1.1" -object.entries@^1.1.5: - version "1.1.5" - resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" - integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -object.entries@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" - integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -object.fromentries@^2.0.5: - version "2.0.5" - resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" - integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== +object.entries@^1.1.6, object.entries@^1.1.7: + version "1.1.7" + resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz#2b47760e2a2e3a752f39dd874655c61a7f03c131" + integrity sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" + define-properties "^1.2.0" + es-abstract "^1.22.1" -object.fromentries@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" - integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== +object.fromentries@^2.0.6, object.fromentries@^2.0.7: + version "2.0.7" + resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz#71e95f441e9a0ea6baf682ecaaf37fa2a8d7e616" + integrity sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" object.getownpropertydescriptors@^2.0.3: - version "2.1.4" - resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz#7965e6437a57278b587383831a9b829455a4bc37" - integrity sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ== + version "2.1.7" + resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz#7a466a356cd7da4ba8b9e94ff6d35c3eeab5d56a" + integrity sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g== dependencies: - array.prototype.reduce "^1.0.4" + array.prototype.reduce "^1.0.6" call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.1" + define-properties "^1.2.0" + es-abstract "^1.22.1" + safe-array-concat "^1.0.0" -object.hasown@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" - integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== +object.groupby@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz#d41d9f3c8d6c778d9cbac86b4ee9f5af103152ee" + integrity sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ== dependencies: - define-properties "^1.1.4" - es-abstract "^1.19.5" + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + get-intrinsic "^1.2.1" object.hasown@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" - integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== + version "1.1.3" + resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz#6a5f2897bb4d3668b8e79364f98ccf971bda55ae" + integrity sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA== dependencies: - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" object.pick@^1.3.0: version "1.3.0" @@ -8569,23 +8493,14 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -object.values@^1.1.5: - version "1.1.5" - resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" - integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -object.values@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" - integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== +object.values@^1.1.6, object.values@^1.1.7: + version "1.1.7" + resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz#617ed13272e7e1071b43973aa1655d9291b8442a" + integrity sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" octokit-pagination-methods@^1.1.0: version "1.1.0" @@ -8613,17 +8528,17 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.1, optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" os-homedir@^1.0.0: version "1.0.2" @@ -8890,17 +8805,6 @@ path-type@^4.0.0: resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pbkdf2@^3.0.9: - version "3.1.2" - resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" - integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - performance-now@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" @@ -8943,10 +8847,10 @@ pinkie@^2.0.0: resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== -pirates@^4.0.4, pirates@^4.0.5: - version "4.0.5" - resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" - integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== +pirates@^4.0.4, pirates@^4.0.6: + version "4.0.6" + resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== pkg-dir@^3.0.0: version "3.0.0" @@ -8979,26 +8883,22 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@2.8.7, prettier@^2.8.7: +prettier@2.8.7: version "2.8.7" resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450" integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw== -pretty-format@^29.0.0, pretty-format@^29.2.1: - version "29.2.1" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.2.1.tgz#86e7748fe8bbc96a6a4e04fa99172630907a9611" - integrity sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA== - dependencies: - "@jest/schemas" "^29.0.0" - ansi-styles "^5.0.0" - react-is "^18.0.0" +prettier@^2.8.7: + version "2.8.8" + resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== -pretty-format@^29.5.0: - version "29.5.0" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" - integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== +pretty-format@^29.0.0, pretty-format@^29.7.0: + version "29.7.0" + resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== dependencies: - "@jest/schemas" "^29.4.3" + "@jest/schemas" "^29.6.3" ansi-styles "^5.0.0" react-is "^18.0.0" @@ -9046,7 +8946,7 @@ prop-types@^15.8.1: propagate@^2.0.0: version "2.0.1" - resolved "https://registry.npmmirror.com/propagate/-/propagate-2.0.1.tgz#40cdedab18085c792334e64f0ac17256d38f9a45" + resolved "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz#40cdedab18085c792334e64f0ac17256d38f9a45" integrity sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag== proto-list@~1.2.1: @@ -9055,9 +8955,9 @@ proto-list@~1.2.1: integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== protobufjs@^6.11.2: - version "6.11.3" - resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" - integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + version "6.11.4" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.4.tgz#29a412c38bf70d89e537b6d02d904a6f448173aa" + integrity sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw== dependencies: "@protobufjs/aspromise" "^1.1.2" "@protobufjs/base64" "^1.1.2" @@ -9121,34 +9021,27 @@ pumpify@^1.3.3: pump "^2.0.0" punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + version "2.3.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== pure-rand@^6.0.0: - version "6.0.1" - resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz#31207dddd15d43f299fdcdb2f572df65030c19af" - integrity sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg== + version "6.0.4" + resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz#50b737f6a925468679bff00ad20eade53f37d5c7" + integrity sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA== q@^1.5.1: version "1.5.1" resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== -qs@^6.11.0: +qs@^6.11.0, qs@^6.9.4: version "6.11.2" - resolved "https://registry.npmmirror.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" + resolved "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== dependencies: side-channel "^1.0.4" -qs@^6.9.4: - version "6.11.0" - resolved "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" - integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== - dependencies: - side-channel "^1.0.4" - qs@~6.5.2: version "6.5.3" resolved "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" @@ -9179,13 +9072,6 @@ quick-lru@^4.0.1: resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== -randombytes@^2.0.1: - version "2.1.0" - resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - react-is@^16.13.1: version "16.13.1" resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" @@ -9283,9 +9169,9 @@ read@1, read@~1.0.1: mute-stream "~0.0.4" "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.6, readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + version "2.3.8" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -9296,9 +9182,9 @@ read@1, read@~1.0.1: util-deprecate "~1.0.1" "readable-stream@2 || 3", readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + version "3.6.2" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" @@ -9345,10 +9231,22 @@ redent@^3.0.0: indent-string "^4.0.0" strip-indent "^3.0.0" +reflect.getprototypeof@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz#aaccbf41aca3821b87bb71d9dcbc7ad0ba50a3f3" + integrity sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + get-intrinsic "^1.2.1" + globalthis "^1.0.3" + which-builtin-type "^1.1.3" + regenerate-unicode-properties@^10.1.0: - version "10.1.0" - resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" - integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== + version "10.1.1" + resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" + integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== dependencies: regenerate "^1.4.2" @@ -9357,27 +9255,20 @@ regenerate@^1.4.2: resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.13.10: - version "0.13.10" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" - integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== - regenerator-runtime@^0.13.11: version "0.13.11" resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== -regenerator-transform@^0.15.0: - version "0.15.0" - resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537" - integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg== - dependencies: - "@babel/runtime" "^7.8.4" +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== -regenerator-transform@^0.15.1: - version "0.15.1" - resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" - integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== dependencies: "@babel/runtime" "^7.8.4" @@ -9389,31 +9280,14 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: - version "1.4.3" - resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" - integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== +regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz#90ce989138db209f81492edd734183ce99f9677e" + integrity sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - functions-have-names "^1.2.2" - -regexpp@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - -regexpu-core@^5.1.0: - version "5.2.1" - resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz#a69c26f324c1e962e9ffd0b88b055caba8089139" - integrity sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ== - dependencies: - regenerate "^1.4.2" - regenerate-unicode-properties "^10.1.0" - regjsgen "^0.7.1" - regjsparser "^0.9.1" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.0.0" + define-properties "^1.2.0" + set-function-name "^2.0.0" regexpu-core@^5.3.1: version "5.3.2" @@ -9427,11 +9301,6 @@ regexpu-core@^5.3.1: unicode-match-property-ecmascript "^2.0.0" unicode-match-property-value-ecmascript "^2.1.0" -regjsgen@^0.7.1: - version "0.7.1" - resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6" - integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA== - regjsparser@^0.9.1: version "0.9.1" resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" @@ -9531,21 +9400,21 @@ resolve.exports@^2.0.0: resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== -resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.0: - version "1.22.1" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== +resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.4: + version "1.22.8" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: - is-core-module "^2.9.0" + is-core-module "^2.13.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -resolve@^2.0.0-next.3, resolve@^2.0.0-next.4: - version "2.0.0-next.4" - resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" - integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== +resolve@^2.0.0-next.4: + version "2.0.0-next.5" + resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" + integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== dependencies: - is-core-module "^2.9.0" + is-core-module "^2.13.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" @@ -9620,7 +9489,17 @@ rxjs@^6.4.0: dependencies: tslib "^1.9.0" -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: +safe-array-concat@^1.0.0, safe-array-concat@^1.0.1: + version "1.1.0" + resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz#8d0cae9cb806d6d1c06e08ab13d847293ebe0692" + integrity sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg== + dependencies: + call-bind "^1.0.5" + get-intrinsic "^1.2.2" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== @@ -9631,12 +9510,12 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== safe-regex-test@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" - integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + version "1.0.2" + resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.2.tgz#3ba32bdb3ea35f940ee87e5087c60ee786c3f6c5" + integrity sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ== dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" + call-bind "^1.0.5" + get-intrinsic "^1.2.2" is-regex "^1.1.4" safe-regex@^1.1.0: @@ -9652,41 +9531,47 @@ safe-regex@^1.1.0: integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: - version "5.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@7.x, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: - version "7.3.8" - resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== - dependencies: - lru-cache "^6.0.0" + version "5.7.2" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.8: +semver@^7.3.4, semver@^7.3.7, semver@^7.3.8, semver@^7.5.0, semver@^7.5.3, semver@^7.5.4: version "7.5.4" - resolved "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^7.5.0: - version "7.5.0" - resolved "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0" - integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA== - dependencies: - lru-cache "^6.0.0" - set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== +set-function-length@^1.1.1: + version "1.2.0" + resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz#2f81dc6c16c7059bda5ab7c82c11f03a515ed8e1" + integrity sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w== + dependencies: + define-data-property "^1.1.1" + function-bind "^1.1.2" + get-intrinsic "^1.2.2" + gopd "^1.0.1" + has-property-descriptors "^1.0.1" + +set-function-name@^2.0.0, set-function-name@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a" + integrity sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA== + dependencies: + define-data-property "^1.0.1" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.0" + set-value@^2.0.0, set-value@^2.0.1: version "2.0.1" resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" @@ -9750,6 +9635,11 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.0.2: + version "4.1.0" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + sisteransi@^1.0.5: version "1.0.5" resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" @@ -9871,17 +9761,17 @@ source-map@^0.6.0, source-map@^0.6.1: integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + version "3.2.0" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + version "2.4.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz#c07a4ede25b16e4f78e6707bbd84b15a45c19c1b" + integrity sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw== spdx-expression-parse@^3.0.0: version "3.0.1" @@ -9892,9 +9782,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.12" - resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" - integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + version "3.0.16" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz#a14f64e0954f6e25cc6587bd4f392522db0d998f" + integrity sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw== split-on-first@^1.0.0: version "1.1.0" @@ -9935,9 +9825,9 @@ sprintf-js@~1.0.2: integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== sshpk@^1.7.0: - version "1.17.0" - resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" - integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== + version "1.18.0" + resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz#1663e55cddf4d688b86a46b77f0d5fe363aba028" + integrity sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ== dependencies: asn1 "~0.2.3" assert-plus "^1.0.0" @@ -9957,9 +9847,9 @@ ssri@^6.0.0, ssri@^6.0.1: figgy-pudding "^3.5.1" stack-utils@^2.0.3: - version "2.0.5" - resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" - integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== + version "2.0.6" + resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== dependencies: escape-string-regexp "^2.0.0" @@ -9980,19 +9870,19 @@ stream-each@^1.1.0: stream-shift "^1.0.0" stream-shift@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" - integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== + version "1.0.3" + resolved "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz#85b8fab4d71010fc3ba8772e8046cc49b8a3864b" + integrity sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ== strict-uri-encode@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== -string-argv@^0.3.1: - version "0.3.1" - resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" - integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== +string-argv@^0.3.2: + version "0.3.2" + resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" + integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== string-length@^4.0.1: version "4.0.2" @@ -10042,78 +9932,47 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string.prototype.matchall@^4.0.7: - version "4.0.7" - resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" - integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - get-intrinsic "^1.1.1" - has-symbols "^1.0.3" - internal-slot "^1.0.3" - regexp.prototype.flags "^1.4.1" - side-channel "^1.0.4" - string.prototype.matchall@^4.0.8: - version "4.0.8" - resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" - integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== + version "4.0.10" + resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz#a1553eb532221d4180c51581d6072cd65d1ee100" + integrity sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - get-intrinsic "^1.1.3" + define-properties "^1.2.0" + es-abstract "^1.22.1" + get-intrinsic "^1.2.1" has-symbols "^1.0.3" - internal-slot "^1.0.3" - regexp.prototype.flags "^1.4.3" + internal-slot "^1.0.5" + regexp.prototype.flags "^1.5.0" + set-function-name "^2.0.0" side-channel "^1.0.4" -string.prototype.trim@^1.2.7: - version "1.2.7" - resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" - integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimend@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" - integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - -string.prototype.trimend@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" - integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== +string.prototype.trim@^1.2.8: + version "1.2.8" + resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd" + integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" -string.prototype.trimstart@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" - integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== +string.prototype.trimend@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e" + integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" + define-properties "^1.2.0" + es-abstract "^1.22.1" -string.prototype.trimstart@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" - integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== +string.prototype.trimstart@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298" + integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" string_decoder@^1.1.1: version "1.3.0" @@ -10218,9 +10077,9 @@ strong-log-transformer@^2.0.0: through "^2.3.4" superagent@^8.0.5: - version "8.0.9" - resolved "https://registry.npmmirror.com/superagent/-/superagent-8.0.9.tgz#2c6fda6fadb40516515f93e9098c0eb1602e0535" - integrity sha512-4C7Bh5pyHTvU33KpZgwrNKh/VQnvgtCSqPRfJAUdmrtSYePVzVg4E4OzsrbkhJj9O7SO6Bnv75K/F8XVZT8YHA== + version "8.1.2" + resolved "https://registry.npmjs.org/superagent/-/superagent-8.1.2.tgz#03cb7da3ec8b32472c9d20f6c2a57c7f3765f30b" + integrity sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA== dependencies: component-emitter "^1.3.0" cookiejar "^2.1.4" @@ -10235,7 +10094,7 @@ superagent@^8.0.5: supertest@6.3.3: version "6.3.3" - resolved "https://registry.npmmirror.com/supertest/-/supertest-6.3.3.tgz#42f4da199fee656106fd422c094cf6c9578141db" + resolved "https://registry.npmjs.org/supertest/-/supertest-6.3.3.tgz#42f4da199fee656106fd422c094cf6c9578141db" integrity sha512-EMCG6G8gDu5qEqRQ3JjjPs6+FYT1a7Hv5ApHvtSghmOFJYtsU5S+pSb6Y2EUeCEY3CmEL3mmQ8YWlPOzQomabA== dependencies: methods "^1.1.2" @@ -10454,9 +10313,9 @@ trim-newlines@^3.0.0: integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== ts-jest@^29.1.0: - version "29.1.0" - resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" - integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA== + version "29.1.2" + resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz#7613d8c81c43c8cb312c6904027257e814c40e09" + integrity sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g== dependencies: bs-logger "0.x" fast-json-stable-stringify "2.x" @@ -10464,16 +10323,16 @@ ts-jest@^29.1.0: json5 "^2.2.3" lodash.memoize "4.x" make-error "1.x" - semver "7.x" + semver "^7.5.3" yargs-parser "^21.0.1" -tsconfig-paths@^3.14.1: - version "3.14.1" - resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" - integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== +tsconfig-paths@^3.15.0: + version "3.15.0" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4" + integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== dependencies: "@types/json5" "^0.0.29" - json5 "^1.0.1" + json5 "^1.0.2" minimist "^1.2.6" strip-bom "^3.0.0" @@ -10543,6 +10402,36 @@ type-fest@^0.8.1: resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== +typed-array-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" + integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + is-typed-array "^1.1.10" + +typed-array-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" + integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" + integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + typed-array-length@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" @@ -10563,9 +10452,9 @@ typeforce@^1.11.5: integrity sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g== typescript@^5.0.4: - version "5.0.4" - resolved "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" - integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== + version "5.3.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" + integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== uglify-js@^3.1.4: version "3.17.4" @@ -10592,6 +10481,11 @@ unbox-primitive@^1.0.2: has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" @@ -10605,11 +10499,6 @@ unicode-match-property-ecmascript@^2.0.0: unicode-canonical-property-names-ecmascript "^2.0.0" unicode-property-aliases-ecmascript "^2.0.0" -unicode-match-property-value-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" - integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== - unicode-match-property-value-ecmascript@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" @@ -10652,9 +10541,9 @@ universal-user-agent@^4.0.0: os-name "^3.1.0" universal-user-agent@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" - integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== + version "6.0.1" + resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz#15f20f55da3c930c57bddbf1734c6654d5fd35aa" + integrity sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ== universalify@^0.1.0: version "0.1.2" @@ -10674,10 +10563,10 @@ upath@^1.2.0: resolved "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== -update-browserslist-db@^1.0.9: - version "1.0.10" - resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" - integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== +update-browserslist-db@^1.0.13: + version "1.0.13" + resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== dependencies: escalade "^3.1.1" picocolors "^1.0.0" @@ -10712,9 +10601,9 @@ util-promisify@^2.1.0: object.getownpropertydescriptors "^2.0.3" utility-types@^3.10.0: - version "3.10.0" - resolved "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz#ea4148f9a741015f05ed74fd615e1d20e6bed82b" - integrity sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg== + version "3.11.0" + resolved "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz#607c40edb4f258915e901ea7995607fdf319424c" + integrity sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw== uuid@^3.0.1, uuid@^3.3.2: version "3.4.0" @@ -10722,13 +10611,13 @@ uuid@^3.0.1, uuid@^3.3.2: integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== v8-to-istanbul@^9.0.1: - version "9.0.1" - resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.0.1.tgz#b6f994b0b5d4ef255e17a0d17dc444a9f5132fa4" - integrity sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w== + version "9.2.0" + resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz#2ed7644a245cddd83d4e087b9b33b3e62dfd10ad" + integrity sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== dependencies: "@jridgewell/trace-mapping" "^0.3.12" "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" + convert-source-map "^2.0.0" v8flags@^3.1.1: version "3.2.0" @@ -10813,22 +10702,49 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" +which-builtin-type@^1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" + integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== + dependencies: + function.prototype.name "^1.1.5" + has-tostringtag "^1.0.0" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.0.2" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + +which-collection@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" + integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== + dependencies: + is-map "^2.0.1" + is-set "^2.0.1" + is-weakmap "^2.0.1" + is-weakset "^2.0.1" + which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== + version "2.0.1" + resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== -which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== +which-typed-array@^1.1.11, which-typed-array@^1.1.13, which-typed-array@^1.1.9: + version "1.1.13" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz#870cd5be06ddb616f504e7b039c4c24898184d36" + integrity sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow== dependencies: available-typed-arrays "^1.0.5" - call-bind "^1.0.2" + call-bind "^1.0.4" for-each "^0.3.3" gopd "^1.0.1" has-tostringtag "^1.0.0" - is-typed-array "^1.1.10" which@^1.2.9, which@^1.3.1: version "1.3.1" @@ -10865,11 +10781,6 @@ windows-release@^3.1.0: dependencies: execa "^1.0.0" -word-wrap@^1.2.3: - version "1.2.3" - resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - wordwrap@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" @@ -10990,7 +10901,7 @@ yargs-parser@^20.2.3: resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== -yargs-parser@^21.0.0, yargs-parser@^21.0.1: +yargs-parser@^21.0.1, yargs-parser@^21.1.1: version "21.1.1" resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== @@ -11013,9 +10924,9 @@ yargs@^14.2.2: yargs-parser "^15.0.1" yargs@^17.3.1: - version "17.6.1" - resolved "https://registry.npmjs.org/yargs/-/yargs-17.6.1.tgz#712508771045019cda059bc1ba3ae091aaa1402e" - integrity sha512-leBuCGrL4dAd6ispNOGsJlhd0uZ6Qehkbu/B9KCR+Pxa/NVdNwi+i31lo0buCm6XxhJQFshXCD0/evfV4xfoUg== + version "17.7.2" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: cliui "^8.0.1" escalade "^3.1.1" @@ -11023,7 +10934,7 @@ yargs@^17.3.1: require-directory "^2.1.1" string-width "^4.2.3" y18n "^5.0.5" - yargs-parser "^21.0.0" + yargs-parser "^21.1.1" yocto-queue@^0.1.0: version "0.1.0"