diff --git a/.github/workflows/utility/chain_registry.mjs b/.github/workflows/utility/chain_registry.mjs index 6c3f662ce2..b446d45063 100644 --- a/.github/workflows/utility/chain_registry.mjs +++ b/.github/workflows/utility/chain_registry.mjs @@ -36,14 +36,17 @@ export const nonChainDirectories = [ "_memo_keys", "_non-cosmos", "_template", + "_scripts", "testnets", ".gitignore", "assetlist.schema.json", "chain.schema.json", "ibc_data.schema.json", "memo_keys.schema.json", + "versions.schema.json", "README.md", - "LICENSE" + "LICENSE", + "package.json" ] export const assetSchema = { @@ -294,6 +297,20 @@ export function getAssetPropertyWithTrace(chainName, baseDenom, property) { return value; } +export function getAssetPropertyWithTraceCustom(chainName, baseDenom, property, types) { + let value = getAssetProperty(chainName, baseDenom, property); + if (value) { return value; } + if (property === "traces") { return; } + let traces = getAssetProperty(chainName, baseDenom, "traces"); + if (!traces) { return; } + if (!types.includes(traces[traces.length - 1].type)) { return; } + let originAsset = { + chainName: traces[traces.length - 1].counterparty.chain_name, + baseDenom: traces[traces.length - 1].counterparty.base_denom + } + return getAssetPropertyWithTraceCustom(originAsset.chainName, originAsset.baseDenom, property, types); +} + export function getAssetPropertyWithTraceIBC(chainName, baseDenom, property) { let value = getAssetProperty(chainName, baseDenom, property); if (!value) { diff --git a/.github/workflows/utility/chain_registry_local.mjs b/.github/workflows/utility/chain_registry_local.mjs index 20233af6bf..95a95c2574 100644 --- a/.github/workflows/utility/chain_registry_local.mjs +++ b/.github/workflows/utility/chain_registry_local.mjs @@ -36,14 +36,17 @@ export const nonChainDirectories = [ "_memo_keys", "_non-cosmos", "_template", + "_scripts", "testnets", ".gitignore", "assetlist.schema.json", "chain.schema.json", "ibc_data.schema.json", "memo_keys.schema.json", + "versions.schema.json", "README.md", - "LICENSE" + "LICENSE", + "package.json" ] export const assetSchema = { @@ -294,6 +297,20 @@ export function getAssetPropertyWithTrace(chainName, baseDenom, property) { return value; } +export function getAssetPropertyWithTraceCustom(chainName, baseDenom, property, types) { + let value = getAssetProperty(chainName, baseDenom, property); + if (value) { return value; } + if (property === "traces") { return; } + let traces = getAssetProperty(chainName, baseDenom, "traces"); + if (!traces) { return; } + if (!types.includes(traces[traces.length - 1].type)) { return; } + let originAsset = { + chainName: traces[traces.length - 1].counterparty.chain_name, + baseDenom: traces[traces.length - 1].counterparty.base_denom + } + return getAssetPropertyWithTraceCustom(originAsset.chainName, originAsset.baseDenom, property, types); +} + export function getAssetPropertyWithTraceIBC(chainName, baseDenom, property) { let value = getAssetProperty(chainName, baseDenom, property); if (!value) { diff --git a/.github/workflows/utility/sync_images.mjs b/.github/workflows/utility/sync_images.mjs index ada5ae8af2..43c36384d4 100644 --- a/.github/workflows/utility/sync_images.mjs +++ b/.github/workflows/utility/sync_images.mjs @@ -129,22 +129,46 @@ function compareImages(imageContainingObject) { let newImageContainingObject = imageContainingObject; if(imageContainingObject.logo_URIs){ if(imageContainingObject.images){ + + //Look for a full match (i.e., png and svg both match) let match = false; imageContainingObject.images.forEach((image) => { - if(imageContainingObject.logo_URIs.png == image.png && - imageContainingObject.logo_URIs.svg == image.svg) { + if ( + imageContainingObject.logo_URIs.png == image.png && + imageContainingObject.logo_URIs.svg == image.svg + ) { match = true; - return newImageContainingObject; + return; } }); - if(!match){ - newImageContainingObject.images.push({ - png: imageContainingObject.logo_URIs.png, - svg: imageContainingObject.logo_URIs.svg - }); - newImageContainingObject.hasUpdated = true; + if (match) { return newImageContainingObject; } + + //Look for a partial match, and update the image object + for (let i = 0; i < imageContainingObject.images.length; i++) { + if ( + imageContainingObject.logo_URIs.png == imageContainingObject.images[i].png || + imageContainingObject.logo_URIs.svg == imageContainingObject.images[i].svg + ) { + newImageContainingObject.images[i] = { + image_sync: imageContainingObject.images[i].image_sync, + png: imageContainingObject.logo_URIs.png || imageContainingObject.images[i].png, + svg: imageContainingObject.logo_URIs.svg || imageContainingObject.images[i].svg, + theme: imageContainingObject.images[i].theme + }; + newImageContainingObject.hasUpdated = true; + return newImageContainingObject; + } + } + + //There was no match, so add logo URI files as a new image + newImageContainingObject.images.push({ + png: imageContainingObject.logo_URIs.png, + svg: imageContainingObject.logo_URIs.svg + }); + newImageContainingObject.hasUpdated = true; + } else { newImageContainingObject.images = [{ png: imageContainingObject.logo_URIs.png, @@ -195,7 +219,10 @@ function getLinkedImages(){ if(images) { let replacementImage; images?.forEach((image) => { - replacementImage = getLinkedImage(image?.image_sync?.chain_name, image?.image_sync?.base_denom); + if (!image?.image_sync) { + return; + } + replacementImage = getLinkedImage(image.image_sync.chain_name, image.image_sync.base_denom); if(replacementImage){ image.png = replacementImage?.png; image.svg = replacementImage?.svg; @@ -216,11 +243,14 @@ function getLinkedImages(){ if(images) { images?.forEach((image) => { let replacementImage; - replacementImage = getLinkedImage(image?.image_sync?.chain_name, image?.image_sync?.base_denom); + if (!image?.image_sync) { + return; + } + replacementImage = getLinkedImage(image.image_sync.chain_name, image.image_sync.base_denom); if(replacementImage){ - image.png = replacementImage?.png; - image.svg = replacementImage?.svg; - image.theme = replacementImage?.theme; + image.png = replacementImage.png; + image.svg = replacementImage.svg; + image.theme = replacementImage.theme; } }); chain_reg.setAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "images", images); @@ -239,6 +269,12 @@ function getLinkedImage(chain_name, base_denom){ if(!images){return;} let image = images[0]; if(image.image_sync){ + if ( + base_denom == image.image_sync.base_denom && + chain_name == image.image_sync.chain_name + ) { + return; + } return getLinkedImage(image.image_sync.chain_name, image.image_sync.base_denom); } else { return image; diff --git a/.github/workflows/utility/validate_data.mjs b/.github/workflows/utility/validate_data.mjs new file mode 100644 index 0000000000..f5cccd4cdd --- /dev/null +++ b/.github/workflows/utility/validate_data.mjs @@ -0,0 +1,161 @@ +// Purpose: +// to validate various data throughout the Chain Registry, prioritizing data that often gets missed by manual review +// e.g., whether fee assets are registered to the chain's assetlist + +// -- THE PLAN -- +// +// read each chain's directory and files +// read chain.json +// read fee_tokens +// check if fee token exists in the assetlist. +// read staking +// chaeck if staking token exists in the assetlist +// + +import * as path from 'path'; +import * as chain_reg from './chain_registry_local.mjs'; + + +const chainIdMap = new Map(); + + +function checkChainIdConflict(chain_name) { + + // Not concerned by conflicts with 'Killed' chains--could be a hard fork + let chain_status = chain_reg.getFileProperty(chain_name, "chain", "status"); + if (!chain_status || chain_status === "killed") { return; } + + let chain_id = chain_reg.getFileProperty(chain_name, "chain", "chain_id"); + if (!chain_id) { return; } // must have a chainId + if (chainIdMap.has(chain_id)) { + let conflict_chain_name = chainIdMap.get(chain_id); + throw new Error(`Duplicate chain ID for ${chain_name} found! Chain ID ${chain_id} is also claimed by ${conflict_chain_name}.`); + } + chainIdMap.set(chain_id, chain_name); + +} + +function checkFeeTokensAreRegistered(chain_name) { + + let fees = chain_reg.getFileProperty(chain_name, "chain", "fees"); + fees?.fee_tokens?.forEach((fee_token) => { + if (!fee_token.denom) { + throw new Error(`One of ${chain_name}'s fee tokens does not have denom specified.`); + } + if (!chain_reg.getAssetProperty(chain_name, fee_token.denom, "base")) { + throw new Error(`Chain ${chain_name} does not have fee token ${fee_token.denom} defined in its Assetlist.`); + } + }); + +} + +function checkStakingTokensAreRegistered(chain_name) { + + let staking = chain_reg.getFileProperty(chain_name, "chain", "staking"); + staking?.staking_tokens?.forEach((staking_token) => { + if (!staking_token.denom) { + throw new Error(`One of ${chain_name}'s staking tokens does not have denom specified.`); + } + if (!chain_reg.getAssetProperty(chain_name, staking_token.denom, "base")) { + throw new Error(`Chain ${chain_name} does not have staking token ${staking_token.denom} defined in its Assetlist.`); + } + }); + +} + +function checkDenomUnits(asset) { + + if (!asset.base) { return; } + let VALID_BASE_UNIT; + let VALID_DISPLAY_UNIT; + asset.denom_units?.forEach((denom_unit) => { + + let denom_and_aliases = []; + denom_and_aliases.push(denom_unit.denom); + denom_unit.aliases?.forEach((alias) => { + if (denom_and_aliases.includes(alias)) { return; } + denom_and_aliases.push(alias); + }); + + //find base unit + if (denom_and_aliases.includes(asset.base)) { + if (denom_unit.exponent !== 0) { + throw new Error(`Base denomination ${asset.base} is not defined as having 0 exponent.`) + } + if (VALID_BASE_UNIT) { + throw new Error(`Base denomination ${asset.base} refers to multiple denom_units.`); + } + VALID_BASE_UNIT = true; + } + + //find display unit + if (asset.display) { + if (denom_and_aliases.includes(asset.display)) { + if (VALID_DISPLAY_UNIT) { + throw new Error(`Display denomination ${asset.display} refers to multiple denom_units.`); + } + VALID_DISPLAY_UNIT = true; + } + } + + //check if IBC hashes contain lowercase letters + denom_and_aliases.forEach((denom) => { + if (!denom.startsWith("ibc/")) { return; } + const substring = denom.substring(4); + if (substring.toUpperCase() !== substring) { + throw new Error(`Denom ${denom} is an IBC hash denomination, yet contains lowercase letters after "ibc/"`); + } + }); + + }); + + if (!VALID_BASE_UNIT) { + throw new Error(`Base denomination ${asset.base} is not defined as a denom_unit.`); + } + if (!VALID_DISPLAY_UNIT) { + throw new Error(`Display denomination ${asset.display} is not defined as a denom_unit.`); + } + +} + + +export function validate_chain_files() { + + //get Chain Names + const chainRegChains = chain_reg.getChains(); + + //iterate each chain + chainRegChains.forEach((chain_name) => { + + //console.log(chain_name); + + //check if chain_id is registered by another chain + checkChainIdConflict(chain_name); + + //check if all fee tokens are registered + checkFeeTokensAreRegistered(chain_name); + + //check if all staking tokens are registered + checkStakingTokensAreRegistered(chain_name); + + //get chain's assets + const chainAssets = chain_reg.getFileProperty(chain_name, "assetlist", "assets"); + + //iterate each asset + chainAssets?.forEach((asset) => { + + //check denom units + checkDenomUnits(asset); + + }); + + + }); + +} + +function main() { + validate_chain_files(); +} + +main(); \ No newline at end of file diff --git a/.github/workflows/validate_data.yml b/.github/workflows/validate_data.yml index 07f2e9cc09..726f83c084 100644 --- a/.github/workflows/validate_data.yml +++ b/.github/workflows/validate_data.yml @@ -1,27 +1,27 @@ on: [pull_request, workflow_dispatch] -name: PR Workflow +name: Data Validation PR Workflow jobs: - jobname: + validate_zone_data: name: Validate Data runs-on: ubuntu-latest + + defaults: + run: + shell: bash + steps: - - name: checkout the repo - uses: actions/checkout@v3 #Checks out the registry; sets up python - - - name: Set up Python - uses: actions/setup-python@v3 + + - name: Checkout repository + uses: actions/checkout@v2 with: - python-version: 3.9 - - - name: Install Python dependencies - run: | - python -m pip install --upgrade pip - cd .github/workflows/utility - - - name: Run Data Validation python script - shell: python - run: | - import sys - sys.path.insert(1, '.github/workflows/utility') - import validate_data - validate_data.runAll() + token: ${{ secrets.GITHUB_TOKEN }} + submodules: true + + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 19.6.0 + + - name: Run code Node JS to Validate Data + working-directory: ./.github/workflows/utility + run: node validate_data.mjs diff --git a/.gitignore b/.gitignore index 8265c3c6e1..250a83911c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ .idea/ .DS_Store -.github/workflows/utility/__pycache__ \ No newline at end of file +.github/workflows/utility/__pycache__ + +node_modules/ \ No newline at end of file diff --git a/README.md b/README.md index 1273da9c06..88fbc8d6f5 100644 --- a/README.md +++ b/README.md @@ -302,7 +302,7 @@ An example assetlist json contains the following structure: "staking" ], "socials": { - "webiste": "https://osmosis.zone", + "website": "https://osmosis.zone", "twitter": "https://twitter.com/osmosiszone" } }, @@ -336,7 +336,7 @@ An example assetlist json contains the following structure: "defi" ], "socials": { - "webiste": "https://ion.wtf", + "website": "https://ion.wtf", "twitter": "https://twitter.com/_IONDAO" } } diff --git a/_IBC/akash-omniflixhub.json b/_IBC/akash-omniflixhub.json new file mode 100644 index 0000000000..7f28d8c8b9 --- /dev/null +++ b/_IBC/akash-omniflixhub.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akash", + "client_id": "07-tendermint-119", + "connection_id": "connection-93" + }, + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-42", + "connection_id": "connection-35" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-61", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-25", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_IBC/archway-bitsong.json b/_IBC/archway-bitsong.json new file mode 100644 index 0000000000..0ee010033e --- /dev/null +++ b/_IBC/archway-bitsong.json @@ -0,0 +1,30 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-92", + "connection_id": "connection-90" + }, + "chain_2": { + "chain_name": "bitsong", + "client_id": "07-tendermint-80", + "connection_id": "connection-55" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-124", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-29", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] +} diff --git a/_IBC/archway-juno.json b/_IBC/archway-juno.json index 34a8fcd309..541f9e9db5 100644 --- a/_IBC/archway-juno.json +++ b/_IBC/archway-juno.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data_schema.json", + "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "archway", "client_id": "07-tendermint-18", diff --git a/_IBC/axelar-bitsong.json b/_IBC/axelar-bitsong.json index de17ea82c5..b5d26518d2 100644 --- a/_IBC/axelar-bitsong.json +++ b/_IBC/axelar-bitsong.json @@ -2,22 +2,22 @@ "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "axelar", - "client_id": "07-tendermint-201", - "connection_id": "connection-182" + "client_id": "07-tendermint-207", + "connection_id": "connection-188" }, "chain_2": { "chain_name": "bitsong", - "client_id": "07-tendermint-79", - "connection_id": "connection-54" + "client_id": "07-tendermint-81", + "connection_id": "connection-56" }, "channels": [ { "chain_1": { - "channel_id": "channel-140", + "channel_id": "channel-145", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-28", + "channel_id": "channel-30", "port_id": "transfer" }, "ordering": "unordered", diff --git a/_IBC/axelar-provenance.json b/_IBC/axelar-provenance.json new file mode 100644 index 0000000000..ea003edf1f --- /dev/null +++ b/_IBC/axelar-provenance.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-175", + "connection_id": "connection-153" + }, + "chain_2": { + "chain_name": "provenance", + "client_id": "07-tendermint-35", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-9", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} \ No newline at end of file diff --git a/_IBC/axelar-shido.json b/_IBC/axelar-shido.json new file mode 100644 index 0000000000..a1afcfdd5e --- /dev/null +++ b/_IBC/axelar-shido.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-210", + "connection_id": "connection-191" + }, + "chain_2": { + "chain_name": "shido", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-148", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } + \ No newline at end of file diff --git a/_IBC/celestia-stargaze.json b/_IBC/celestia-stargaze.json new file mode 100644 index 0000000000..b890c13a09 --- /dev/null +++ b/_IBC/celestia-stargaze.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-86", + "connection_id": "connection-56" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-359", + "connection_id": "connection-296" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-33", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-291", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/cifer-cosmoshub.json b/_IBC/cifer-cosmoshub.json index cb37644f2a..9cb989ebd2 100644 --- a/_IBC/cifer-cosmoshub.json +++ b/_IBC/cifer-cosmoshub.json @@ -2,13 +2,13 @@ "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "cifer", - "client_id": "07-tendermint-1", + "client_id": "07-tendermint-0", "connection_id": "connection-0" }, "chain_2": { "chain_name": "cosmoshub", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" + "client_id": "07-tendermint-1301", + "connection_id": "connection-1035" }, "channels": [ { @@ -17,7 +17,7 @@ "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-0", + "channel_id": "channel-831", "port_id": "transfer" }, "ordering": "unordered", diff --git a/_IBC/cifer-osmosis.json b/_IBC/cifer-osmosis.json index 3ebf521a25..de2be575ad 100644 --- a/_IBC/cifer-osmosis.json +++ b/_IBC/cifer-osmosis.json @@ -3,21 +3,21 @@ "chain_1": { "chain_name": "cifer", "client_id": "07-tendermint-1", - "connection_id": "connection-0" + "connection_id": "connection-1" }, "chain_2": { "chain_name": "osmosis", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" + "client_id": "07-tendermint-3184", + "connection_id": "connection-2646" }, "channels": [ { "chain_1": { - "channel_id": "channel-0", + "channel_id": "channel-1", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-0", + "channel_id": "channel-39205", "port_id": "transfer" }, "ordering": "unordered", diff --git a/_IBC/coreum-sei.json b/_IBC/composable-ethereum.json similarity index 58% rename from _IBC/coreum-sei.json rename to _IBC/composable-ethereum.json index 28fa898edb..541b1e3709 100644 --- a/_IBC/coreum-sei.json +++ b/_IBC/composable-ethereum.json @@ -1,23 +1,23 @@ { "$schema": "../ibc_data.schema.json", "chain_1": { - "chain_name": "coreum", - "client_id": "07-tendermint-41", - "connection_id": "connection-28" + "chain_name": "composable", + "client_id": "08-wasm-159", + "connection_id": "connection-70" }, "chain_2": { - "chain_name": "sei", - "client_id": "07-tendermint-47", - "connection_id": "connection-79" + "chain_name": "ethereum", + "client_id": "07-tendermint-11", + "connection_id": "connection-10" }, "channels": [ { "chain_1": { - "channel_id": "channel-26", + "channel_id": "channel-52", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-47", + "channel_id": "channel-2", "port_id": "transfer" }, "ordering": "unordered", diff --git a/_IBC/conscious-osmosis.json b/_IBC/conscious-osmosis.json new file mode 100644 index 0000000000..09524d6d5c --- /dev/null +++ b/_IBC/conscious-osmosis.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "conscious", + "client_id": "07-tendermint-12", + "connection_id": "connection-9" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3199", + "connection_id": "connection-2656" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-73971", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } \ No newline at end of file diff --git a/_IBC/cosmoshub-oraichain.json b/_IBC/cosmoshub-oraichain.json new file mode 100644 index 0000000000..ca7105f133 --- /dev/null +++ b/_IBC/cosmoshub-oraichain.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-651", + "connection_id": "connection-497" + }, + "chain_2": { + "chain_name": "oraichain", + "client_id": "07-tendermint-47", + "connection_id": "connection-22" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-301", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-15", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "oraidex" + } + } + ] +} diff --git a/_IBC/cosmoshub-stargaze.json b/_IBC/cosmoshub-stargaze.json new file mode 100644 index 0000000000..584e31157e --- /dev/null +++ b/_IBC/cosmoshub-stargaze.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1188", + "connection_id": "connection-918" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-320", + "connection_id": "connection-256" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-730", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-239", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/dhealth-osmosis.json b/_IBC/dhealth-osmosis.json new file mode 100644 index 0000000000..8b10dc7aea --- /dev/null +++ b/_IBC/dhealth-osmosis.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dhealth", + "client_id": "07-tendermint-4", + "connection_id": "connection-9" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3205", + "connection_id": "connection-2662" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-75030", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] +} \ No newline at end of file diff --git a/_IBC/dymension-nim.json b/_IBC/dymension-nim.json new file mode 100644 index 0000000000..d347af6d53 --- /dev/null +++ b/_IBC/dymension-nim.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dymension", + "client_id": "07-tendermint-44", + "connection_id": "connection-34" + }, + "chain_2": { + "chain_name": "nim", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/gravitybridge-secretnetwork.json b/_IBC/gravitybridge-secretnetwork.json index fb7240daca..888f7dffa0 100644 --- a/_IBC/gravitybridge-secretnetwork.json +++ b/_IBC/gravitybridge-secretnetwork.json @@ -22,6 +22,22 @@ }, "ordering": "unordered", "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-150", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-148", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" + }, + "ordering": "unordered", + "version": "ics20-1", "tags": { "status": "live", "preferred": true, @@ -29,4 +45,4 @@ } } ] -} \ No newline at end of file +} diff --git a/_IBC/injective-neutron.json b/_IBC/injective-neutron.json index 7d13fdb1d3..65d0ad0a26 100644 --- a/_IBC/injective-neutron.json +++ b/_IBC/injective-neutron.json @@ -2,7 +2,7 @@ "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "injective", - "client_id": "07-tendermint-223", + "client_id": "07-tendermint-233", "connection_id": "connection-220" }, "chain_2": { diff --git a/_IBC/injective-noble.json b/_IBC/injective-noble.json index 462cf188b7..f4a2cb3658 100644 --- a/_IBC/injective-noble.json +++ b/_IBC/injective-noble.json @@ -2,22 +2,22 @@ "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "injective", - "client_id": "07-tendermint-210", - "connection_id": "connection-193" + "client_id": "07-tendermint-212", + "connection_id": "connection-195" }, "chain_2": { "chain_name": "noble", - "client_id": "07-tendermint-15", - "connection_id": "connection-24" + "client_id": "07-tendermint-57", + "connection_id": "connection-55" }, "channels": [ { "chain_1": { - "channel_id": "channel-146", + "channel_id": "channel-148", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-10", + "channel_id": "channel-31", "port_id": "transfer" }, "ordering": "unordered", diff --git a/_IBC/injective-oraichain.json b/_IBC/injective-oraichain.json new file mode 100644 index 0000000000..3218854c59 --- /dev/null +++ b/_IBC/injective-oraichain.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-211", + "connection_id": "connection-194" + }, + "chain_2": { + "chain_name": "oraichain", + "client_id": "07-tendermint-105", + "connection_id": "connection-82" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-147", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "oraidex" + } + } + ] +} diff --git a/_IBC/kava-onex.json b/_IBC/kava-onex.json new file mode 100644 index 0000000000..0579890b17 --- /dev/null +++ b/_IBC/kava-onex.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-163", + "connection_id": "connection-204" + }, + "chain_2": { + "chain_name": "onex", + "client_id": "07-tendermint-1", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-145", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/migaloo-terra.json b/_IBC/migaloo-terra.json new file mode 100644 index 0000000000..a53a809c10 --- /dev/null +++ b/_IBC/migaloo-terra.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-122", + "connection_id": "connection-92" + }, + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-244", + "connection_id": "connection-151" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-114", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-87", + "port_id": "wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/neutron-osmosis.json b/_IBC/neutron-osmosis.json index d2e0c751cb..757b243472 100644 --- a/_IBC/neutron-osmosis.json +++ b/_IBC/neutron-osmosis.json @@ -26,6 +26,22 @@ "status": "live", "preferred": true } + }, + { + "chain_1": { + "channel_id": "channel-2107", + "port_id": "wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07" + }, + "chain_2": { + "channel_id": "channel-39589", + "port_id": "wasm.osmo1pfeve3esg5rhhkfhlujxtthc25akcf3zpa3t9whghvvp2v5v92ps0z30r6" + }, + "ordering": "unordered", + "version": "astroport-ibc-v1", + "tags": { + "status": "live", + "preferred": true + } } ] } diff --git a/_IBC/neutron-saga.json b/_IBC/neutron-saga.json new file mode 100644 index 0000000000..669115e8fb --- /dev/null +++ b/_IBC/neutron-saga.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-90", + "connection_id": "connection-66" + }, + "chain_2": { + "chain_name": "saga", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2060", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} \ No newline at end of file diff --git a/_IBC/neutron-secretnetwork.json b/_IBC/neutron-secretnetwork.json index 6f80b9c81a..0ace31eb0c 100644 --- a/_IBC/neutron-secretnetwork.json +++ b/_IBC/neutron-secretnetwork.json @@ -26,6 +26,22 @@ "status": "live", "preferred": true } + }, + { + "chain_1": { + "channel_id": "channel-1950", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-151", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } } ] } diff --git a/_IBC/neutron-sei.json b/_IBC/neutron-sei.json index c2d54838ce..c300e2edde 100644 --- a/_IBC/neutron-sei.json +++ b/_IBC/neutron-sei.json @@ -2,22 +2,22 @@ "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "neutron", - "client_id": "07-tendermint-37", - "connection_id": "connection-28" + "client_id": "07-tendermint-89", + "connection_id": "connection-65" }, "chain_2": { "chain_name": "sei", - "client_id": "07-tendermint-27", - "connection_id": "connection-16" + "client_id": "07-tendermint-123", + "connection_id": "connection-157" }, "channels": [ { "chain_1": { - "channel_id": "channel-19", + "channel_id": "channel-2016", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-15", + "channel_id": "channel-66", "port_id": "transfer" }, "ordering": "unordered", @@ -26,6 +26,22 @@ "status": "live", "preferred": true } + }, + { + "chain_1": { + "channel_id": "channel-2110", + "port_id": "wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07" + }, + "chain_2": { + "channel_id": "channel-71", + "port_id": "wasm.sei12fykm2xhg5ces2vmf4q2aem8c958exv3v0wmvrspa8zucrdwjeds2e2ntx" + }, + "ordering": "unordered", + "version": "astroport-ibc-v1", + "tags": { + "status": "live", + "preferred": true + } } ] } \ No newline at end of file diff --git a/_IBC/neutron-terra2.json b/_IBC/neutron-terra2.json index fe98f7d442..212c295576 100644 --- a/_IBC/neutron-terra2.json +++ b/_IBC/neutron-terra2.json @@ -45,12 +45,12 @@ }, { "chain_1": { - "channel_id": "channel-6", + "channel_id": "channel-2112", "port_id": "wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07" }, "chain_2": { - "channel_id": "channel-168", - "port_id": "wasm.terra1fkuhmq52pj08qqffp0elrvmzel8zz857x0pjjuuaar54mgcpe35s9km660" + "channel_id": "channel-396", + "port_id": "wasm.terra1k9j8rcyk87v5jvfla2m9wp200azegjz0eshl7n2pwv852a7ssceqsnn7pq" }, "ordering": "unordered", "version": "astroport-ibc-v1", diff --git a/_IBC/nibiru-osmosis.json b/_IBC/nibiru-osmosis.json index 7e143c3e82..8f2dc1da05 100644 --- a/_IBC/nibiru-osmosis.json +++ b/_IBC/nibiru-osmosis.json @@ -13,7 +13,7 @@ "channels": [ { "chain_1": { - "channel_id": "channel-139", + "channel_id": "channel-0", "port_id": "transfer" }, "chain_2": { diff --git a/_IBC/noble-onex.json b/_IBC/noble-onex.json new file mode 100644 index 0000000000..8e04d75eb5 --- /dev/null +++ b/_IBC/noble-onex.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-98", + "connection_id": "connection-91" + }, + "chain_2": { + "chain_name": "onex", + "client_id": "07-tendermint-6", + "connection_id": "connection-14" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-78", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/noble-oraichain.json b/_IBC/noble-oraichain.json new file mode 100644 index 0000000000..eeaa9b04e2 --- /dev/null +++ b/_IBC/noble-oraichain.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-60", + "connection_id": "connection-58" + }, + "chain_2": { + "chain_name": "oraichain", + "client_id": "07-tendermint-106", + "connection_id": "connection-83" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-147", + "port_id": "wasm.orai195269awwnt5m6c843q6w7hp8rt0k7syfu9de4h0wz384slshuzps8y7ccm" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "oraidex" + } + } + ] +} diff --git a/_IBC/nolus-secretnetwork.json b/_IBC/nolus-secretnetwork.json new file mode 100644 index 0000000000..d793864d3a --- /dev/null +++ b/_IBC/nolus-secretnetwork.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nolus", + "client_id": "07-tendermint-18", + "connection_id": "connection-14" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-201", + "connection_id": "connection-193" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-13995", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/onex-osmosis.json b/_IBC/onex-osmosis.json new file mode 100644 index 0000000000..c0610c7aa6 --- /dev/null +++ b/_IBC/onex-osmosis.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "onex", + "client_id": "07-tendermint-7", + "connection_id": "connection-15" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3202", + "connection_id": "connection-2659" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-74628", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/osmosis-saga.json b/_IBC/osmosis-saga.json new file mode 100644 index 0000000000..a2258ef70a --- /dev/null +++ b/_IBC/osmosis-saga.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3157", + "connection_id": "connection-2626" + }, + "chain_2": { + "chain_name": "saga", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-38946", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} \ No newline at end of file diff --git a/_IBC/osmosis-seda.json b/_IBC/osmosis-seda.json new file mode 100644 index 0000000000..eb3462c9b5 --- /dev/null +++ b/_IBC/osmosis-seda.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3204", + "connection_id": "connection-2661" + }, + "chain_2": { + "chain_name": "seda", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75016", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] +} diff --git a/_IBC/osmosis-shido.json b/_IBC/osmosis-shido.json new file mode 100644 index 0000000000..c4db296f58 --- /dev/null +++ b/_IBC/osmosis-shido.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3198", + "connection_id": "connection-2654" + }, + "chain_2": { + "chain_name": "shido", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-73755", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] + } \ No newline at end of file diff --git a/_IBC/osmosis-stargaze.json b/_IBC/osmosis-stargaze.json index 259c0021b9..8198ec622c 100644 --- a/_IBC/osmosis-stargaze.json +++ b/_IBC/osmosis-stargaze.json @@ -1,32 +1,48 @@ { - "$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" + "$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" + } }, - "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" - } + { + "chain_1": { + "channel_id": "channel-39535", + "port_id": "wasm.osmo10vzkd8pyme67z38epdr3gf027y03dxq7t8vau5fp3r28vxks7mwse02j8f" + }, + "chain_2": { + "channel_id": "channel-309", + "port_id": "wasm.stars1r0a8ygvnjfaegy4n5z9325e0ew9uy2s7rn4vt7qf4ltv49fj4tnsk6pvtv" + }, + "ordering": "unordered", + "version": "ics721-1", + "tags": { + "status": "live", + "preferred": true } - ] - } \ No newline at end of file + } + ] +} diff --git a/_IBC/planq-source.json b/_IBC/planq-source.json index 63dbb7edfa..5227bbb3a9 100644 --- a/_IBC/planq-source.json +++ b/_IBC/planq-source.json @@ -7,7 +7,7 @@ }, "chain_2": { "chain_name": "source", - "client_id": "07-tendermint-5", + "client_id": "07-tendermint-10", "connection_id": "connection-5" }, "channels": [ diff --git a/_IBC/saga-secretnetwork.json b/_IBC/saga-secretnetwork.json new file mode 100644 index 0000000000..ee599136a5 --- /dev/null +++ b/_IBC/saga-secretnetwork.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "saga", + "client_id": "07-tendermint-7", + "connection_id": "connection-7" + }, + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-202", + "connection_id": "connection-194" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-152", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_IBC/saga-stride.json b/_IBC/saga-stride.json new file mode 100644 index 0000000000..1b77dbe6b2 --- /dev/null +++ b/_IBC/saga-stride.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "saga", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-142", + "connection_id": "connection-142" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-213", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_non-cosmos/0l/assetlist.json b/_non-cosmos/0l/assetlist.json new file mode 100644 index 0000000000..97d68ade72 --- /dev/null +++ b/_non-cosmos/0l/assetlist.json @@ -0,0 +1,40 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "0l", + "assets": [ + { + "description": "The native token of 0L Network", + "extended_description": "Libra Coin is a fork from Facebook's Diem (Libra) blockchain that was announced in 2019. Libra Coin operates on its own high-performance Layer 1 blockchain, known as the 0L Network. In October 2021, Libra Coin began mining.\n\n Like Bitcoin, there were no pre-mined coins or dedicated token allocation to any parties; all coins were minted through a mining process. Unlike Bitcoin, which undergoes continuous issuance, Libra Coin has a fixed supply. By December 2023, all the Libra Coin had been issued, establishing a capped supply and making the coin permanently deflationary.\n\n Fiercely independent, the project has a long-term view because it is unburdened by venture capital funding, labs entities, a foundation, and the influence of other blockchain ecosystems. Carpe diem.", + "denom_units": [ + { + "denom": "microlibra", + "exponent": 0 + }, + { + "denom": "libra", + "exponent": 6 + } + ], + "type_asset": "unknown", + "base": "microlibra", + "name": "Libra Coin", + "display": "libra", + "symbol": "LIBRA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg" + } + ], + "coingecko_id": "libra-3", + "socials": { + "website": "https://0l.network/", + "twitter": "https://twitter.com/0LNetwork" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/0l/images/libra.png b/_non-cosmos/0l/images/libra.png new file mode 100644 index 0000000000..ccd63c188a Binary files /dev/null and b/_non-cosmos/0l/images/libra.png differ diff --git a/_non-cosmos/0l/images/libra.svg b/_non-cosmos/0l/images/libra.svg new file mode 100644 index 0000000000..5d0aaf1291 --- /dev/null +++ b/_non-cosmos/0l/images/libra.svg @@ -0,0 +1,4 @@ + + + + diff --git a/_non-cosmos/aptos/assetlist.json b/_non-cosmos/aptos/assetlist.json index ab92102b6d..32b2d562f8 100644 --- a/_non-cosmos/aptos/assetlist.json +++ b/_non-cosmos/aptos/assetlist.json @@ -17,6 +17,7 @@ "exponent": 8 } ], + "type_asset": "unknown", "base": "0x1::aptos_coin::AptosCoin", "name": "Aptos Coin", "display": "APT", diff --git a/_non-cosmos/arbitrum/assetlist.json b/_non-cosmos/arbitrum/assetlist.json index 0e7336ac56..9c755ec986 100644 --- a/_non-cosmos/arbitrum/assetlist.json +++ b/_non-cosmos/arbitrum/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "arbitrum", "assets": [ { - "description": "Native token of Arbitrum", + "description": "The governance token of Arbitrum", "type_asset": "erc20", "address": "0x912CE59144191C1204E64559FE8253a0e49E6548", "denom_units": [ diff --git a/_non-cosmos/avalanche/assetlist.json b/_non-cosmos/avalanche/assetlist.json index f1b812215e..4e96565a41 100644 --- a/_non-cosmos/avalanche/assetlist.json +++ b/_non-cosmos/avalanche/assetlist.json @@ -14,6 +14,7 @@ "exponent": 18 } ], + "type_asset": "evm-base", "base": "wei", "name": "Avalanche", "display": "avax", diff --git a/_non-cosmos/binancesmartchain/assetlist.json b/_non-cosmos/binancesmartchain/assetlist.json index b4e041e17d..90bf468d1a 100644 --- a/_non-cosmos/binancesmartchain/assetlist.json +++ b/_non-cosmos/binancesmartchain/assetlist.json @@ -14,6 +14,7 @@ "exponent": 18 } ], + "type_asset": "evm-base", "base": "wei", "name": "Binance Coin", "display": "bnb", @@ -167,10 +168,12 @@ "symbol": "PURSE", "coingecko_id": "pundi-x-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" }, "images": [ { + "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" } ] @@ -204,4 +207,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/_non-cosmos/bitcoin/assetlist.json b/_non-cosmos/bitcoin/assetlist.json index 41d8ef77fd..c337cb5d4c 100644 --- a/_non-cosmos/bitcoin/assetlist.json +++ b/_non-cosmos/bitcoin/assetlist.json @@ -14,6 +14,7 @@ "exponent": 8 } ], + "type_asset": "bitcoin-like", "base": "sat", "name": "Bitcoin", "display": "btc", @@ -29,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/_non-cosmos/composablepolkadot/assetlist.json b/_non-cosmos/composablepolkadot/assetlist.json index f6d4022b21..7a50dc50c1 100644 --- a/_non-cosmos/composablepolkadot/assetlist.json +++ b/_non-cosmos/composablepolkadot/assetlist.json @@ -13,6 +13,7 @@ "exponent": 10 } ], + "type_asset": "substrate", "base": "79228162514264337593543950342", "name": "Polkadot", "display": "dot", diff --git a/_non-cosmos/ethereum/assetlist.json b/_non-cosmos/ethereum/assetlist.json index f65d516d38..26e7111986 100644 --- a/_non-cosmos/ethereum/assetlist.json +++ b/_non-cosmos/ethereum/assetlist.json @@ -21,6 +21,7 @@ ] } ], + "type_asset": "evm-base", "base": "wei", "name": "Ether", "display": "eth", @@ -507,17 +508,13 @@ "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.svg" } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.svg" } }, { @@ -915,7 +912,7 @@ ] }, { - "description": "", + "description": "Pepe is a community based memecoin with one mission: to make memecoins great again. Made to honor the iconic meme we all know and love, Pepe is here to take reign as the most memeable memecoin in existence, fueled purely by memetic power. Pepe is for the people.", "type_asset": "erc20", "address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", "denom_units": [ @@ -945,6 +942,9 @@ "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" } + ], + "keywords": [ + "meme" ] }, { @@ -1201,6 +1201,187 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg" } ] + }, + { + "description": "BEAST: Battle, Breed, and Customize unique creatures powered by Ethereum & Cosmos", + "extended_description": "A monster breeding & battling game with a twist. Each game interaction burns $BEAST tokens, adding a strategic depth to breeding, battling, and customization. Dive into a world where every move counts!", + "type_asset": "erc20", + "address": "0xA4426666addBE8c4985377d36683D17FB40c31Be", + "denom_units": [ + { + "denom": "0xA4426666addBE8c4985377d36683D17FB40c31Be", + "exponent": 0, + "aliases": [] + }, + { + "denom": "beast", + "exponent": 6 + } + ], + "base": "0xA4426666addBE8c4985377d36683D17FB40c31Be", + "name": "Gelotto BEAST", + "display": "beast", + "symbol": "BEAST", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png" + } + ] + }, + { + "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", + "type_asset": "erc20", + "address": "0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "denom_units": [ + { + "denom": "0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "exponent": 0, + "aliases": [] + }, + { + "denom": "PUNDIX", + "exponent": 18 + } + ], + "base": "0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "name": "Pundi X Token", + "display": "PUNDIX", + "symbol": "PUNDIX", + "coingecko_id": "pundi-x-2", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png" + } + ] + }, + { + "description": "Staked FRAX (sFRAX) is an ERC4626 staking vault that distributes part of the Frax Protocol yield weekly to stakers denominated in FRAX stablecoins.", + "type_asset": "erc20", + "address": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", + "denom_units": [ + { + "denom": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", + "exponent": 0, + "aliases": [ + "sfrax-wei" + ] + }, + { + "denom": "sfrax", + "exponent": 18 + } + ], + "base": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", + "name": "Staked FRAX", + "display": "sfrax", + "symbol": "sFRAX", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" + }, + "provider": "Frax" + } + ], + "coingecko_id": "staked-frax", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.svg" + } + }, + { + "description": "FXS is the value accrual and governance token of the entire Frax ecosystem. 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.", + "type_asset": "erc20", + "address": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", + "denom_units": [ + { + "denom": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", + "exponent": 0, + "aliases": [ + "fxs-wei" + ] + }, + { + "denom": "fxs", + "exponent": 18 + } + ], + "base": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", + "name": "Frax Share", + "display": "fxs", + "symbol": "FXS", + "coingecko_id": "frax-share", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.svg" + } + }, + { + "description": "PAX Gold (PAXG) tokens each represent one fine troy ounce of an LBMA-certified, London Good Delivery physical gold bar, secured in Brink’s vaults.", + "type_asset": "erc20", + "address": "0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "denom_units": [ + { + "denom": "0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "exponent": 0, + "aliases": [ + "paxg-wei" + ] + }, + { + "denom": "paxg", + "exponent": 18 + } + ], + "base": "0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "name": "Paxos Gold", + "display": "paxg", + "symbol": "PAXG", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "comex", + "base_denom": "XAU" + }, + "provider": "Paxos" + } + ], + "coingecko_id": "pax-gold", + "socials": { + "website": "https://www.paxos.com/paxgold/", + "twitter": "https://twitter.com/paxosglobal" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg" + } } ] -} +} \ No newline at end of file diff --git a/_non-cosmos/ethereum/images/beast.png b/_non-cosmos/ethereum/images/beast.png new file mode 100644 index 0000000000..e80d6631f9 Binary files /dev/null and b/_non-cosmos/ethereum/images/beast.png differ diff --git a/_non-cosmos/ethereum/images/frxeth.png b/_non-cosmos/ethereum/images/frxeth.png new file mode 100644 index 0000000000..523e6112ce Binary files /dev/null and b/_non-cosmos/ethereum/images/frxeth.png differ diff --git a/_non-cosmos/ethereum/images/frxeth.svg b/_non-cosmos/ethereum/images/frxeth.svg new file mode 100644 index 0000000000..78bb937e13 --- /dev/null +++ b/_non-cosmos/ethereum/images/frxeth.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/_non-cosmos/ethereum/images/fxs.png b/_non-cosmos/ethereum/images/fxs.png new file mode 100644 index 0000000000..0958a2d0a6 Binary files /dev/null and b/_non-cosmos/ethereum/images/fxs.png differ diff --git a/_non-cosmos/ethereum/images/fxs.svg b/_non-cosmos/ethereum/images/fxs.svg new file mode 100644 index 0000000000..62ac039b10 --- /dev/null +++ b/_non-cosmos/ethereum/images/fxs.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/_non-cosmos/ethereum/images/paxg.png b/_non-cosmos/ethereum/images/paxg.png new file mode 100644 index 0000000000..581744d42f Binary files /dev/null and b/_non-cosmos/ethereum/images/paxg.png differ diff --git a/_non-cosmos/ethereum/images/paxg.svg b/_non-cosmos/ethereum/images/paxg.svg new file mode 100644 index 0000000000..709724fcfc --- /dev/null +++ b/_non-cosmos/ethereum/images/paxg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/_non-cosmos/ethereum/images/pundix.png b/_non-cosmos/ethereum/images/pundix.png new file mode 100644 index 0000000000..ccfa79f18d Binary files /dev/null and b/_non-cosmos/ethereum/images/pundix.png differ diff --git a/_non-cosmos/ethereum/images/sfrax.png b/_non-cosmos/ethereum/images/sfrax.png new file mode 100644 index 0000000000..deb26db787 Binary files /dev/null and b/_non-cosmos/ethereum/images/sfrax.png differ diff --git a/_non-cosmos/ethereum/images/sfrax.svg b/_non-cosmos/ethereum/images/sfrax.svg new file mode 100644 index 0000000000..2444370d29 --- /dev/null +++ b/_non-cosmos/ethereum/images/sfrax.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/_non-cosmos/fantom/assetlist.json b/_non-cosmos/fantom/assetlist.json index 389ef7f5b3..046e91102d 100644 --- a/_non-cosmos/fantom/assetlist.json +++ b/_non-cosmos/fantom/assetlist.json @@ -14,6 +14,7 @@ "exponent": 18 } ], + "type_asset": "evm-base", "base": "wei", "name": "Fantom", "display": "ftm", diff --git a/_non-cosmos/filecoin/assetlist.json b/_non-cosmos/filecoin/assetlist.json index 386a97f37c..2bab98cb56 100644 --- a/_non-cosmos/filecoin/assetlist.json +++ b/_non-cosmos/filecoin/assetlist.json @@ -17,6 +17,7 @@ "exponent": 18 } ], + "type_asset": "evm-base", "base": "attoFIL", "name": "Filecoin", "display": "fil", diff --git a/_non-cosmos/kusama/assetlist.json b/_non-cosmos/kusama/assetlist.json index 42f138eabf..40e0c88377 100644 --- a/_non-cosmos/kusama/assetlist.json +++ b/_non-cosmos/kusama/assetlist.json @@ -32,6 +32,7 @@ "exponent": 12 } ], + "type_asset": "substrate", "base": "Planck", "name": "Kusama", "display": "KSM", diff --git a/_non-cosmos/moonbeam/assetlist.json b/_non-cosmos/moonbeam/assetlist.json index 28d3e3a6be..8c9391d5b9 100644 --- a/_non-cosmos/moonbeam/assetlist.json +++ b/_non-cosmos/moonbeam/assetlist.json @@ -20,6 +20,7 @@ ] } ], + "type_asset": "substrate", "base": "Wei", "name": "Glimmer", "display": "GLMR", diff --git a/_non-cosmos/picasso/assetlist.json b/_non-cosmos/picasso/assetlist.json index 17fa634ffd..a831c89fa6 100644 --- a/_non-cosmos/picasso/assetlist.json +++ b/_non-cosmos/picasso/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "picasso", "assets": [ { - "description": "The native staking and governance token of Picasso.", + "description": "The native staking and governance token of Picasso Kusama.", "denom_units": [ { "denom": "ppica", @@ -14,16 +14,17 @@ "exponent": 12 } ], + "type_asset": "substrate", "base": "ppica", "name": "Pica", "display": "pica", "symbol": "PICA", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" } ] }, @@ -38,6 +39,7 @@ "exponent": 12 } ], + "type_asset": "substrate", "base": "4", "name": "Kusama", "display": "ksm", @@ -76,6 +78,7 @@ "exponent": 10 } ], + "type_asset": "substrate", "base": "79228162514264337593543950342", "name": "Polkadot", "display": "dot", @@ -118,6 +121,7 @@ "exponent": 6 } ], + "type_asset": "substrate", "base": "130", "name": "Statemine", "display": "usdt", @@ -140,6 +144,44 @@ } } ] + }, + { + "denom_units": [ + { + "denom": "2125", + "exponent": 0 + }, + { + "denom": "TNKR", + "exponent": 12 + } + ], + "base": "2125", + "name": "Tinkernet", + "display": "TNKR", + "symbol": "TNKR", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "tinkernet", + "base_denom": "Planck" + }, + "provider": "Tinkernet Parachain" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "tinkernet", + "base_denom": "Planck" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" + } } ] } \ No newline at end of file diff --git a/_non-cosmos/polkadot/assetlist.json b/_non-cosmos/polkadot/assetlist.json index fa7a1a417e..818319de6d 100644 --- a/_non-cosmos/polkadot/assetlist.json +++ b/_non-cosmos/polkadot/assetlist.json @@ -51,6 +51,7 @@ ] } ], + "type_asset": "substrate", "base": "Planck", "name": "Polkadot", "display": "DOT", diff --git a/_non-cosmos/polygon/assetlist.json b/_non-cosmos/polygon/assetlist.json index 4ef842ddec..d0a349371c 100644 --- a/_non-cosmos/polygon/assetlist.json +++ b/_non-cosmos/polygon/assetlist.json @@ -17,6 +17,7 @@ ] } ], + "type_asset": "evm-base", "base": "wei", "name": "Matic", "display": "matic", @@ -313,13 +314,13 @@ }, "images": [ { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" - } + } ] } ] diff --git a/_non-cosmos/solana/assetlist.json b/_non-cosmos/solana/assetlist.json index d6279d52c4..ea1b110edc 100644 --- a/_non-cosmos/solana/assetlist.json +++ b/_non-cosmos/solana/assetlist.json @@ -14,6 +14,7 @@ "exponent": 9 } ], + "type_asset": "svm-base", "base": "Lamport", "name": "Solana", "display": "SOL", @@ -192,9 +193,42 @@ } ], "socials": { - "webiste": "https://www.bskt.fi/", + "website": "https://www.bskt.fi/", "twitter": "https://twitter.com/bsktfi" } + }, + { + "description": "W is the native token powering the Wormhole interoperability platform.", + "extended_description": "Wormhole token (W) serves as the governance token of the Wormhole protocol, empowering token holders to steer the protocol's direction through on-chain governance via a dedicated decentralized autonomous organization (DAO).\n\nWormhole was founded by Jump Crypto, the building arm of Jump Trading Group. Initially launched in 2021, the protocol first debuted as a token bridge, allowing the transfer of tokens between blockchains, most notably between Solana and Ethereum. Wormhole later evolved, with Wormhole V2, to take on a more general approach, turning into an interoperability layer on which chains and decentralized applications could easily build on.\n\nWormhole V2 is a general messaging protocol, enabling different blockchains to communicate with one another. This technology could be used for a variety of use cases, including transfer of tokens between chains, enabling cross-chain governance for protocols that operated across chains as well as transfers of NFTs across chains, which could be utilized for multi-chain games. Wormhole V2 also saw the protocol expand its services to include Osmosis.\n\nTo date, the protocol has processed over $40 billion worth of value transfer across the blockchains supported, and over 1 billion messages sent. It supports over 30 blockchains, including most of the leading networks, and has a thriving ecosystem of over 200 applications built using Wormhole's technology.\n\nIn November 2023, Jump and Wormhole announced their intention to split ways. Following the separation, Wormhole announced that it raised $225 million, valuing the company at $2.5 billion. Investors include Brevan Howard, Coinbase Ventures, Multicoin Capital, Jump Crypto and more.", + "type_asset": "erc20", + "address": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", + "denom_units": [ + { + "denom": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", + "exponent": 0 + }, + { + "denom": "w", + "exponent": 6 + } + ], + "base": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", + "name": "Wormhole Token", + "display": "w", + "symbol": "W", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png" + }, + "coingecko_id": "wormhole", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png" + } + ], + "socials": { + "website": "https://wormhole.com/", + "twitter": "https://twitter.com/wormhole" + } } ] -} +} \ No newline at end of file diff --git a/_non-cosmos/solana/images/w.png b/_non-cosmos/solana/images/w.png new file mode 100644 index 0000000000..04b31ee91b Binary files /dev/null and b/_non-cosmos/solana/images/w.png differ diff --git a/_non-cosmos/statemine/assetlist.json b/_non-cosmos/statemine/assetlist.json index 4bf506f918..f82a174361 100644 --- a/_non-cosmos/statemine/assetlist.json +++ b/_non-cosmos/statemine/assetlist.json @@ -13,6 +13,7 @@ "exponent": 6 } ], + "type_asset": "substrate", "base": "130", "name": "Statemine", "display": "usdt", diff --git a/_non-cosmos/stellar/assetlist.json b/_non-cosmos/stellar/assetlist.json new file mode 100644 index 0000000000..d6799ad5c4 --- /dev/null +++ b/_non-cosmos/stellar/assetlist.json @@ -0,0 +1,40 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "stellar", + "assets": [ + { + "description": "Native token of Stellar network", + "extended_description": "The Stellar network is an open-sourced, public blockchain powered by the Stellar Consensus protocol (SCP), a proof-of-agreement (PoA) consensus mechanism. Thanks to PoA, the Stellar network is faster, cheaper, and far more energy-efficient than many other blockchains.\n\nIts core design makes it easy to create and issue digital assets that enable rapid payments at low-cost around the world. The Stellar network allows you to create your own currency or token within the network and distribute it digitally on a large scale. On the Stellar blockchain, you can create, send, and trade digital representations of almost any form of value such as – US dollars, Argentine pesos, gold, and real estate. Then, the network acts as a bridge that connects financial systems and makes global interoperability a reality.", + "denom_units": [ + { + "denom": "stroop", + "exponent": 0 + }, + { + "denom": "lumen", + "exponent": 7 + } + ], + "type_asset": "evm-base", + "base": "stroop", + "name": "Lumen", + "display": "lumen", + "symbol": "XLM", + "coingecko_id": "stellar", + "socials": { + "website": "https://stellar.org/", + "twitter": "https://twitter.com/StellarOrg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/stellar/images/xlm.png b/_non-cosmos/stellar/images/xlm.png new file mode 100644 index 0000000000..8522e2d0e1 Binary files /dev/null and b/_non-cosmos/stellar/images/xlm.png differ diff --git a/_non-cosmos/stellar/images/xlm.svg b/_non-cosmos/stellar/images/xlm.svg new file mode 100644 index 0000000000..1e3bcb2753 --- /dev/null +++ b/_non-cosmos/stellar/images/xlm.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/_non-cosmos/sui/assetlist.json b/_non-cosmos/sui/assetlist.json index 7e32fc5742..3a30946562 100644 --- a/_non-cosmos/sui/assetlist.json +++ b/_non-cosmos/sui/assetlist.json @@ -17,6 +17,7 @@ "exponent": 9 } ], + "type_asset": "unknown", "base": "0x2::sui::SUI", "name": "Sui", "display": "SUI", diff --git a/_non-cosmos/tinkernet/assetlist.json b/_non-cosmos/tinkernet/assetlist.json new file mode 100644 index 0000000000..6c6a05325c --- /dev/null +++ b/_non-cosmos/tinkernet/assetlist.json @@ -0,0 +1,37 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "tinkernet", + "assets": [ + { + "description": "The native fee, governance and staking token of the Tinkernet Parachain.", + "extended_description": "Tinkernet is a Kusama parachain and the sister-chain of the InvArch Network on Polkadot. Tinkernet is an experimental proving ground where omnichain account & DAO governance protocols are deployed and tested before deploying on the InvArch Network. Protocols on Tinkernet realize features such as multichain multisig accounts & DAO Staking. Unlike a testnet, Tinkernet features real value.", + "socials": { + "website": "https://tinker.network", + "twitter": "https://twitter.com/TinkerParachain" + }, + "denom_units": [ + { + "denom": "Planck", + "exponent": 0 + }, + { + "denom": "TNKR", + "exponent": 12 + } + ], + "base": "Planck", + "name": "Tinkernet", + "display": "TNKR", + "symbol": "TNKR", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" + }, + "coingecko_id": "tinkernet", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/tinkernet/images/tnkr.svg b/_non-cosmos/tinkernet/images/tnkr.svg new file mode 100644 index 0000000000..7403154447 --- /dev/null +++ b/_non-cosmos/tinkernet/images/tnkr.svg @@ -0,0 +1 @@ +Layer 1 diff --git a/_non-cosmos/xrpl/assetlist.json b/_non-cosmos/xrpl/assetlist.json new file mode 100644 index 0000000000..fc1aa0ddb2 --- /dev/null +++ b/_non-cosmos/xrpl/assetlist.json @@ -0,0 +1,40 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "xrpl", + "assets": [ + { + "description": "Native token of Ripple XRP Ledger", + "extended_description": "The XRP Ledger: The Blockchain Built for Business\n\nThe XRP Ledger (XRPL) is a decentralized, public blockchain led by a global community of businesses and developers looking to solve problems and create value.\n\nProven reliable over more than a decade of error-free functioning, the XRPL offers streamlined development, low transaction costs, high performance, and sustainability. So you can build with confidence–and move your most critical projects forward.", + "denom_units": [ + { + "denom": "drop", + "exponent": 0 + }, + { + "denom": "xrp", + "exponent": 6 + } + ], + "type_asset": "unknown", + "base": "drop", + "name": "Ripple", + "display": "xrp", + "symbol": "XRP", + "coingecko_id": "ripple", + "socials": { + "website": "https://xrpl.org/", + "twitter": "https://twitter.com/Ripple" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/xrpl/images/xrp.png b/_non-cosmos/xrpl/images/xrp.png new file mode 100644 index 0000000000..ba2c6c0b90 Binary files /dev/null and b/_non-cosmos/xrpl/images/xrp.png differ diff --git a/_non-cosmos/xrpl/images/xrp.svg b/_non-cosmos/xrpl/images/xrp.svg new file mode 100644 index 0000000000..c60668fe7d --- /dev/null +++ b/_non-cosmos/xrpl/images/xrp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/acrechain/assetlist.json b/acrechain/assetlist.json index 2fef3e7299..7c70f4aed2 100644 --- a/acrechain/assetlist.json +++ b/acrechain/assetlist.json @@ -28,7 +28,11 @@ "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" } - ] + ], + "socials": { + "website": "https://arable.finance/", + "twitter": "https://twitter.com/ArableProtocol" + } }, { "description": "Overcollateralized stable coin for Arable derivatives v1", @@ -56,7 +60,11 @@ "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" } - ] + ], + "socials": { + "website": "https://arable.finance/", + "twitter": "https://twitter.com/ArableProtocol" + } }, { "description": "Ciento Exchange Token", diff --git a/agoric/assetlist.json b/agoric/assetlist.json index 227418a1d6..fdde30ebdc 100644 --- a/agoric/assetlist.json +++ b/agoric/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://agoric.com/", + "website": "https://agoric.com/", "twitter": "https://twitter.com/agoric" } }, diff --git a/agoric/chain.json b/agoric/chain.json index 70bb634c85..82316db668 100644 --- a/agoric/chain.json +++ b/agoric/chain.json @@ -162,7 +162,7 @@ { "address": "https://rpc.agoric.bronbro.io:443", "provider": "Bro_n_Bro" - } + } ], "rest": [ { @@ -196,6 +196,10 @@ "address": "https://agoric-api.w3coins.io", "provider": "w3coins" }, + { + "address": "https://agoric.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, { "address": "https://api.agoric.stakewith.us", "provider": "StakeWithUs" @@ -211,7 +215,7 @@ { "address": "https://lcd.agoric.bronbro.io:443", "provider": "Bro_n_Bro" - } + } ], "grpc": [ { @@ -257,16 +261,10 @@ { "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", @@ -283,6 +281,12 @@ "kind": "Stakeflow", "url": "https://stakeflow.io/agoric", "account_page": "https://stakeflow.io/agoric/accounts/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Agoric", + "tx_page": "https://explorer.stavr.tech/Agoric/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Agoric/account/${accountAddress}" } ], "images": [ @@ -291,4 +295,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.svg" } ] -} +} \ No newline at end of file diff --git a/aioz/assetlist.json b/aioz/assetlist.json index a106e44168..987a22b935 100644 --- a/aioz/assetlist.json +++ b/aioz/assetlist.json @@ -32,7 +32,11 @@ "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" } - ] + ], + "socials": { + "website": "https://aioz.network/", + "twitter": "https://twitter.com/AIOZNetwork" + } } ] } \ No newline at end of file diff --git a/aioz/chain.json b/aioz/chain.json index e190845b9e..8703a03f13 100644 --- a/aioz/chain.json +++ b/aioz/chain.json @@ -200,4 +200,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg" } ] -} +} \ No newline at end of file diff --git a/akash/assetlist.json b/akash/assetlist.json index 236f96322a..fa24004590 100644 --- a/akash/assetlist.json +++ b/akash/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://akash.network/", + "website": "https://akash.network/", "twitter": "https://twitter.com/akashnet_" } }, diff --git a/akash/chain.json b/akash/chain.json index d48354f76c..bdacae4203 100644 --- a/akash/chain.json +++ b/akash/chain.json @@ -30,16 +30,16 @@ }, "codebase": { "git_repo": "https://github.com/akash-network/node/", - "recommended_version": "v0.32.1.", + "recommended_version": "v0.34.1", "compatible_versions": [ - "v0.32.1" + "v0.34.1" ], "binaries": { - "linux/amd64": "https://github.com/akash-network/node/releases/download/v0.32.1/akash_linux_amd64.zip", - "linux/arm64": "https://github.com/akash-network/node/releases/download/v0.32.1/akash_linux_arm64.zip" + "linux/amd64": "https://github.com/akash-network/node/releases/download/v0.34.1/akash_linux_amd64.zip", + "linux/arm64": "https://github.com/akash-network/node/releases/download/v0.34.1/akash_linux_arm64.zip" }, "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.2", + "ibc_go_version": "v4.6.0", "consensus": { "type": "cometbft", "version": "akash-network/cometbft v0.34.27-akash" @@ -133,6 +133,26 @@ "type": "cometbft", "version": "akash-network/cometbft v0.34.27-akash" }, + "next_version_name": "v0.34.0" + }, + { + "name": "v0.34.0", + "recommended_version": "v0.34.1", + "compatible_versions": [ + "v0.34.1" + ], + "proposal": 256, + "height": 16133283, + "binaries": { + "linux/amd64": "https://github.com/akash-network/node/releases/download/v0.34.1/akash_linux_amd64.zip", + "linux/arm64": "https://github.com/akash-network/node/releases/download/v0.34.1/akash_linux_arm64.zip" + }, + "cosmos_sdk_version": "v0.45.16", + "ibc_go_version": "v4.6.0", + "consensus": { + "type": "cometbft", + "version": "akash-network/cometbft v0.34.27-akash" + }, "next_version_name": "" } ] @@ -221,6 +241,11 @@ "id": "9aa4c9097c818871e45aaca4118a9fe5e86c60e2", "address": "peer-akash-01.stakeflow.io:1506", "provider": "Stakeflow" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "akash.declab.pro:26603", + "provider": "Decloud Nodes Lab" } ] }, @@ -289,6 +314,10 @@ { "address": "https://public.stakewolle.com/cosmos/akash/rpc", "provider": "Stakewolle" + }, + { + "address": "https://akash.declab.pro:26601", + "provider": "Decloud Nodes Lab" } ], "rest": [ @@ -355,6 +384,10 @@ { "address": "https://public.stakewolle.com/cosmos/akash/rest", "provider": "Stakewolle" + }, + { + "address": "https://akash.declab.pro:443", + "provider": "Decloud Nodes Lab" } ], "grpc": [ @@ -389,15 +422,19 @@ { "address": "akash-grpc.publicnode.com:443", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://akash.declab.pro:9001", + "provider": "Decloud Nodes Lab" } ] }, "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": "ezstaking", + "url": "https://ezstaking.app/akash", + "tx_page": "https://ezstaking.app/akash/txs/${txHash}", + "account_page": "https://ezstaking.app/akash/account/${accountAddress}" }, { "kind": "mintscan", @@ -410,11 +447,6 @@ "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", @@ -435,6 +467,11 @@ "kind": "ValidatorNode", "url": "https://explorer.validatornode.com/akash-network", "tx_page": "https://explorer.validatornode.com/akash-network/tx/${txHash}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Akash", + "tx_page": "https://explorer.declab.pro/Akash/tx/${txHash}" } ], "images": [ @@ -443,4 +480,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" } ] -} +} \ No newline at end of file diff --git a/akiro/assetlist.json b/akiro/assetlist.json new file mode 100644 index 0000000000..983d35b2b1 --- /dev/null +++ b/akiro/assetlist.json @@ -0,0 +1,34 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "akiro", + "assets": [ + { + "description": "AKIRO meme token", + "denom_units": [ + { + "denom": "uakiro", + "exponent": 0 + }, + { + "denom": "akiro", + "exponent": 6 + } + ], + "base": "uakiro", + "name": "AKIRO", + "display": "akiro", + "symbol": "AKIRO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akiro/images/akiro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akiro/images/akiro.svg" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akiro/images/akiro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akiro/images/akiro.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/akiro/chain.json b/akiro/chain.json new file mode 100644 index 0000000000..e1ef4ed6d3 --- /dev/null +++ b/akiro/chain.json @@ -0,0 +1,123 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "akiro", + "status": "killed", + "network_type": "mainnet", + "pretty_name": "Akiro", + "chain_id": "akiro-1", + "bech32_prefix": "akiro", + "daemon_name": "akirod", + "node_home": "$HOME/.akiro", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uakiro", + "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": "uakiro" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/akiroinu/akiro/", + "recommended_version": "v0.2", + "compatible_versions": [ + "v0.2" + ], + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/akiroinu/akiro/main/mainnet/genesis.json" + }, + "versions": [ + { + "name": "v0.2", + "recommended_version": "v0.2", + "compatible_versions": [ + "v0.2" + ], + "cosmos_sdk_version": "v0.45.4", + "ibc_go_version": "v3.0.0", + "consensus": { + "type": "tendermint", + "version": "v0.34.19" + } + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akiro/images/akiro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akiro/images/akiro.svg" + }, + "peers": { + "seeds": [ + { + "id": "ae1a5b5a94888d18a08fc64a9343b4450cc5cedc", + "address": "213.199.36.82:26656", + "provider": "AKIRO" + } + ], + "persistent_peers": [ + { + "id": "ae1a5b5a94888d18a08fc64a9343b4450cc5cedc", + "address": "213.199.36.82:26656", + "provider": "AKIRO" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "http://213.199.36.82:26657", + "provider": "AKIRO" + }, + { + "address": "https://rpc-akiro.d-stake.xyz", + "provider": "D-Stake" + } + ], + "rest": [ + { + "address": "http://213.199.36.82:1317", + "provider": "AKIRO" + }, + { + "address": "https://api-akiro.d-stake.xyz", + "provider": "D-Stake" + } + ], + "grpc": [ + { + "address": "http://213.199.36.82:9090", + "provider": "AKIRO" + }, + { + "address": "https://grpc-akiro.d-stake.xyz", + "provider": "D-Stake" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://ping.pub/akiro", + "tx_page": "https://ping.pub/akiro/tx/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akiro/images/akiro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akiro/images/akiro.svg" + } + ] +} \ No newline at end of file diff --git a/akiro/images/akiro.png b/akiro/images/akiro.png new file mode 100644 index 0000000000..66d69b00b9 Binary files /dev/null and b/akiro/images/akiro.png differ diff --git a/akiro/images/akiro.svg b/akiro/images/akiro.svg new file mode 100644 index 0000000000..db0734fdb0 --- /dev/null +++ b/akiro/images/akiro.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + diff --git a/althea/assetlist.json b/althea/assetlist.json new file mode 100644 index 0000000000..38919c103a --- /dev/null +++ b/althea/assetlist.json @@ -0,0 +1,33 @@ +{ + "chain_name": "althea", + "assets": [ + { + "description": "Althea native token", + "denom_units": [ + { + "denom": "aalthea", + "exponent": 0 + }, + { + "denom": "althea", + "exponent": 18 + } + ], + "base": "aalthea", + "name": "Althea Token", + "display": "althea", + "symbol": "ALTHEA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.png" + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.svg" + } + ] + } + ] +} diff --git a/althea/chain.json b/althea/chain.json new file mode 100644 index 0000000000..0085beeca7 --- /dev/null +++ b/althea/chain.json @@ -0,0 +1,74 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "althea", + "status": "live", + "network_type": "mainnet", + "website": "https://althea.net/", + "pretty_name": "Althea", + "chain_id": "althea_258432-1", + "bech32_prefix": "althea", + "daemon_name": "althea", + "node_home": "$HOME/.althea", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "aalthea", + "fixed_min_gas_price": 100000000000, + "low_gas_price": 100000000000, + "average_gas_price": 100000000000, + "high_gas_price": 300000000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "aalthea" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.png" + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.svg" + } + ], + "codebase": { + "git_repo": "https://github.com/AltheaFoundation/althea-L1", + "recommended_version": "v1.3.0", + "compatible_versions": ["v1.3.0"], + "binaries": { + "linux/amd64": "https://github.com/AltheaFoundation/althea-L1/releases/download/v1.3.0/althea-linux-amd64" + }, + "versions": [ + { + "name": "v1", + "recommended_version": "v1.3.0", + "compatible_versions": ["v1.3.0"] + } + ], + "genesis": { + "genesis_url": "https://github.com/AltheaFoundation/althea-L1-docs/blob/main/althea-l1-mainnet-genesis.json" + } + }, + "apis": { + "rest": [ + { + "address": "https://nodes.chandrastation.com/api/althea/", + "provider": "Chandra Station" + } + ], + "rpc": [ + { + "address": "https://nodes.chandrastation.com/rpc/althea/", + "provider": "Chandra Station" + } + ] + } +} diff --git a/althea/images/althea.png b/althea/images/althea.png new file mode 100644 index 0000000000..08d5c68b08 Binary files /dev/null and b/althea/images/althea.png differ diff --git a/althea/images/althea.svg b/althea/images/althea.svg new file mode 100644 index 0000000000..a308839be4 --- /dev/null +++ b/althea/images/althea.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/althea/images/temp.txt b/althea/images/temp.txt new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/althea/images/temp.txt @@ -0,0 +1 @@ + diff --git a/andromeda/assetlist.json b/andromeda/assetlist.json index 34e34fd100..69febb9c47 100644 --- a/andromeda/assetlist.json +++ b/andromeda/assetlist.json @@ -29,4 +29,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/andromeda/chain.json b/andromeda/chain.json index 838d3805ef..6543173cf4 100644 --- a/andromeda/chain.json +++ b/andromeda/chain.json @@ -2,6 +2,7 @@ "$schema": "../chain.schema.json", "chain_name": "andromeda", "chain_id": "andromeda-1", + "pre_fork_chain_name": "andromeda1", "pretty_name": "Andromeda", "status": "live", "network_type": "mainnet", @@ -31,12 +32,63 @@ }, "codebase": { "git_repo": "https://github.com/andromedaprotocol/andromedad", + "recommended_version": "v0.1.1-patch", + "compatible_versions": [ + "v0.1.1-patch" + ], + "cosmos_sdk_version": "v0.47.8", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.41.0", + "cosmwasm_enabled": true, "genesis": { - "genesis_url": "https://raw.githubusercontent.com/andromedaprotocol/mainnet/release/genesis.json" - } + "genesis_url": "https://snapshots.lavenderfive.com/genesis/andromeda/genesis.json" + }, + "versions": [ + { + "name": "andromeda-1-v0.1.0", + "height": 1696401, + "tag": "andromeda-1-v0.1.0", + "recommended_version": "andromeda-1-v0.1.0", + "compatible_versions": [ + "andromeda-1-v0.1.0" + ], + "cosmos_sdk_version": "v0.47.5", + "ibc_go_version": "v7.3.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmwasm_version": "v0.41.0", + "cosmwasm_enabled": true, + "next_version_name": "v0.1.1" + }, + { + "name": "v0.1.1", + "proposal": 5, + "height": 2363000, + "tag": "v0.1.1-patch", + "recommended_version": "v0.1.1-patch", + "compatible_versions": [ + "v0.1.1-patch" + ], + "cosmos_sdk_version": "v0.47.8", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.41.0", + "cosmwasm_enabled": true, + "next_version_name": "" + } + ] }, "peers": { - "seeds": [ + "seeds": [ { "id": "df949a46ae6529ae1e09b034b49716468d5cc7e9", "address": "seeds.stakerhouse.com:12156", @@ -49,7 +101,7 @@ }, { "id": "400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc", - "address": "nibiru.rpc.kjnodes.com:13959", + "address": "andromeda.rpc.kjnodes.com:14759", "provider": "kjnodes.com 🦄" } ], @@ -93,6 +145,11 @@ "id": "28876b3094518bef97a1250ef641c26b7d4a658d", "address": "138.201.21.197:39656", "provider": "StakeTown" + }, + { + "id": "1652b0e25ac00834292624db10fef408155686e5", + "address": "peer-comdex.blockval.io:39656", + "provider": "StakeTown" } ] }, @@ -131,7 +188,7 @@ "provider": "StakerHouse" }, { - "address": "https://andromeda-rpc.highstakes.ch:26657", + "address": "https://andromeda-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -139,8 +196,20 @@ "provider": "genznodes" }, { - "address": "https://nibiru.rpc.kjnodes.comv", + "address": "https://andromeda.rpc.kjnodes.com", "provider": "kjnodes.com 🦄" + }, + { + "address": "andromeda-rpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "rpc-andromeda.blockval.io", + "provider": "Blockval" + }, + { + "address": "https://andromeda.rpc.liveraven.net", + "provider": "LiveRaveN" } ], "rest": [ @@ -177,7 +246,7 @@ "provider": "StakerHouse" }, { - "address": "https://andromeda-api.highstakes.ch:1317", + "address": "https://andromeda-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -185,8 +254,20 @@ "provider": "genznodes" }, { - "address": "https://nibiru.api.kjnodes.com", + "address": "https://andromeda.api.kjnodes.com", "provider": "kjnodes.com 🦄" + }, + { + "address": "andromeda-api.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "api-andromeda.blockval.io", + "provider": "Blockval" + }, + { + "address": "https://andromeda.api.liveraven.net", + "provider": "LiveRaveN" } ], "grpc": [ @@ -227,8 +308,20 @@ "provider": "genznodes" }, { - "address": "nibiru.grpc.kjnodes.com:443", + "address": "andromeda.grpc.kjnodes.com:443", "provider": "kjnodes.com 🦄" + }, + { + "address": "andromeda-grpc.noders.services:34090", + "provider": "[NODERS]TEAM" + }, + { + "address": "grpc-andromeda.blockval.io:443", + "provider": "Blockval" + }, + { + "address": "andromeda.grpc.liveraven.net:443", + "provider": "LiveRaveN" } ] }, @@ -265,4 +358,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" } ] -} +} \ No newline at end of file diff --git a/andromeda1/assetlist.json b/andromeda1/assetlist.json new file mode 100644 index 0000000000..69febb9c47 --- /dev/null +++ b/andromeda1/assetlist.json @@ -0,0 +1,32 @@ +{ + "$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" + } + ] + } + ] +} \ No newline at end of file diff --git a/andromeda1/chain.json b/andromeda1/chain.json new file mode 100644 index 0000000000..3ace5d6ae0 --- /dev/null +++ b/andromeda1/chain.json @@ -0,0 +1,268 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "andromeda1", + "chain_id": "andromeda-1", + "pretty_name": "Andromeda", + "status": "killed", + "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": { + "git_repo": "https://github.com/andromedaprotocol/andromedad", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/andromedaprotocol/mainnet/release/genesis.json" + } + }, + "peers": { + "seeds": [ + { + "id": "df949a46ae6529ae1e09b034b49716468d5cc7e9", + "address": "seeds.stakerhouse.com:12156", + "provider": "StakerHouse" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "andromeda-mainnet-peer.autostake.com:27126", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "id": "400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc", + "address": "nibiru.rpc.kjnodes.com:13959", + "provider": "kjnodes.com 🦄" + } + ], + "persistent_peers": [ + { + "id": "17dda7b03ce866dbe36c048282fb742dd895a489", + "address": "95.56.244.244:56659", + "provider": "Abduction" + }, + { + "id": "0f310196e29d1f289966141e22caa72afaea8060", + "address": "seeds.cros-nest.com:46656", + "provider": "Crosnet" + }, + { + "id": "301f9b0011f861693e08163f640c39cebbedd2f0", + "address": "95.56.244.244:56658", + "provider": "Siradi" + }, + { + "id": "26cdc42778d24c8b0b0b68ed07c97685bfd8682f", + "address": "178.162.165.65:26656", + "provider": "Synergy Nodes" + }, + { + "id": "e4c2267b90c7cfbb45090ab7647dc01df97f58f9", + "address": "andromeda-m.peer.stavr.tech:4376", + "provider": "🔥STAVR🔥" + }, + { + "id": "20e1000e88125698264454a884812746c2eb4807", + "address": "seeds.lavenderfive.com:14956", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "andromeda-mainnet-seed.autostake.com:27126", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "id": "28876b3094518bef97a1250ef641c26b7d4a658d", + "address": "138.201.21.197:39656", + "provider": "StakeTown" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.andromeda-1.andromeda.aviaone.com", + "provider": "AVIAONE" + }, + { + "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-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "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", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://andromeda-rpc.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://nibiru.rpc.kjnodes.comv", + "provider": "kjnodes.com 🦄" + } + ], + "rest": [ + { + "address": "https://api.andromeda-1.andromeda.aviaone.com/", + "provider": "AVIAONE" + }, + { + "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-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "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", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://andromeda-api.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://nibiru.api.kjnodes.com", + "provider": "kjnodes.com 🦄" + } + ], + "grpc": [ + { + "address": "andromeda-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://grpc.andromeda-1.andromeda.aviaone.com:9094", + "provider": "AVIAONE" + }, + { + "address": "andromeda.grpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "andromeda-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "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" + }, + { + "address": "nibiru.grpc.kjnodes.com:443", + "provider": "kjnodes.com 🦄" + } + ] + }, + "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}" + }, + { + "kind": "ping.pub", + "url": "https://ping.pub/andromeda", + "tx_page": "https://ping.pub/andromeda/tx/${txHash}" + } + ], + "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" + } + ] +} \ No newline at end of file diff --git a/archway/assetlist.json b/archway/assetlist.json index 688227e205..34114c1cee 100644 --- a/archway/assetlist.json +++ b/archway/assetlist.json @@ -34,7 +34,7 @@ } ], "socials": { - "webiste": "https://archway.io/", + "website": "https://archway.io/", "twitter": "https://twitter.com/archwayHQ" } }, @@ -102,11 +102,11 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png" } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png" } }, { @@ -115,7 +115,9 @@ { "denom": "ibc/1BCF1FCAFE3568E234787EDFDA12460BD8931B17FE6A729DCD60FAD845558DA1", "exponent": 0, - "aliases": ["uvdl"] + "aliases": [ + "uvdl" + ] }, { "denom": "vdl", @@ -155,6 +157,36 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" } ] + }, + { + "description": "Astrovault AXV", + "type_asset": "cw20", + "address": "archway1ecjefhcf8r60wtfnhwefrxhj9caeqa90fj58cqsaafqveawn6cjs5znd2n", + "denom_units": [ + { + "denom": "cw20:archway1ecjefhcf8r60wtfnhwefrxhj9caeqa90fj58cqsaafqveawn6cjs5znd2n", + "exponent": 0 + }, + { + "denom": "AXV", + "exponent": 6 + } + ], + "base": "cw20:archway1ecjefhcf8r60wtfnhwefrxhj9caeqa90fj58cqsaafqveawn6cjs5znd2n", + "name": "Astrovault AXV", + "display": "AXV", + "symbol": "AXV", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/axv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/axv.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/axv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/axv.svg" + } + ], + "coingecko_id": "astrovault" } ] -} +} \ No newline at end of file diff --git a/archway/chain.json b/archway/chain.json index 72e573ca38..5f786e612f 100644 --- a/archway/chain.json +++ b/archway/chain.json @@ -36,24 +36,24 @@ }, "codebase": { "git_repo": "https://github.com/archway-network/archway", - "recommended_version": "v6.0.2", + "recommended_version": "v7.0.0", "compatible_versions": [ - "v6.0.2" + "v7.0.0" ], "binaries": { - "linux/amd64": "https://github.com/archway-network/archway/releases/download/v6.0.2/archwayd_linux_amd64", - "linux/arm64": "https://github.com/archway-network/archway/releases/download/v6.0.2/archwayd_linux_arm64", - "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v6.0.2/archwayd_darwin_amd64", - "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v6.0.2/archwayd_darwin_arm64" + "linux/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.0/archwayd_linux_amd64", + "linux/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.0/archwayd_linux_arm64", + "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.0/archwayd_darwin_amd64", + "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.0/archwayd_darwin_arm64" }, - "cosmos_sdk_version": "v0.45.16", + "cosmos_sdk_version": "v0.47.11", + "ibc_go_version": "v7.4.0", "consensus": { - "type": "tendermint", - "version": "v0.34.27" + "type": "cometbft", + "version": "v0.37.5" }, - "cosmwasm_version": "v0.33.0", + "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.3.1", "genesis": { "genesis_url": "https://github.com/archway-network/networks/raw/main/archway/genesis/genesis.json.gz" }, @@ -133,9 +133,9 @@ }, { "name": "v6.0.0", - "recommended_version": "v6.0.2", + "recommended_version": "v6.0.3", "compatible_versions": [ - "v6.0.2" + "v6.0.3" ], "proposal": 38, "height": 3554500, @@ -146,14 +146,38 @@ "cosmos_sdk_version": "v0.47.10", "cosmwasm_version": "archway-network/archway-wasmd v0.45.0-archway", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.0", + "ibc_go_version": "v7.4.0", "cosmwasm_path": "$HOME/.archway/data/wasm", "binaries": { - "linux/amd64": "https://github.com/archway-network/archway/releases/download/v6.0.2/archwayd_linux_amd64", - "linux/arm64": "https://github.com/archway-network/archway/releases/download/v6.0.2/archwayd_linux_arm64", - "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v6.0.2/archwayd_darwin_amd64", - "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v6.0.2/archwayd_darwin_arm64" + "linux/amd64": "https://github.com/archway-network/archway/releases/download/v6.0.3/archwayd_linux_amd64", + "linux/arm64": "https://github.com/archway-network/archway/releases/download/v6.0.3/archwayd_linux_arm64", + "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v6.0.3/archwayd_darwin_amd64", + "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v6.0.3/archwayd_darwin_arm64" }, + "next_version_name": "v7.0.0" + }, + { + "name": "v7.0.0", + "proposal": 43, + "height": 4473000, + "recommended_version": "v7.0.0", + "compatible_versions": [ + "v7.0.0" + ], + "binaries": { + "linux/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.0/archwayd_linux_amd64", + "linux/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.0/archwayd_linux_arm64", + "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.0/archwayd_darwin_amd64", + "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.0/archwayd_darwin_arm64" + }, + "cosmos_sdk_version": "v0.47.11", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, "next_version_name": "" } ] @@ -363,7 +387,11 @@ { "address": "https://rpc.archway.bronbro.io:443", "provider": "Bro_n_Bro" - } + }, + { + "address": "https://archway-rpc.noders.services", + "provider": "[NODERS]TEAM" + } ], "rest": [ { @@ -465,7 +493,11 @@ { "address": "https://lcd.archway.bronbro.io:443", "provider": "Bro_n_Bro" - } + }, + { + "address": "https://archway-api.noders.services", + "provider": "[NODERS]TEAM" + } ], "grpc": [ { @@ -555,7 +587,11 @@ { "address": "https://grpc.archway.bronbro.io:443", "provider": "Bro_n_Bro" - } + }, + { + "address": "archway-grpc.noders.services:13090", + "provider": "[NODERS]TEAM" + } ] }, "explorers": [ @@ -601,10 +637,10 @@ "tx_page": "https://ping.pub/archway/tx/${txHash}" }, { - "kind": "Big Dipper", - "url": "https://bigdipper.live/archway", - "tx_page": "https://bigdipper.live/archway/transactions/${txHash}", - "account_page": "https://bigdipper.live/archway/accounts/${accountAddress}" + "kind": "ezstaking", + "url": "https://ezstaking.app/archway", + "tx_page": "https://ezstaking.app/archway/txs/${txHash}", + "account_page": "https://ezstaking.app/archway/account/${accountAddress}" } ], "images": [ @@ -613,4 +649,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" } ] -} +} \ No newline at end of file diff --git a/archway/images/axv.png b/archway/images/axv.png new file mode 100644 index 0000000000..561bb4d5e6 Binary files /dev/null and b/archway/images/axv.png differ diff --git a/archway/images/axv.svg b/archway/images/axv.svg new file mode 100644 index 0000000000..7039be027f --- /dev/null +++ b/archway/images/axv.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/arkh/assetlist.json b/arkh/assetlist.json index 4734c47667..bc60b95645 100644 --- a/arkh/assetlist.json +++ b/arkh/assetlist.json @@ -27,7 +27,11 @@ "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" } - ] + ], + "socials": { + "website": "https://arkhadian.io/", + "twitter": "https://twitter.com/ArkhadianSas" + } } ] } \ No newline at end of file diff --git a/arkh/chain.json b/arkh/chain.json index fddae08d05..665c267306 100644 --- a/arkh/chain.json +++ b/arkh/chain.json @@ -70,12 +70,20 @@ { "address": "https://asc-dataseed.arkhadian.com/", "provider": "arkhnetwork" + }, + { + "address": "https://arkh_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ { "address": "https://asc-blockchain-api.arkhadian.com/", "provider": "arkhnetwork" + }, + { + "address": "https://arkh_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -104,6 +112,12 @@ "kind": "NODEXPLORER", "url": "https://explorer.nodexcapital.com/arkhadian", "tx_page": "https://explorer.nodexcapital.com/arkhadian/tx/${txHash}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/arkhadian", + "tx_page": "https://explorer.whenmoonwhenlambo.money/arkhadian/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/arkhadian/account/${accountAddress}" } ], "images": [ diff --git a/assetlist.schema.json b/assetlist.schema.json index 318d80ae18..b2d4736540 100644 --- a/assetlist.schema.json +++ b/assetlist.schema.json @@ -1,7 +1,7 @@ { "$id": "https://osmosis.zone/assetlists.schema.json", "$schema": "https://json-schema.org/draft-07/schema", - "title": "Asset Lists", + "title": "AssetList", "description": "Asset lists are a similar mechanism to allow frontends and other UIs to fetch metadata associated with Cosmos SDK denoms, especially for assets sent over IBC.", "type": "object", "required": [ @@ -57,7 +57,7 @@ }, "type_asset": { "type": "string", - "enum": ["sdk.coin", "cw20", "erc20", "ics20", "snip20", "snip25"], + "enum": ["sdk.coin", "cw20", "erc20", "ics20", "snip20", "snip25", "bitcoin-like", "evm-base", "svm-base", "substrate", "unknown"], "default": "sdk.coin", "description": "[OPTIONAL] The potential options for type of asset. By default, assumes sdk.coin" }, @@ -298,7 +298,7 @@ }, "channel_id": { "type": "string", - "pattern": "^channel-\\d+$", + "pattern": "^channel-(JEnb|\\d+)$", "description": "The counterparty IBC transfer channel(, e.g., 'channel-1')." } }, diff --git a/assetmantle/assetlist.json b/assetmantle/assetlist.json index 3dc4ec62c5..d0d9bea42e 100644 --- a/assetmantle/assetlist.json +++ b/assetmantle/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.assetmantle.one/", + "website": "https://www.assetmantle.one/", "twitter": "https://twitter.com/AssetMantle" } } diff --git a/assetmantle/chain.json b/assetmantle/chain.json index c3a5d0a09e..0bc6abde58 100644 --- a/assetmantle/chain.json +++ b/assetmantle/chain.json @@ -227,10 +227,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/assetmantle", + "tx_page": "https://ezstaking.app/assetmantle/txs/${txHash}", + "account_page": "https://ezstaking.app/assetmantle/account/${accountAddress}" }, { "kind": "mintscan", @@ -258,12 +258,6 @@ "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": [ diff --git a/aura/chain.json b/aura/chain.json index 29b45ef502..5d822e506c 100644 --- a/aura/chain.json +++ b/aura/chain.json @@ -279,6 +279,14 @@ { "address": "https://aura.rpc.srv.stakr.space", "provider": "STAKR.space" + }, + { + "address": "https://aura-rpc.highstakes.ch", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://aura-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -341,6 +349,14 @@ { "address": "https://aura.api.srv.stakr.space", "provider": "STAKR.space" + }, + { + "address": "https://aura-api.highstakes.ch", + "provider": "High Stakes 🇨🇭" + }, + { + "address": "https://aura-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -407,6 +423,10 @@ { "address": "aura.grpc.srv.stakr.space:19090", "provider": "STAKR.space" + }, + { + "address": "aura-grpc.noders.services:17090", + "provider": "[NODERS]TEAM" } ] }, @@ -466,4 +486,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" } ] -} +} \ No newline at end of file diff --git a/axelar/assetlist.json b/axelar/assetlist.json index 02e4f0ee7a..fe8f85f90e 100644 --- a/axelar/assetlist.json +++ b/axelar/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://axelar.network/", + "website": "https://axelar.network/", "twitter": "https://twitter.com/axelarnetwork" } }, @@ -1296,4 +1296,4 @@ } } ] -} +} \ No newline at end of file diff --git a/axelar/chain.json b/axelar/chain.json index ba999146ee..53452ccf97 100644 --- a/axelar/chain.json +++ b/axelar/chain.json @@ -414,6 +414,12 @@ "kind": "Stakeflow", "url": "https://stakeflow.io/axelar", "account_page": "https://stakeflow.io/axelar/accounts/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/axelar", + "tx_page": "https://ezstaking.app/axelar/txs/${txHash}", + "account_page": "https://ezstaking.app/axelar/account/${accountAddress}" } ], "images": [ @@ -422,4 +428,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg" } ] -} +} \ No newline at end of file diff --git a/bandchain/assetlist.json b/bandchain/assetlist.json index 95ebe7a14d..e1cdb1f0bf 100644 --- a/bandchain/assetlist.json +++ b/bandchain/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.bandprotocol.com/", + "website": "https://www.bandprotocol.com/", "twitter": "https://twitter.com/BandProtocol" } } diff --git a/bandchain/chain.json b/bandchain/chain.json index 4b17779b3d..60db8a4b9b 100644 --- a/bandchain/chain.json +++ b/bandchain/chain.json @@ -10,10 +10,14 @@ "node_home": "$HOME/.band", "bech32_prefix": "band", "slip44": 494, + "key_algos": [ + "secp256k1" + ], "fees": { "fee_tokens": [ { "denom": "uband", + "fixed_min_gas_price": 0.0025, "low_gas_price": 0.0025, "average_gas_price": 0.003, "high_gas_price": 0.005 @@ -25,38 +29,65 @@ { "denom": "uband" } - ] + ], + "lock_duration": { + "time": "1814400s" + } }, "codebase": { "git_repo": "https://github.com/bandprotocol/chain", - "recommended_version": "v2.5.3", + "recommended_version": "v2.5.4", "compatible_versions": [ - "v2.5.3" + "v2.5.2", + "v2.5.3", + "v2.5.4" ], + "cosmos_sdk_version": "0.45.16", + "ibc_go_version": "v4.3.1", + "consensus": { + "type": "cometbft", + "version": "v0.34.29" + }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/genesis.json" }, "versions": [ { - "name": "v2.4.1", + "name": "v2_4", + "tag": "v2.4.1", + "proposal": 9, + "height": 11525000, "recommended_version": "v2.4.1", "compatible_versions": [ + "v2.4.0", "v2.4.1" - ] - }, - { - "name": "v2.5.2", - "recommended_version": "v2.5.2", - "compatible_versions": [ - "v2.5.2" - ] - }, - { - "name": "v2.5.3", - "recommended_version": "v2.5.3", + ], + "cosmos_sdk_version": "v0.45.10", + "ibc_go_version": "v3.3.1", + "consensus": { + "type": "tendermint", + "version": "v0.34.22" + }, + "next_version_name": "v2_5" + }, + { + "name": "v2_5", + "tag": "v2.5.4", + "proposal": 11, + "height": 16562500, + "recommended_version": "v2.5.4", "compatible_versions": [ - "v2.5.3" - ] + "v2.5.2", + "v2.5.3", + "v2.5.4" + ], + "cosmos_sdk_version": "0.45.16", + "ibc_go_version": "v4.3.1", + "consensus": { + "type": "cometbft", + "version": "v0.34.29" + }, + "next_version_name": "" } ] }, @@ -172,7 +203,7 @@ "provider": "w3coins" }, { - "address": "https://bandprotocol-rpc.highstakes.ch:26657/", + "address": "https://bandprotocol-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -186,6 +217,10 @@ { "address": "https://rpc.band.bronbro.io/", "provider": "Bro_n_Bro" + }, + { + "address": "https://band-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -222,7 +257,7 @@ "provider": "w3coins" }, { - "address": "https://bandprotocol-api.highstakes.ch:1317/", + "address": "https://bandprotocol-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -236,6 +271,10 @@ { "address": "https://lcd.band.bronbro.io/", "provider": "Bro_n_Bro" + }, + { + "address": "https://band-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -278,6 +317,10 @@ { "address": "grpc.band.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "band-grpc.noders.services:30090", + "provider": "[NODERS]TEAM" } ] }, @@ -314,12 +357,6 @@ "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", @@ -337,4 +374,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg" } ] -} +} \ No newline at end of file diff --git a/beezee/chain.json b/beezee/chain.json index 5f91e4518f..2e4601c305 100644 --- a/beezee/chain.json +++ b/beezee/chain.json @@ -202,6 +202,10 @@ { "address": "https://rpc-2.getbze.com", "provider": "AlphaTeam" + }, + { + "address": "https://beezee_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ @@ -216,6 +220,10 @@ { "address": "https://rest-2.getbze.com", "provider": "AlphaTeam" + }, + { + "address": "https://beezee_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -251,6 +259,12 @@ "url": "https://atomscan.com/beezee", "tx_page": "https://atomscan.com/beezee/transactions/${txHash}", "account_page": "https://atomscan.com/beezee/accounts/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/beezee", + "tx_page": "https://explorer.whenmoonwhenlambo.money/beezee/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/beezee/account/${accountAddress}" } ], "images": [ @@ -259,4 +273,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg" } ] -} +} \ No newline at end of file diff --git a/bitcanna/assetlist.json b/bitcanna/assetlist.json index 7491de20f9..32338a5f4f 100644 --- a/bitcanna/assetlist.json +++ b/bitcanna/assetlist.json @@ -28,7 +28,11 @@ "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" } - ] + ], + "socials": { + "website": "http://www.bitcanna.io/", + "twitter": "https://twitter.com/BitCannaGlobal" + } } ] } \ No newline at end of file diff --git a/bitcanna/chain.json b/bitcanna/chain.json index 014d9af63e..4b559aed84 100644 --- a/bitcanna/chain.json +++ b/bitcanna/chain.json @@ -188,6 +188,16 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "id": "71df77a8f57af72a4d2b4e842c9ac7eaec31cc09", + "address": "mainnet-seed.konsortech.xyz:27156", + "provider": "KonsorTech°" + }, + { + "id": "7546889cad5cb44012a9b190bee9c5a8d92d47cd", + "address": "cottage.sopko.net:31656", + "provider": "🐔 The Chicken Coop 🦝 Homestead" } ], "persistent_peers": [ @@ -277,9 +287,19 @@ "provider": "MaxFoton nodes" }, { - "id": "a70da421632d3dbbb6de3712474bd564ac5653e1", + "id": "f28f565a6514340f2506b8f2b4e1d5322c4a26dd", "address": "p2p.bitcanna.safeblock.space:26656", "provider": "Safe Block" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "bitcanna.rpc.nodeshub.online:13056", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "id": "fe587eb0d37cabb9b8089ec8899cf32ee2870994", + "address": "185.144.99.40:46656", + "provider": "CrypTech" } ] }, @@ -338,7 +358,7 @@ "provider": "Hexnodes" }, { - "address": "http://rpc.bitcanna.citizencosmos.space/", + "address": "https://rpc.bitcanna.citizenweb3.com:443", "provider": "Citizen Web3" }, { @@ -388,6 +408,22 @@ { "address": "https://bitcanna-rpc.publicnode.com:443", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rpc.bcna.sopko.net:443", + "provider": "🐔 The Chicken Coop 🦝 Homestead" + }, + { + "address": "https://bitcanna_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://bitcanna.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "address": "https://rpc-bitcanna.cryptech.com.ua", + "provider": "CrypTech" } ], "grpc": [ @@ -450,6 +486,14 @@ { "address": "grpc.bitcanna.safeblock.space:9090", "provider": "Safe Block" + }, + { + "address": "https://bitcanna.grpc.nodeshub.online", + "provider": "Nodes Hub" + }, + { + "address": "https://grpc-bitcanna.cryptech.com.ua", + "provider": "CrypTech" } ], "rest": [ @@ -552,13 +596,25 @@ { "address": "https://bitcanna-rest.publicnode.com", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://bitcanna_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://bitcanna.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "address": "https://api-bitcanna.cryptech.com.ua", + "provider": "CrypTech" } ] }, "explorers": [ { - "kind": "EZStaking Tools", - "url": "https://app.ezstaking.io/bitcanna", + "kind": "ezstaking", + "url": "https://ezstaking.app/bitcanna", "tx_page": "https://ezstaking.tools/bitcanna/txs/${txHash}", "account_page": "https://ezstaking.tools/bitcanna/account/${accountAddress}" }, @@ -617,6 +673,24 @@ "url": "https://explorer.safeblock.space/bitcanna", "tx_page": "https://explorer.safeblock.space/bitcanna/tx/${txHash}", "account_page": "https://explorer.safeblock.space/bitcanna/account/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/bitcanna", + "tx_page": "https://explorer.whenmoonwhenlambo.money/bitcanna/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/bitcanna/account/${accountAddress}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/bitcanna/", + "tx_page": "https://explorer.nodeshub.online/bitcanna/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/bitcanna/accounts/${accountAddress}" + }, + { + "kind": "CrypTech Explorer", + "url": "https://explorers.cryptech.com.ua/bitcanna", + "tx_page": "https://explorers.cryptech.com.ua/bitcanna/txs/${txHash}", + "account_page": "https://explorers.cryptech.com.ua/bitcanna/account/${accountAddress}" } ], "images": [ @@ -625,4 +699,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg" } ] -} +} \ No newline at end of file diff --git a/bitsong/assetlist.json b/bitsong/assetlist.json index d4de66a8b9..2891062448 100644 --- a/bitsong/assetlist.json +++ b/bitsong/assetlist.json @@ -31,7 +31,7 @@ } ], "socials": { - "webiste": "https://bitsong.io/", + "website": "https://bitsong.io/", "twitter": "https://twitter.com/BitSongOfficial" } }, @@ -404,4 +404,4 @@ "symbol": "LDON" } ] -} +} \ No newline at end of file diff --git a/bitsong/chain.json b/bitsong/chain.json index 9880a1ba5f..f630000ee1 100644 --- a/bitsong/chain.json +++ b/bitsong/chain.json @@ -120,6 +120,11 @@ "id": "2cd6bb75fc9279c62c0ef3af82fbe08632743472", "address": "bitsong-peer.panthea.eu:31656", "provider": "Panthea EU" + }, + { + "id": "3ddd0edc57217161fbd5dee9bb40b506e7089d00", + "address": "167.114.159.157:36656", + "provider": "MathNodes" } ] }, @@ -172,6 +177,14 @@ { "address": "https://bitsong-rpc.panthea.eu", "provider": "Panthea EU" + }, + { + "address": "https://rpc.bitsong.mathnodes.com", + "provider": "MathNodes" + }, + { + "address": "https://bitsong-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -218,6 +231,18 @@ { "address": "https://bitsong-api.panthea.eu", "provider": "Panthea EU" + }, + { + "address": "https://api.bitsong.mathnodes.com", + "provider": "MathNodes" + }, + { + "address": "https://bitsong-api.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://bitsong.api.m.stavr.tech", + "provider": "🔥STAVR🔥" } ], "grpc": [ @@ -240,15 +265,23 @@ { "address": "bitsong-grpc.panthea.eu:16750", "provider": "Panthea EU" + }, + { + "address": "grpc.bitsong.mathnodes.com:9092", + "provider": "MathNodes" + }, + { + "address": "bitsong-grpc.noders.services:20090", + "provider": "[NODERS]TEAM" } ] }, "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": "ezstaking", + "url": "https://ezstaking.app/bitsong", + "tx_page": "https://ezstaking.app/bitsong/txs/${txHash}", + "account_page": "https://ezstaking.app/bitsong/account/${accountAddress}" }, { "kind": "ping.pub", @@ -261,12 +294,6 @@ "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", @@ -278,6 +305,12 @@ "url": "https://explorer.safeblok.space/bitsong", "tx_page": "https://explorer.safeblock.space/bitsong/tx/${txHash}", "account_page": "https://explorer.safeblock.space/bitsong/account/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Bitsong", + "tx_page": "https://explorer.stavr.tech/Bitsong/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Bitsong/account/${accountAddress}" } ], "images": [ @@ -286,4 +319,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg" } ] -} +} \ No newline at end of file diff --git a/bluzelle/assetlist.json b/bluzelle/assetlist.json index aaf923530e..f925451667 100644 --- a/bluzelle/assetlist.json +++ b/bluzelle/assetlist.json @@ -35,7 +35,11 @@ "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" } - ] + ], + "socials": { + "website": "http://bluzelle.com/", + "twitter": "https://twitter.com/BluzelleHQ" + } }, { "description": "The ELT token of Bluzelle's Gamma 4 Gaming Ecosystem", diff --git a/canto/assetlist.json b/canto/assetlist.json index 5c7ff6d379..0c7e97d067 100644 --- a/canto/assetlist.json +++ b/canto/assetlist.json @@ -28,7 +28,11 @@ "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" } - ] + ], + "socials": { + "website": "https://canto.io/", + "twitter": "https://twitter.com/CantoPublic" + } }, { "description": "Tether USDt on Canto", diff --git a/canto/chain.json b/canto/chain.json index 50e1dddaae..766a9b2a1e 100644 --- a/canto/chain.json +++ b/canto/chain.json @@ -127,6 +127,10 @@ { "address": "https://canto-mainnet-rpc.autostake.com:443", "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc-canto.kewrnode.com", + "provider": "Kewr Node" } ], "rest": [ @@ -145,6 +149,10 @@ { "address": "https://canto-mainnet-lcd.autostake.com:443", "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rest-canto.kewrnode.com", + "provider": "Kewr Node" } ], "grpc": [ @@ -222,6 +230,18 @@ "kind": "TC Network", "url": "https://explorer.tcnetwork.io/canto", "tx_page": "https://explorer.tcnetwork.io/canto/transaction/${txHash}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/canto", + "tx_page": "https://ezstaking.app/canto/txs/${txHash}", + "account_page": "https://ezstaking.app/canto/account/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Canto-Mainnet", + "tx_page": "https://explorer.stavr.tech/Canto-Mainnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Canto-Mainnet/account/${accountAddress}" } ], "images": [ @@ -230,4 +250,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg" } ] -} +} \ No newline at end of file diff --git a/carbon/assetlist.json b/carbon/assetlist.json index 5789393c8f..4f35e02d3c 100644 --- a/carbon/assetlist.json +++ b/carbon/assetlist.json @@ -464,7 +464,7 @@ { "type": "ibc", "counterparty": { - "chain_name": "osmosis", + "chain_name": "osmosis", "base_denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", "channel_id": "channel-188" }, diff --git a/carbon/chain.json b/carbon/chain.json index 8e83be6898..b0fa852bf8 100644 --- a/carbon/chain.json +++ b/carbon/chain.json @@ -646,4 +646,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg" } ] -} +} \ No newline at end of file diff --git a/celestia/assetlist.json b/celestia/assetlist.json index c0db877fd3..f832b662d4 100644 --- a/celestia/assetlist.json +++ b/celestia/assetlist.json @@ -3,7 +3,8 @@ "chain_name": "celestia", "assets": [ { - "description": "", + "description": "The native token of the Celestia blockchain.", + "extended_description": "Celestia is a modular data availability network. It simplifies the process of launching blockchains, making blockchain technology more accessible and user-friendly. Unlike traditional blockchains that handle multiple functions, Celestia specializes in specific roles, which leads to enhanced scalability, flexibility, and interoperability. This specialization enables developers to create blockchain applications for mass adoption​.", "denom_units": [ { "denom": "utia", @@ -25,12 +26,12 @@ }, "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" + "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" } ], "socials": { - "webiste": "https://celestia.org/", + "website": "https://celestia.org/", "twitter": "https://twitter.com/CelestiaOrg" } } diff --git a/celestia/chain.json b/celestia/chain.json index 59a790ee9e..89b5d8f7fd 100644 --- a/celestia/chain.json +++ b/celestia/chain.json @@ -9,7 +9,9 @@ "bech32_prefix": "celestia", "daemon_name": "celestia-appd", "node_home": "$HOME/.celestia-app", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -31,16 +33,37 @@ }, "codebase": { "git_repo": "https://github.com/celestiaorg/celestia-app", - "recommended_version": "v1.3.0", - "compatible_versions": ["v1.3.0"], + "recommended_version": "v1.7.0", + "compatible_versions": [ + "v1.3.0", + "v1.6.0", + "v1.7.0" + ], + "cosmos_sdk_version": "v0.46.16", + "ibc_go_version": "v6.2.1", + "consensus": { + "type": "tendermint", + "version": "celestiaorg/celestia-core v1.35.0-tm-v0.34.29" + }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/celestiaorg/networks/master/celestia/genesis.json" }, "versions": [ { "name": "v1.3.0", - "recommended_version": "v1.3.0", - "compatible_versions": ["v1.3.0"] + "recommended_version": "v1.7.0", + "compatible_versions": [ + "v1.3.0", + "v1.6.0", + "v1.7.0" + ], + "cosmos_sdk_version": "v0.46.16", + "ibc_go_version": "v6.2.1", + "consensus": { + "type": "tendermint", + "version": "celestiaorg/celestia-core v1.35.0-tm-v0.34.29" + }, + "next_version_name": "" } ] }, @@ -76,7 +99,6 @@ "address": "seed-celestia-01.stakeflow.io:15007", "provider": "Stakeflow" }, - { "id": "c809ca6486cd54501ce5291714c892f5dc9cfa93", "address": "celestia.seeds.validao.xyz:36656", @@ -139,7 +161,7 @@ "address": "65.108.226.26:29656", "provider": "[NODERS]TEAM" }, - { + { "id": "c48d92566837d95f1eeae5815ac7e70fb80416f7", "address": "74.208.94.42:26656", "provider": "Cumulo" @@ -248,6 +270,14 @@ { "address": "https://rpc.celestia-app.bronbro.io", "provider": "Bro_n_Bro" + }, + { + "address": "https://celestia-rpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc.celestia.citizenweb3.com", + "provider": "Citizen Web3" } ], "rest": [ @@ -327,7 +357,7 @@ "address": "https://api-celestia-full.avril14th.org", "provider": "Avril 14th" }, - { + { "address": "https://celestia.api.cumulo.org.es", "provider": "Cumulo" }, @@ -338,6 +368,10 @@ { "address": "https://lcd.celestia-app.bronbro.io", "provider": "Bro_n_Bro" + }, + { + "address": "https://celestia-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -412,6 +446,10 @@ { "address": "grpc.celestia-app.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "celestia-grpc.noders.services:11090", + "provider": "[NODERS]TEAM" } ] }, @@ -450,6 +488,12 @@ "url": "https://explorer.theamsolutions.info/celestia-main", "tx_page": "https://explorer.theamsolutions.info/celestia-main/transaction/${txHash}", "account_page": "https://explorer.theamsolutions.info/celestia-main/account/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/celestia", + "tx_page": "https://ezstaking.app/celestia/txs/${txHash}", + "account_page": "https://ezstaking.app/celestia/account/${accountAddress}" } ], "images": [ @@ -458,4 +502,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" } ] -} +} \ No newline at end of file diff --git a/chain.schema.json b/chain.schema.json index e2640c1955..03b719f6dc 100644 --- a/chain.schema.json +++ b/chain.schema.json @@ -1,8 +1,8 @@ { "$id": "https://sikka.tech/chain.schema.json", "$schema": "https://json-schema.org/draft-07/schema", - "title": "Cosmos Chain", - "description": "Cosmos Chain.json is a metadata file that contains information about a cosmos sdk based chain.", + "title": "Chain", + "description": "Chain.json is a metadata file that contains information about a blockchain.", "type": "object", "required": [ "chain_name", diff --git a/chain4energy/assetlist.json b/chain4energy/assetlist.json index 012e2dd2d7..460a1310df 100644 --- a/chain4energy/assetlist.json +++ b/chain4energy/assetlist.json @@ -28,7 +28,7 @@ } ], "socials": { - "webiste": "https://c4e.io/", + "website": "https://c4e.io/", "twitter": "https://twitter.com/Chain4Energy" } } diff --git a/chain4energy/chain.json b/chain4energy/chain.json index a43d3ea9c8..9e8e52d04f 100644 --- a/chain4energy/chain.json +++ b/chain4energy/chain.json @@ -182,6 +182,11 @@ "address": "seed-m.c4e.apeironnodes.com:41003", "provider": "Apeiron Nodes" }, + { + "id": "edca3b826d61d1e5e7d3dc173954de1324f2e512", + "address": "seed-m.c4e.apeironnodes.com:27003", + "provider": "Apeiron Nodes" + }, { "id": "30e98bbcf5bb29ed4e4ff685fa8fa84fa0ddff51", "address": "tenderseed.ccvalidators.com:26008", @@ -189,7 +194,7 @@ }, { "id": "54515079bae4cadae2f9b511cffeb9447d4bc98d", - "address": "c4e.seed.bccnodes.com:27656", + "address": "c4e.seed.bccnodes.com:30656", "provider": "BccNodes" }, { @@ -343,6 +348,11 @@ "id": "2e08beed75525c2d583e6413fa5f090801965aba", "address": "c4e.doubletop:30655", "provider": "DOUBLETOP" + }, + { + "id": "15ea07bf6211f708eb2966b6c66e3aaa45834137", + "address": "185.144.99.37:16656", + "provider": "CrypTech" } ] }, @@ -356,6 +366,10 @@ "address": "https://rpc.c4e.nodestake.top", "provider": "NodeStake" }, + { + "address": "https://c4e.rpc.bccnodes.com", + "provider": "BccNodes" + }, { "address": "https://chain4energy-mainnet-rpc.autostake.com:443", "provider": "AutoStake 🛡️ Slash Protected" @@ -449,8 +463,12 @@ "provider": "Validatus" }, { - "address": "http://rpc-m.c4e.apeironnodes.com:41001", + "address": "https://rpc-m-c4e.apeironnodes.com:443", "provider": "Apeiron Nodes" + }, + { + "address": "http://rpc-c4e.cryptech.com.ua:443", + "provider": "Cryptech" } ], "rest": [ @@ -462,6 +480,10 @@ "address": "https://api.c4e.nodestake.top", "provider": "NodeStake" }, + { + "address": "https://c4e.lcd.bccnodes.com", + "provider": "BccNodes" + }, { "address": "https://chain4energy-mainnet-lcd.autostake.com:443", "provider": "AutoStake 🛡️ Slash Protected" @@ -541,6 +563,14 @@ { "address": "https://api.c4e.validatus.com:443", "provider": "Validatus" + }, + { + "address": "https://api-c4e.cryptech.com.ua:443", + "provider": "CrypTech" + }, + { + "address": "https://lcd-m-c4e.apeironnodes.com", + "provider": "Apeiron Nodes" } ], "grpc": [ @@ -548,6 +578,10 @@ "address": "grpc.c4e.nodestake.top:443", "provider": "NodeStake" }, + { + "address": "c4e.grpc.bccnodes.com:443", + "provider": "BccNodes" + }, { "address": "chain4energy-mainnet-grpc.autostake.com:443", "provider": "AutoStake 🛡️ Slash Protected" @@ -631,6 +665,10 @@ { "address": "https://grpc.c4e.validatus.com:443", "provider": "Validatus" + }, + { + "address": "https://grpc-c4e.cryptech.com.ua:443", + "provider": "Cryptech" } ] }, @@ -695,6 +733,11 @@ "kind": "ScanRun", "url": "https://scanrun.io/c4e", "tx_page": "https://scanrun.io/c4e/transactions/${txHash}" + }, + { + "kind": "Cryptech", + "url": "https://explorers.cryptech.com.ua/chain4energy", + "tx_page": "https://explorers.cryptech.com.ua/chain4energy/tx/${txHash}" } ], "images": [ @@ -702,4 +745,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" } ] -} +} \ No newline at end of file diff --git a/cheqd/chain.json b/cheqd/chain.json index c8bd05d799..0af5626d6c 100644 --- a/cheqd/chain.json +++ b/cheqd/chain.json @@ -30,24 +30,22 @@ }, "codebase": { "git_repo": "https://github.com/cheqd/cheqd-node", - "recommended_version": "v1.4.4", + "recommended_version": "v2.0.1", "compatible_versions": [ - "v1.2.5", - "v1.3.0", - "v1.4.0", - "v1.4.4" + "v2.0.1" ], "binaries": { - "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.4/cheqd-noded-1.4.4-linux-amd64.tar.gz", - "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.4/cheqd-noded-1.4.4-linux-arm64.tar.gz", - "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.4/cheqd-noded-1.4.4-darwin-amd64.tar.gz", - "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.4/cheqd-noded-1.4.4-darwin-arm64.tar.gz" + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-linux-arm64.tar.gz", + "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-darwin-amd64.tar.gz", + "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-darwin-arm64.tar.gz" }, - "cosmos_sdk_version": "0.46.10", + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.47.10-height-mismatch", "consensus": { - "type": "tendermint", - "version": "0.34.26" + "type": "cometbft", + "version": "0.37.5" }, + "ibc_go_version": "v7.4.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/mainnet/genesis.json" }, @@ -71,7 +69,28 @@ "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-arm64.tar.gz", "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-amd64.tar.gz", "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-arm64.tar.gz" - } + }, + "next_version_name": "v2" + }, + { + "name": "v2", + "recommended_version": "v2.0.1", + "compatible_versions": [ + "v2.0.1" + ], + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.47.10-height-mismatch", + "consensus": { + "type": "cometbft", + "version": "0.37.5" + }, + "ibc_go_version": "v7.4.0", + "binaries": { + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-linux-arm64.tar.gz", + "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-darwin-amd64.tar.gz", + "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-darwin-arm64.tar.gz" + }, + "next_version_name": "" } ] }, @@ -286,10 +305,10 @@ "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": "ezstaking", + "url": "https://ezstaking.app/cheqd", + "tx_page": "https://ezstaking.app/cheqd/txs/${txHash}", + "account_page": "https://ezstaking.app/cheqd/account/${accountAddress}" }, { "kind": "ping.pub", @@ -312,4 +331,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg" } ] -} +} \ No newline at end of file diff --git a/chihuahua/assetlist.json b/chihuahua/assetlist.json index 25e53952e2..5bb4463a0f 100644 --- a/chihuahua/assetlist.json +++ b/chihuahua/assetlist.json @@ -206,8 +206,34 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png" } ] + }, + { + "description": "BackBone Labs Liquid Staked HUAHUA", + "denom_units": [ + { + "denom": "cw20:chihuahua1jz5n4aynhpxx7clf2m8hrv9dp5nz83k67fgaxhy4p9dfwl6zssrq3ymr6w", + "exponent": 0 + }, + { + "denom": "bHUAHUA", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "chihuahua1jz5n4aynhpxx7clf2m8hrv9dp5nz83k67fgaxhy4p9dfwl6zssrq3ymr6w", + "base": "cw20:chihuahua1jz5n4aynhpxx7clf2m8hrv9dp5nz83k67fgaxhy4p9dfwl6zssrq3ymr6w", + "name": "BackBone Labs Liquid Staked HUAHUA", + "display": "bHUAHUA", + "symbol": "bHUAHUA", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bhuahua.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bhuahua.png" + }, + "coingecko_id": "backbone-labs-staked-huahua" } ] -} - - +} \ No newline at end of file diff --git a/chihuahua/chain.json b/chihuahua/chain.json index 080d7f90d8..5881491db3 100644 --- a/chihuahua/chain.json +++ b/chihuahua/chain.json @@ -197,6 +197,11 @@ "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", "address": "chihuahua-mainnet-peer.autostake.com:27186", "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "chihuahua.rpc.nodeshub.online:12956", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -253,6 +258,10 @@ { "address": "https://chihuahua-rpc.ibs.team", "provider": "Inter Blockchain Services" + }, + { + "address": "https://chihuahua.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "rest": [ @@ -303,6 +312,10 @@ { "address": "https://chihuahua-api.ibs.team", "provider": "Inter Blockchain Services" + }, + { + "address": "https://chihuahua.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ @@ -337,6 +350,10 @@ { "address": "grpc.chihuahua.validatus.com:443", "provider": "Validatus" + }, + { + "address": "chihuahua.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, @@ -362,6 +379,18 @@ "url": "https://atomscan.com/chihuahua", "tx_page": "https://atomscan.com/chihuahua/transactions/${txHash}", "account_page": "https://atomscan.com/chihuahua/accounts/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/chihuahua", + "tx_page": "https://ezstaking.app/chihuahua/txs/${txHash}", + "account_page": "https://ezstaking.app/chihuahua/account/${accountAddress}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/chihuahua/", + "tx_page": "https://explorer.nodeshub.online/chihuahua/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/chihuahua/accounts/${accountAddress}" } ], "images": [ @@ -370,4 +399,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg" } ] -} +} \ No newline at end of file diff --git a/chihuahua/images/bhuahua.png b/chihuahua/images/bhuahua.png new file mode 100644 index 0000000000..7eaa76e16c Binary files /dev/null and b/chihuahua/images/bhuahua.png differ diff --git a/chimba/chain.json b/chimba/chain.json index a9a7d43e2f..52cbaf4e66 100644 --- a/chimba/chain.json +++ b/chimba/chain.json @@ -23,7 +23,7 @@ "staking": { "staking_tokens": [ { - "denom": "chimba" + "denom": "ucmba" } ] }, diff --git a/cifer/assetlist.json b/cifer/assetlist.json index 82642b7443..3ae832311b 100644 --- a/cifer/assetlist.json +++ b/cifer/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "cifer", "assets": [ { - "description": "Decentralized Federated Learning", + "description": "Decentralized Machine Learning", "denom_units": [ { "denom": "ucif", @@ -28,7 +28,11 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" } - ] + ], + "socials": { + "website": "http://cifer.ai/", + "twitter": "https://twitter.com/cifer_ai" + } } ] } \ No newline at end of file diff --git a/cifer/chain.json b/cifer/chain.json index bf095e1ca6..ef90b0e8bf 100644 --- a/cifer/chain.json +++ b/cifer/chain.json @@ -5,10 +5,11 @@ "network_type": "mainnet", "website": "https://cifer.ai/", "pretty_name": "Cifer", - "chain_id": "cifer", + "chain_id": "cifer-2", "bech32_prefix": "cife", "daemon_name": "ciferd", "node_home": "$HOME/.ciferd", + "slip44": 118, "fees": { "fee_tokens": [ { @@ -29,19 +30,19 @@ }, "codebase": { "git_repo": "https://github.com/cifer-ai/cifer", - "recommended_version": "v1.0.0", + "recommended_version": "v2.0.0", "compatible_versions": [ - "v1.0.0" + "v2.0.0" ], "genesis": { "genesis_url": "https://rpcmainnet.cifer.ai/genesis" }, "versions": [ { - "name": "v1.0.0", - "recommended_version": "v1.0.0", + "name": "v2.0.0", + "recommended_version": "v2.0.0", "compatible_versions": [ - "v1.0.0" + "v2.0.0" ] } ] @@ -51,6 +52,12 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" }, "peers": { + "seeds": [ + { + "id": "541fbc9169c7c1ec84babea50cb76c4b991fd0b2", + "address": "34.128.114.243:26656" + } + ], "persistent_peers": [] }, "apis": { @@ -65,6 +72,12 @@ "address": "https://api.cifer.ai", "provider": "Cifer" } + ], + "grpc": [ + { + "address": "http://grpc.cifer.ai", + "provider": "Cifer" + } ] }, "explorers": [ @@ -80,4 +93,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" } ] -} +} \ No newline at end of file diff --git a/cifer1/assetlist.json b/cifer1/assetlist.json new file mode 100644 index 0000000000..5d6af0ad5b --- /dev/null +++ b/cifer1/assetlist.json @@ -0,0 +1,34 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "cifer1", + "assets": [ + { + "description": "Decentralized Federated Learning", + "denom_units": [ + { + "denom": "ucif", + "exponent": 0 + }, + { + "denom": "cif", + "exponent": 6 + } + ], + "base": "ucif", + "name": "Cifer", + "display": "cif", + "symbol": "CIF", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/cifer1/chain.json b/cifer1/chain.json new file mode 100644 index 0000000000..7e06d27111 --- /dev/null +++ b/cifer1/chain.json @@ -0,0 +1,96 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "cifer1", + "status": "killed", + "network_type": "mainnet", + "website": "https://cifer.ai/", + "pretty_name": "Cifer", + "chain_id": "cifer-1", + "bech32_prefix": "cife", + "daemon_name": "ciferd", + "node_home": "$HOME/.ciferd", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ucif", + "fixed_min_gas_price": 0.0025, + "low_gas_price": 1, + "average_gas_price": 5, + "high_gas_price": 10 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ucif" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/cifer-ai/cifer", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "genesis": { + "genesis_url": "https://rpcmainnet.cifer.ai/genesis" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ] + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" + }, + "peers": { + "seeds": [ + { + "id": "541fbc9169c7c1ec84babea50cb76c4b991fd0b2", + "address": "34.128.114.243:26656" + } + ], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://cif_node.cifer.ai/", + "provider": "Cifer" + } + ], + "rest": [ + { + "address": "https://api.cifer.ai", + "provider": "Cifer" + } + ], + "grpc": [ + { + "address": "http://grpc.cifer.ai", + "provider": "Cifer" + } + ] + }, + "explorers": [ + { + "kind": "bigdipper", + "url": "https://explorer.cifer.ai/", + "tx_page": "https://explorer.cifer.ai/transactions/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" + } + ] +} \ No newline at end of file diff --git a/comdex/chain.json b/comdex/chain.json index 48fbb4304a..e60a971ace 100644 --- a/comdex/chain.json +++ b/comdex/chain.json @@ -117,6 +117,11 @@ "address": "seeds.polkachu.com:13156", "provider": "Polkachu" }, + { + "id": "c30dacf15e97a30b78792c7fa817fd2ef529b820", + "address": "comdex.seed.stavr.tech:2026", + "provider": "🔥STAVR🔥" + }, { "id": "20e1000e88125698264454a884812746c2eb4807", "address": "seeds.lavenderfive.com:13156", @@ -171,6 +176,11 @@ "id": "88ba33fbdf0279efaf27cff629f3cf72814d4069", "address": "peer-comdex-01.stakeflow.io:10007", "provider": "Stakeflow" + }, + { + "id": "5092d03f63852a7712ac5061bcfcbd96f00a4e0c", + "address": "peer-comdex.blockval.io:33656", + "provider": "Blockval" } ] }, @@ -184,6 +194,10 @@ "address": "https://comdex-rpc.polkachu.com", "provider": "Polkachu" }, + { + "address": "https://comdex.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, { "address": "https://rpc.comdex.chaintools.tech/", "provider": "ChainTools" @@ -223,6 +237,10 @@ { "address": "https://comdex-rpc.validatornode.com", "provider": "ValidatorNode" + }, + { + "address": "https://rpc-comdex.blockval.io", + "provider": "Blockval" } ], "rest": [ @@ -238,6 +256,10 @@ "address": "https://comdex-api.polkachu.com", "provider": "Polkachu" }, + { + "address": "https://comdex.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, { "address": "https://comdex-api.lavenderfive.com/", "provider": "Lavender.Five Nodes 🐝" @@ -273,6 +295,10 @@ { "address": "https://comdex-api.validatornode.com", "provider": "ValidatorNode" + }, + { + "address": "https://api-comdex.blockval.io", + "provider": "Blockval" } ], "grpc": [ @@ -288,6 +314,10 @@ "address": "comdex-grpc.polkachu.com:13190", "provider": "Polkachu" }, + { + "address": "comdex.grpc.m.stavr.tech:104", + "provider": "🔥STAVR🔥" + }, { "address": "grpc-comdex.cosmos-spaces.cloud:2300", "provider": "Cosmos Spaces" @@ -315,15 +345,19 @@ { "address": "comdex-grpc.stakerhouse.com:443", "provider": "StakerHouse" + }, + { + "address": "https://grpc-comdex.blockval.io:443", + "provider": "Blockval" } ] }, "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": "ezstaking", + "url": "https://ezstaking.app/comdex", + "tx_page": "https://ezstaking.app/comdex/txs/${txHash}", + "account_page": "https://ezstaking.app/comdex/account/${accountAddress}" }, { "kind": "mintscan", @@ -331,6 +365,12 @@ "tx_page": "https://www.mintscan.io/comdex/transactions/${txHash}", "account_page": "https://www.mintscan.io/comdex/accounts/${accountAddress}" }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Comdex-Mainnet", + "tx_page": "https://explorer.stavr.tech/Comdex-Mainnet/txs/${txHash}", + "account_page": "https://explorer.stavr.tech/Comdex-Mainnet/accounts/${accountAddress}" + }, { "kind": "aneka", "url": "https://comdex.aneka.io/", @@ -347,12 +387,6 @@ "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", @@ -370,4 +404,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" } ] -} +} \ No newline at end of file diff --git a/commercionetwork/chain.json b/commercionetwork/chain.json index b72d433772..8b91b446ef 100644 --- a/commercionetwork/chain.json +++ b/commercionetwork/chain.json @@ -133,4 +133,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg" } ] -} +} \ No newline at end of file diff --git a/composable/assetlist.json b/composable/assetlist.json index c8a7e206ce..47ee5d68af 100644 --- a/composable/assetlist.json +++ b/composable/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "composable", "assets": [ { - "description": "The native staking and governance token of Composable.", + "description": "The native staking, governance and revenue sharing token of Picasso.", "denom_units": [ { "denom": "ppica", @@ -26,7 +26,7 @@ "chain_name": "picasso", "base_denom": "ppica" }, - "provider": "Composable Finance" + "provider": "Picasso" } ], "images": [ @@ -35,15 +35,15 @@ "chain_name": "picasso", "base_denom": "ppica" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" }, "socials": { - "webiste": "https://www.composable.finance/", - "twitter": "https://twitter.com/ComposableFin" + "website": "https://picasso.xyz/", + "twitter": "https://twitter.com/picasso_network" } }, { @@ -141,7 +141,7 @@ } }, { - "description": "The native staking and governance token of Statemine parachain.", + "description": "USDT issued by the Kusama Asset Hub.", "denom_units": [ { "denom": "ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265", @@ -182,6 +182,437 @@ } } ] + }, + { + "description": "The native fee, staking and governance token of the Tinkernet Parachain.", + "denom_units": [ + { + "denom": "ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8", + "exponent": 0, + "aliases": [ + "2125" + ] + }, + { + "denom": "tnkr", + "exponent": 12 + } + ], + "type_asset": "ics20", + "base": "ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8", + "name": "TNKR", + "display": "tnkr", + "symbol": "TNKR", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "picasso", + "base_denom": "2125", + "channel_id": "channel-17" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/2125" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "picasso", + "base_denom": "2125" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" + } + }, + { + "description": "The native token of Ethereum, bridged via IBC.", + "denom_units": [ + { + "denom": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C", + "exponent": 0, + "aliases": [ + "wei" + ] + }, + { + "denom": "eth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C", + "name": "Ethereum", + "display": "eth", + "symbol": "ETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/wei" + } + } + ], + "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": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png" + } + ] + }, + { + "description": "A stablecoin issued by Maker Protocol.", + "denom_units": [ + { + "denom": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533", + "exponent": 0, + "aliases": [ + "dai-wei" + ] + }, + { + "denom": "dai", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533", + "name": "Dai", + "display": "dai", + "symbol": "DAI", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x6b175474e89094c44da98b954eedeac495271d0f" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + } + ] + }, + { + "description": "The governance token of the Frax ecosystem.", + "denom_units": [ + { + "denom": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29", + "exponent": 0, + "aliases": [ + "fxs-wei" + ] + }, + { + "denom": "fxs", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29", + "name": "Frax Shares", + "display": "fxs", + "symbol": "FXS", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.png" + } + ] + }, + { + "description": "The first fractional-algorithmic stablecoin.", + "denom_units": [ + { + "denom": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB", + "exponent": 0, + "aliases": [ + "frax-wei" + ] + }, + { + "denom": "frax", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x853d955acef822db058eb8505911ed77f175b99e" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } + ] + }, + { + "description": "A liquid ETH staking derivative designed to leverage the Frax ecosystem.", + "denom_units": [ + { + "denom": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90", + "exponent": 0, + "aliases": [ + "frxeth-wei" + ] + }, + { + "denom": "frxeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90", + "name": "Frax Ether", + "display": "frxeth", + "symbol": "frxETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x5e8422345238f34275888049021821e8e08caa1f" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.png" + } + ] + }, + { + "description": "A Liquid Staking Derivative designed to accrue the staking yield of the Frax ETH validators.", + "denom_units": [ + { + "denom": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A", + "exponent": 0, + "aliases": [ + "sfrxeth-wei" + ] + }, + { + "denom": "sfrxeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A", + "name": "Frax Staked Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xac3e018457b222d93114458476f3e3416abbe38f" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" + } + ] + }, + { + "description": "An ERC4626 staking vault that distributes part of the Frax Protocol yield weekly to stakers denominated in FRAX stablecoins. ", + "denom_units": [ + { + "denom": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9", + "exponent": 0, + "aliases": [ + "sfrax-wei" + ] + }, + { + "denom": "sfrax", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9", + "name": "Staked FRAX", + "display": "sfrax", + "symbol": "sFRAX", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.png" + } + ] + }, + { + "description": "A stablecoin issued by Tether that is pegged 1:1 to the USD.", + "denom_units": [ + { + "denom": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", + "exponent": 0, + "aliases": [ + "uusdt" + ] + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", + "name": "Tether", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xdac17f958d2ee523a2206206994597c13d831ec7" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ] } ] } \ No newline at end of file diff --git a/composable/chain.json b/composable/chain.json index 1041734435..d48a3d62d5 100644 --- a/composable/chain.json +++ b/composable/chain.json @@ -2,12 +2,12 @@ "$schema": "../chain.schema.json", "chain_name": "composable", "chain_id": "centauri-1", - "website": "https://www.composable.finance/", - "pretty_name": "Composable", + "website": "https://www.picasso.xyz/", + "pretty_name": "Picasso", "status": "live", "network_type": "mainnet", - "bech32_prefix": "centauri", - "daemon_name": "centaurid", + "bech32_prefix": "pica", + "daemon_name": "picad", "node_home": "$HOME/.banksy", "key_algos": [ "secp256k1" @@ -32,11 +32,17 @@ ] }, "codebase": { - "git_repo": "https://github.com/notional-labs/composable-centauri", - "recommended_version": "v6.4.3", + "git_repo": "https://github.com/composable/composable-cosmos", + "recommended_version": "v6.5.3", "compatible_versions": [ - "v6.4.3" + "v6.5.3" ], + "cosmos_sdk_version": "rust-ninja/cosmos-sdk v0.47.5-patch-validators-trim-tag", + "ibc_go_version": "notional-labs/ibc-go/v7 v7.2.1-0.20231010040541-6cf43006971f", + "consensus": { + "type": "cometbft", + "version": "composablefi/cometbft v0.37.2-fixed-len-vote-time-tag" + }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/notional-labs/composable-networks/main/mainnet/genesis.json" }, @@ -167,13 +173,47 @@ "height": 3486739, "proposal": 14, "next_version_name": "" + }, + { + "name": "v6_5_0", + "proposal": 16, + "height": 4446786, + "tag": "v6.5.1", + "recommended_version": "v6.5.2", + "compatible_versions": [ + "v6.5.2" + ], + "cosmos_sdk_version": "v0.47.6", + "ibc_go_version": "notional-labs/ibc-go/v7 v7.2.1-0.20231010040541-6cf43006971f", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "next_version_name": "v6_5_3" + }, + { + "name": "v6_5_3", + "proposal": 18, + "height": 4576500, + "tag": "v6.5.3", + "recommended_version": "v6.5.3", + "compatible_versions": [ + "v6.5.3" + ], + "cosmos_sdk_version": "rust-ninja/cosmos-sdk v0.47.5-patch-validators-trim-tag", + "ibc_go_version": "notional-labs/ibc-go/v7 v7.2.1-0.20231010040541-6cf43006971f", + "consensus": { + "type": "cometbft", + "version": "composablefi/cometbft v0.37.2-fixed-len-vote-time-tag" + }, + "next_version_name": "" } ] }, "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.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.", + "description": "Picasso is a DeFi infrastructure-focused Layer 1 protocol that leads the industry in building the trust-minimized interoperability solution -Cross-Ecosystem IBC. Complementary to the interoperability work, Picasso is building the first Generalized Restaking Layer starting with deployment on Solana, and expand support for all IBC connected ecosystems.", "peers": { "seeds": [ { @@ -275,6 +315,10 @@ { "address": "https://composable.rpc.moonbridge.team", "provider": "Moonbridge" + }, + { + "address": "https://rpc.composable.citizenweb3.com:443", + "provider": "Citizen Web3" } ], "rest": [ @@ -321,6 +365,10 @@ { "address": "https://composable.api.moonbridge.team", "provider": "Moonbridge" + }, + { + "address": "https://composable.api.m.stavr.tech", + "provider": "🔥STAVR🔥" } ], "grpc": [ @@ -389,8 +437,8 @@ "explorers": [ { "kind": "ping.pub", - "url": "https://ping.pub/centauri", - "tx_page": "https://ping.pub/centauri/tx/${txHash}" + "url": "https://ping.pub/composable", + "tx_page": "https://ping.pub/composable/tx/${txHash}" }, { "kind": "NodeStake Explorer", @@ -402,11 +450,16 @@ "url": "https://exp.stakevillage.net/composable", "tx_page": "https://exp.stakevillage.net/composable/tx/${txHash}", "account_page": "https://exp.stakevillage.net/composable/account/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Composable-Mainnet", + "tx_page": "https://explorer.stavr.tech/Composable-Mainnet/tx/${txHash}" } ], "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" } ] } \ No newline at end of file diff --git a/composable/images/composable.png b/composable/images/composable.png deleted file mode 100644 index ac4c293464..0000000000 Binary files a/composable/images/composable.png and /dev/null differ diff --git a/composable/images/composable.svg b/composable/images/composable.svg deleted file mode 100644 index ff299feb12..0000000000 --- a/composable/images/composable.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/conscious/assetlist.json b/conscious/assetlist.json index ae8d7e6fab..26ab0a93cd 100644 --- a/conscious/assetlist.json +++ b/conscious/assetlist.json @@ -19,10 +19,20 @@ "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" + "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" }, - "coingecko_id": "consciousdao" + "coingecko_id": "consciousdao", + "images": [ + { + "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" + } + ], + "socials": { + "website": "https://cvn.io", + "twitter": "https://twitter.com/conscious_chain" + } } ] -} +} \ No newline at end of file diff --git a/conscious/chain.json b/conscious/chain.json index 0fdc0d5ece..9466884e79 100644 --- a/conscious/chain.json +++ b/conscious/chain.json @@ -3,12 +3,15 @@ "chain_name": "conscious", "status": "live", "network_type": "mainnet", - "website": "https://www.consciousdao.com/", + "website": "https://cvn.io/", "pretty_name": "ConsciousDAO", "chain_id": "cvn_2032-1", "bech32_prefix": "cvn", "node_home": "$HOME/.cvnd", "daemon_name": "cvnd", + "key_algos": [ + "ethsecp256k1" + ], "slip44": 60, "fees": { "fee_tokens": [ @@ -69,13 +72,26 @@ { "address": "https://rpc.cvn.io/", "provider": "cvn.io" + }, + { + "address": "https://conscious_mainnet_rpc.chain.whenmoonwhenlambo.money/", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + } + ], + "rest": [ + { + "address": "https://api.cvn.io", + "provider": "cvn.io" + }, + { + "address": "https://conscious_mainnet_api.chain.whenmoonwhenlambo.money/", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], - "rest": [], "grpc": [ { - "address": "https://rest.consciousdao.com", - "provider": "consciousdao.com" + "address": "https://grpc.cvn.io", + "provider": "cvn.io" } ], "evm-http-jsonrpc": [ @@ -86,6 +102,10 @@ { "address": "https://node.consciousdao.io/", "provider": "consciousdao" + }, + { + "address": "https://conscious_mainnet_evm.chain.whenmoonwhenlambo.money/", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ] }, @@ -94,6 +114,18 @@ "kind": "blockscout", "url": "https://explore.consciousdao.com/", "tx_page": "https://explore.consciousdao.com/tx/${txHash}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/conscious", + "tx_page": "https://explorer.whenmoonwhenlambo.money/conscious/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/conscious/account/${accountAddress}" + } + ], + "images": [ + { + "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" } ] } \ No newline at end of file diff --git a/coreum/assetlist.json b/coreum/assetlist.json index 60dbfb6efc..c2f42d1e36 100644 --- a/coreum/assetlist.json +++ b/coreum/assetlist.json @@ -35,7 +35,55 @@ "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" } - ] + ], + "socials": { + "website": "https://www.coreum.com/", + "twitter": "https://twitter.com/CoreumOfficial" + } + }, + { + "description": "XRP bridged from XRPL", + "denom_units": [ + { + "denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "exponent": 0, + "aliases": [ + "drop" + ] + }, + { + "denom": "xrp", + "exponent": 6 + } + ], + "base": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "name": "Ripple", + "display": "xrp", + "symbol": "XRP", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "xrpl", + "base_denom": "drop" + }, + "provider": "Coreum" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "xrpl", + "base_denom": "drop" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg" + } } ] } \ No newline at end of file diff --git a/coreum/chain.json b/coreum/chain.json index bd94d3c61c..699e50edf3 100644 --- a/coreum/chain.json +++ b/coreum/chain.json @@ -321,6 +321,12 @@ "url": "https://explorer.tcnetwork.io/coreum", "tx_page": "https://explorer.tcnetwork.io/coreum/transaction/${txHash}", "account_page": "https://explorer.tcnetwork.io/coreum/account/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/coreum", + "tx_page": "https://ezstaking.app/coreum/txs/${txHash}", + "account_page": "https://ezstaking.app/coreum/account/${accountAddress}" } ], "keywords": [ @@ -330,4 +336,4 @@ "assets", "nft" ] -} +} \ No newline at end of file diff --git a/cosmoshub/assetlist.json b/cosmoshub/assetlist.json index 57be8b880b..5b76c815ff 100644 --- a/cosmoshub/assetlist.json +++ b/cosmoshub/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://cosmos.network", + "website": "https://cosmos.network", "twitter": "https://twitter.com/cosmoshub" } }, diff --git a/cosmoshub/chain.json b/cosmoshub/chain.json index 07cf7023b8..6d23664cda 100644 --- a/cosmoshub/chain.json +++ b/cosmoshub/chain.json @@ -33,17 +33,17 @@ }, "codebase": { "git_repo": "https://github.com/cosmos/gaia", - "recommended_version": "v14.2.0", + "recommended_version": "v15.2.0", "compatible_versions": [ - "v14.2.0" + "v15.2.0" ], "binaries": { - "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-linux-amd64?checksum=sha256:baed43bd3f523fd587cff4d8f78f395a3bcb6d20d9a671bef69b8fbe101338f6", - "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-linux-arm64?checksum=sha256:a57822b2a199ca461f8a8baf4e98a46803f8fa5d4ceb130b539ebd0c03c035a8", - "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-darwin-amd64?checksum=sha256:4edec8b191bbb0bdcd0f89d1fadfc1cfdb720ac943b7c03d584760725547c047", - "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-darwin-arm64?checksum=sha256:5177c7ca2b0e66daedc506c6fcdab0d8c436dae846de32081556b8edd57027e8", - "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-windows-amd64.exe?checksum=sha256:d912548fc1c87ca26defce1a60f089910fa55b38d27063870750efeab176db9d", - "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-windows-arm64.exe?checksum=sha256:b17cc1f1a9a5050b72f99d497fdda6d1d4615b6a42971f556d2777ba838fe7b0" + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-darwin-arm64", + "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-darwin-amd64", + "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-windows-arm64.exe" }, "genesis": { "genesis_url": "https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz" @@ -198,6 +198,31 @@ "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-windows-arm64.exe?checksum=sha256:b17cc1f1a9a5050b72f99d497fdda6d1d4615b6a42971f556d2777ba838fe7b0" }, "next_version_name": "v15" + }, + { + "name": "v15", + "tag": "v15.2.0", + "proposal": 885, + "height": 19639600, + "recommended_version": "v15.2.0", + "compatible_versions": [ + "v15.2.0" + ], + "cosmos_sdk_version": "v0.47.11-ics-lsm", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-darwin-arm64", + "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-darwin-amd64", + "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-windows-arm64.exe" + }, + "next_version_name": "" } ] }, @@ -386,7 +411,7 @@ "provider": "kjnodes" }, { - "address": "https://rpc-cosmoshub.goldenratiostaking.net", + "address": "https://rpc.cosmoshub.goldenratiostaking.net", "provider": "Golden Ratio Staking" }, { @@ -410,7 +435,7 @@ "provider": "PRO Delegators" }, { - "address": "https://cosmos-rpc.highstakes.ch:26657/", + "address": "https://cosmos-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -424,6 +449,14 @@ { "address": "https://public.stakewolle.com/cosmos/cosmoshub/rpc", "provider": "Stakewolle" + }, + { + "address": "https://rpc-cosmos.kewrnode.com", + "provider": "Kewr Node" + }, + { + "address": "https://rpc.cosmoshub-4.citizenweb3.com", + "provider": "Citizen Web3" } ], "rest": [ @@ -432,7 +465,7 @@ "provider": "Chainlayer" }, { - "address": "https://rest-cosmoshub.goldenratiostaking.net", + "address": "https://rest.cosmoshub.goldenratiostaking.net", "provider": "Golden Ratio Staking" }, { @@ -516,7 +549,7 @@ "provider": "PRO Delegators" }, { - "address": "https://cosmos-api.highstakes.ch:1317/", + "address": "https://cosmos-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -530,6 +563,10 @@ { "address": "https://public.stakewolle.com/cosmos/cosmoshub/rest", "provider": "Stakewolle" + }, + { + "address": "https://rest-cosmos.kewrnode.com", + "provider": "Kewr Node" } ], "grpc": [ @@ -612,29 +649,23 @@ ] }, "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": "ezstaking", + "url": "https://ezstaking.app/cosmoshub", + "tx_page": "https://ezstaking.app/cosmoshub/txs/${txHash}", + "account_page": "https://ezstaking.app/cosmoshub/account/${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", @@ -674,4 +705,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] -} +} \ No newline at end of file diff --git a/coss/assetlist.json b/coss/assetlist.json index 608562a57c..56614fc000 100644 --- a/coss/assetlist.json +++ b/coss/assetlist.json @@ -50,7 +50,7 @@ "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": "", + "coingecko_id": "coss-2", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png", @@ -87,4 +87,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/coss/chain.json b/coss/chain.json index 80500ac357..0e7e9258ea 100644 --- a/coss/chain.json +++ b/coss/chain.json @@ -62,7 +62,7 @@ "peers": { "seeds": [ { - "id": "0c8862ebc7b852d8e57536aea1d78e6644010b49", + "id": "0c8862ebc7b852d8e57536aea1d78e6644010b49", "address": "43.207.197.139:26656", "provider": "StarHarmony" }, @@ -121,4 +121,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg" } ] -} +} \ No newline at end of file diff --git a/crescent/chain.json b/crescent/chain.json index afed826d7e..5c857d24a5 100644 --- a/crescent/chain.json +++ b/crescent/chain.json @@ -209,7 +209,7 @@ { "address": "https://rpc.crescent.bronbro.io:443", "provider": "Bro_n_Bro" - } + } ], "rest": [ { @@ -247,7 +247,7 @@ { "address": "https://lcd.crescent.bronbro.io:443", "provider": "Bro_n_Bro" - } + } ], "grpc": [ { @@ -277,7 +277,7 @@ { "address": "https://grpc.crescent.bronbro.io:443", "provider": "Bro_n_Bro" - } + } ] }, "explorers": [ @@ -287,6 +287,12 @@ "tx_page": "https://www.mintscan.io/crescent/transactions/${txHash}", "account_page": "https://www.mintscan.io/crescent/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/crescent", + "tx_page": "https://ezstaking.app/crescent/txs/${txHash}", + "account_page": "https://ezstaking.app/crescent/account/${accountAddress}" + }, { "kind": "ping.pub", "url": "https://ping.pub/crescent", @@ -303,12 +309,6 @@ "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", diff --git a/cronos/chain.json b/cronos/chain.json index 39278f42e2..bfd953c2a2 100644 --- a/cronos/chain.json +++ b/cronos/chain.json @@ -25,37 +25,35 @@ }, "codebase": { "git_repo": "https://github.com/crypto-org-chain/cronos", - "recommended_version": "v1.0.4", + "recommended_version": "v1.2.1", "compatible_versions": [ - "v1.0.2", - "v1.0.3", - "v1.0.4" + "v1.2.0", + "v1.2.1" ], "binaries": { - "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Windows_x86_64.zip" + "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Windows_x86_64.zip" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/crypto-org-chain/cronos-mainnet/master/cronosmainnet_25-1/genesis.json" }, "versions": [ { - "name": "v1.0.4", - "recommended_version": "v1.0.4", + "name": "v1.2.1", + "recommended_version": "v1.2.1", "compatible_versions": [ - "v1.0.2", - "v1.0.3", - "v1.0.4" + "v1.2.0", + "v1.2.1" ], "binaries": { - "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Windows_x86_64.zip" + "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.1/cronos_1.2.1_Windows_x86_64.zip" } } ] @@ -172,6 +170,12 @@ "kind": "crypto.org", "url": "https://cronos.org/explorer", "tx_page": "https://cronos.org/explorer/tx/${txHash}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/cronos", + "tx_page": "https://ezstaking.app/cronos/txs/${txHash}", + "account_page": "https://ezstaking.app/cronos/account/${accountAddress}" } ], "images": [ diff --git a/cryptoorgchain/assetlist.json b/cryptoorgchain/assetlist.json index 143fb9f1e0..63886874e1 100644 --- a/cryptoorgchain/assetlist.json +++ b/cryptoorgchain/assetlist.json @@ -31,9 +31,101 @@ } ], "socials": { - "webiste": "https://cronos.org/", + "website": "https://cronos.org/", "twitter": "https://twitter.com/cronos_chain" } + }, + { + "description": "Synthetic XLM pegged 1:1 by Crypto.com", + "denom_units": [ + { + "denom": "baseXLM", + "exponent": 0, + "aliases": [ + "stroop" + ] + }, + { + "denom": "lumen", + "exponent": 7 + } + ], + "base": "baseXLM", + "name": "Lumen (XLM) pegged token", + "display": "lumen", + "symbol": "XLM", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "stellar", + "base_denom": "stroop" + }, + "provider": "Crypto.com" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "stellar", + "base_denom": "stroop" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg" + } + }, + { + "description": "The native token of Stellar network, transferred via Solo Machine.", + "denom_units": [ + { + "denom": "ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D", + "exponent": 0, + "aliases": [ + "stroop" + ] + }, + { + "denom": "lumen", + "exponent": 7 + } + ], + "base": "ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D", + "name": "Lumen (Solo Machine)", + "display": "lumen", + "symbol": "XLM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "cryptoorgchain", + "base_denom": "baseXLM", + "channel_id": "channel-JEnb" + }, + "chain": { + "channel_id": "channel-46", + "path": "transfer/channel-46/baseXLM" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "stellar", + "base_denom": "stroop" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg" + } } ] } \ No newline at end of file diff --git a/cryptoorgchain/chain.json b/cryptoorgchain/chain.json index f39ea7aeda..679f8372ce 100644 --- a/cryptoorgchain/chain.json +++ b/cryptoorgchain/chain.json @@ -32,33 +32,33 @@ }, "codebase": { "git_repo": "https://github.com/crypto-org-chain/chain-main", - "recommended_version": "v4.2.2", + "recommended_version": "v4.2.9", "compatible_versions": [ - "v4.2.2" + "v4.2.9" ], "binaries": { - "linux/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Windows_x86_64.zip" + "linux/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Windows_x86_64.zip" }, "genesis": { "genesis_url": "https://github.com/crypto-org-chain/mainnet/raw/main/crypto-org-chain-mainnet-1/genesis.json" }, "versions": [ { - "name": "v4.2.2", - "recommended_version": "v4.2.2", + "name": "v4.2.9", + "recommended_version": "v4.2.9", "compatible_versions": [ - "v4.2.2" + "v4.2.9" ], "binaries": { - "linux/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Windows_x86_64.zip" + "linux/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.9/chain-main_4.2.9_Windows_x86_64.zip" } } ] @@ -208,6 +208,12 @@ "tx_page": "https://www.mintscan.io/crypto-org/transactions/${txHash}", "account_page": "https://www.mintscan.io/crypto-org/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/cronos", + "tx_page": "https://ezstaking.app/cronos/txs/${txHash}", + "account_page": "https://ezstaking.app/cronos/account/${accountAddress}" + }, { "kind": "cronos.org", "url": "https://cronos-pos.org/explorer", diff --git a/cudos/assetlist.json b/cudos/assetlist.json index d419cc99e8..4deb45b985 100644 --- a/cudos/assetlist.json +++ b/cudos/assetlist.json @@ -31,7 +31,11 @@ "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" } - ] + ], + "socials": { + "website": "http://www.cudos.org", + "twitter": "https://twitter.com/CUDOS_" + } } ] } \ No newline at end of file diff --git a/cudos/chain.json b/cudos/chain.json index a283340228..abe2d9c153 100644 --- a/cudos/chain.json +++ b/cudos/chain.json @@ -205,6 +205,12 @@ "url": "https://atomscan.com/cudos", "tx_page": "https://atomscan.com/cudos/transactions/${txHash}", "account_page": "https://atomscan.com/cudos/accounts/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/cudos", + "tx_page": "https://ezstaking.app/cudos/txs/${txHash}", + "account_page": "https://ezstaking.app/cudos/account/${accountAddress}" } ], "images": [ @@ -213,4 +219,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg" } ] -} +} \ No newline at end of file diff --git a/decentr/chain.json b/decentr/chain.json index 9f29ef5c2d..500311459f 100644 --- a/decentr/chain.json +++ b/decentr/chain.json @@ -291,4 +291,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg" } ] -} +} \ No newline at end of file diff --git a/desmos/chain.json b/desmos/chain.json index 61f83c609c..e25d6dcf94 100644 --- a/desmos/chain.json +++ b/desmos/chain.json @@ -33,18 +33,18 @@ }, "codebase": { "git_repo": "https://github.com/desmos-labs/desmos", - "recommended_version": "v7.0.1", + "recommended_version": "v7.1.0", "compatible_versions": [ - "v7.0.1" + "v7.1.0" ], "binaries": { - "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v7.0.1/desmos-7.0.1-linux-amd64" + "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v7.1.0/desmos-v7.1.0-linux-amd64" }, - "cosmos_sdk_version": "desmos-labs/cosmos-sdk v0.47.9-desmos", - "ibc_go_version": "v7.3.2", + "cosmos_sdk_version": "desmos-labs/cosmos-sdk v0.47.10-desmos", + "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", - "version": "v0.34.4" + "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, @@ -122,12 +122,12 @@ "name": "v7", "proposal": 42, "height": 12745550, - "recommended_version": "v7.0.1", + "recommended_version": "v7.0.2", "compatible_versions": [ - "v7.0.1" + "v7.0.2" ], "binaries": { - "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v6.2.1/desmos-6.2.1-linux-amd64" + "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v7.0.2/desmos-7.0.2-linux-amd64" }, "cosmos_sdk_version": "desmos-labs/cosmos-sdk v0.47.9-desmos", "ibc_go_version": "v7.3.2", @@ -138,6 +138,28 @@ "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.desmos/data/wasm", + "next_version_name": "v7.1.0" + }, + { + "name": "v7.1.0", + "proposal": 48, + "height": 13775361, + "recommended_version": "v7.1.0", + "compatible_versions": [ + "v7.1.0" + ], + "binaries": { + "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v7.1.0/desmos-v7.1.0-linux-amd64" + }, + "cosmos_sdk_version": "desmos-labs/cosmos-sdk v0.47.10-desmos", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.desmos/data/wasm", "next_version_name": "" } ] @@ -182,11 +204,6 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚡️ Nodes & Staking" - }, - { - "id": "73fc6b8b41aada42306b2f149619cc0ff935a868", - "address": "desmos-seed.panthea.eu:39656", - "provider": "Panthea EU" } ], "persistent_peers": [ @@ -201,9 +218,9 @@ "provider": "[NODERS]TEAM" }, { - "id": "7c506d9e32cfc486ea714ee0c0307022398b8c20", - "address": "desmos-peer.panthea.eu:29656", - "provider": "Panthea EU" + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "desmos.declab.pro:26615", + "provider": "Decloud Nodes Lab" } ] }, @@ -234,9 +251,13 @@ "provider": "Bro_n_Bro" }, { - "address": "https://desmos-rpc.panthea.eu", - "provider": "Panthea EU" - } + "address": "https://desmos.declab.pro:26613", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://desmos-rpc.noders.services", + "provider": "[NODERS]TEAM" + } ], "rest": [ { @@ -264,9 +285,13 @@ "provider": "Bro_n_Bro" }, { - "address": "https://desmos-api.panthea.eu", - "provider": "Panthea EU" - } + "address": "https://vidulum.declab.pro:443", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://desmos-api.noders.services", + "provider": "[NODERS]TEAM" + } ], "grpc": [ { @@ -294,17 +319,21 @@ "provider": "Bro_n_Bro" }, { - "address": "desmos-grpc.panthea.eu:16730", - "provider": "Panthea EU" - } + "address": "https://vidulum.declab.pro:9009", + "provider": "Decloud Nodes Lab" + }, + { + "address": "desmos-grpc.noders.services:27090", + "provider": "[NODERS]TEAM" + } ] }, "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": "ezstaking", + "url": "https://ezstaking.app/desmos", + "tx_page": "https://ezstaking.app/desmos/txs/${txHash}", + "account_page": "https://ezstaking.app/desmos/account/${accountAddress}" }, { "kind": "bigdipper", @@ -332,6 +361,11 @@ "kind": "TC Network", "url": "https://explorer.tcnetwork.io/desmos", "tx_page": "https://explorer.tcnetwork.io/desmos/transaction/${txHash}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Desmos", + "tx_page": "https://explorer.declab.pro/Desmos/tx/${txHash}" } ], "images": [ @@ -340,4 +374,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg" } ] -} +} \ No newline at end of file diff --git a/dhealth/assetlist.json b/dhealth/assetlist.json new file mode 100644 index 0000000000..57bd2bf347 --- /dev/null +++ b/dhealth/assetlist.json @@ -0,0 +1,34 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "dhealth", + "assets": [ + { + "description": "The native token of dHealth", + "denom_units": [ + { + "denom": "udhp", + "exponent": 0 + }, + { + "denom": "dhp", + "exponent": 6 + } + ], + "base": "udhp", + "name": "Digital Health Point", + "display": "dhp", + "symbol": "DHP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" + }, + "coingecko_id": "dhealth", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/dhealth/chain.json b/dhealth/chain.json new file mode 100644 index 0000000000..9a18bec3b6 --- /dev/null +++ b/dhealth/chain.json @@ -0,0 +1,154 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "dhealth", + "status": "live", + "network_type": "mainnet", + "website": "https://dhealth.com/", + "pretty_name": "dHealth", + "chain_id": "dhealth", + "bech32_prefix": "dh", + "daemon_name": "dhealthd", + "node_home": "$HOME/.dhealth", + "key_algos": [ + "secp256k1" + ], + "slip44": 10111, + "fees": { + "fee_tokens": [ + { + "denom": "udhp", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.025, + "average_gas_price": 0.03, + "high_gas_price": 0.035 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "udhp" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/dhealthproject/dhealth", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "binaries": { + "linux/amd64": "https://github.com/dhealthproject/dhealth/releases/download/v1.0.0/dhealthd-1.0.0-linux-amd64" + }, + "cosmos_sdk_version": "cosmos/cosmos-sdk v0.47.4", + "ibc_go_version": "v7.2.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmwasm_version": "v0.41.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.dhealth/wasm", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/dhealthproject/mainnet/main/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "binaries": { + "linux/amd64": "https://github.com/dhealthproject/dhealth/releases/download/v1.0.0/dhealthd-1.0.0-linux-amd64" + }, + "cosmos_sdk_version": "cosmos/cosmos-sdk v0.47.4", + "ibc_go_version": "v7.2.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmwasm_version": "v0.41.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.dhealth/wasm", + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" + }, + "peers": { + "seeds": [ + { + "id": "67243a0ed11567250aa02d5e47f6c4a0b8313975", + "address": "rpc.dhealth.com:26656", + "provider": "dhealth" + }, + { + "id": "052ab696b79fbcf24bfb0e5cf2e6b9d7e4efe8f8", + "address": "rpc.dhealth.nodestake.org:26656", + "provider": "NodeStake" + } + ], + "persistent_peers": [ + { + "id": "67243a0ed11567250aa02d5e47f6c4a0b8313975", + "address": "142.93.174.93:26656", + "provider": "dhealth" + }, + { + "id": "69d16d1147e90cdfb8ed066331a0abb9c71c3ae2", + "address": "162.19.223.89:26656", + "provider": "NodeStake" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.dhealth.com", + "provider": "dhealth" + }, + { + "address": "https://rpc.dhealth.nodestake.org", + "provider": "NodeStake" + } + ], + "rest": [ + { + "address": "https://lcd.dhealth.com", + "provider": "dhealth" + }, + { + "address": "https://api.dhealth.nodestake.org", + "provider": "NodeStake" + } + ], + "grpc": [ + { + "address": "https://grpc.dhealth.com:443", + "provider": "dhealth" + }, + { + "address": "https://grpc.dhealth.nodestake.org:443", + "provider": "NodeStake" + } + ] + }, + "explorers": [ + { + "kind": "nodestake", + "url": "https://explorer.nodestake.org/dhealth", + "tx_page": "https://explorer.nodestake.org/dhealth/tx/${txHash}", + "account_page": "https://explorer.nodestake.org/dhealth/account/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" + } + ] +} \ No newline at end of file diff --git a/dhealth/images/dhp.png b/dhealth/images/dhp.png new file mode 100644 index 0000000000..d8063ffa4f Binary files /dev/null and b/dhealth/images/dhp.png differ diff --git a/dhealth/images/dhp.svg b/dhealth/images/dhp.svg new file mode 100644 index 0000000000..5652b52649 --- /dev/null +++ b/dhealth/images/dhp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dydx/assetlist.json b/dydx/assetlist.json index b6e1945108..d42e1e0dd3 100644 --- a/dydx/assetlist.json +++ b/dydx/assetlist.json @@ -22,7 +22,7 @@ "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", + "coingecko_id": "dydx-chain", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", @@ -36,7 +36,7 @@ } ], "socials": { - "webiste": "https://dydx.trade/", + "website": "https://dydx.trade/", "twitter": "https://twitter.com/dYdX" } }, diff --git a/dydx/chain.json b/dydx/chain.json index e88ca034f3..ac8f12b9ad 100644 --- a/dydx/chain.json +++ b/dydx/chain.json @@ -40,19 +40,19 @@ }, "codebase": { "git_repo": "https://github.com/dydxprotocol/v4-chain/", - "recommended_version": "protocol/v3.0.0", + "recommended_version": "protocol/v4.1.0", "compatible_versions": [ - "protocol/v3.0.0" + "protocol/v4.1.0" ], "binaries": { - "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv3.0.0/dydxprotocold-v3.0.0-linux-amd64.tar.gz", - "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv3.0.0/dydxprotocold-v3.0.0-linux-arm64.tar.gz" + "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.1.0/dydxprotocold-v4.1.0-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.1.0/dydxprotocold-v4.1.0-linux-arm64.tar.gz" }, - "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.47.5-0.20240111163003-128eb0a555af", - "ibc_go_version": "v7.3.0", + "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.5-0.20240220212824-35f31482370c", + "ibc_go_version": "v8.0.0", "consensus": { "type": "cometbft", - "version": "dydxprotocol/cometbft v0.37.3-0.20230908230338-65f7a2f25c18" + "version": "dydxprotocol/cometbft v0.38.6-0.20240409171441-6d0767b72c06" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/dydxopsdao/networks/main/dydx-mainnet-1/genesis.json" @@ -60,40 +60,82 @@ "versions": [ { "name": "v2", - "recommended_version": "protocol/v2.0.0", + "recommended_version": "protocol/v2.0.1", "compatible_versions": [ - "protocol/v2.0.0" + "protocol/v2.0.0", + "protocol/v2.0.1" ], "binaries": { "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv2.0.0/dydxprotocold-v2.0.0-linux-amd64.tar.gz", "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv2.0.0/dydxprotocold-v2.0.0-linux-arm64.tar.gz" }, "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.47.5-0.20231011192538-b95c66dedbd5", - "ibc_go_version": "v7.3.0", + "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "dydxprotocol/cometbft v0.37.3-0.20230908230338-65f7a2f25c18" - }, + }, "next_version_name": "v3.0.0" }, { "name": "v3.0.0", "proposal": 7, "height": 7147832, - "recommended_version": "protocol/v3.0.0", + "recommended_version": "protocol/v3.0.2", "compatible_versions": [ - "protocol/v3.0.0" + "protocol/v3.0.0", + "protocol/v3.0.2" ], "binaries": { "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv3.0.0/dydxprotocold-v3.0.0-linux-amd64.tar.gz", "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv3.0.0/dydxprotocold-v3.0.0-linux-arm64.tar.gz" }, "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.47.5-0.20240111163003-128eb0a555af", - "ibc_go_version": "v7.3.0", + "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "dydxprotocol/cometbft v0.37.3-0.20230908230338-65f7a2f25c18" - }, + }, + "next_version_name": "v4.0.0" + }, + { + "name": "v4.0.0", + "proposal": 46, + "height": 12791712, + "recommended_version": "protocol/v4.0.5", + "compatible_versions": [ + "protocol/v4.0.5" + ], + "binaries": { + "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.0.5/dydxprotocold-v4.0.5-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.0.5/dydxprotocold-v4.0.5-linux-arm64.tar.gz" + }, + "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.5-0.20240220212824-35f31482370c", + "ibc_go_version": "v8.0.0", + "consensus": { + "type": "cometbft", + "version": "dydxprotocol/cometbft v0.38.6-0.20240409171441-6d0767b72c06" + }, + "next_version_name": "v4.1.0" + }, + { + "name": "v4.1.0", + "proposal": 53, + "height": 14404200, + "recommended_version": "protocol/v4.1.0", + "compatible_versions": [ + "protocol/v4.1.0" + ], + "binaries": { + "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.1.0/dydxprotocold-v4.1.0-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.1.0/dydxprotocold-v4.1.0-linux-arm64.tar.gz" + }, + "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.5-0.20240220212824-35f31482370c", + "ibc_go_version": "v8.0.0", + "consensus": { + "type": "cometbft", + "version": "dydxprotocol/cometbft v0.38.6-0.20240409171441-6d0767b72c06" + }, "next_version_name": "" } ] @@ -182,8 +224,8 @@ "apis": { "rpc": [ { - "address": "https://community.nuxian-node.ch:6797/dydx/trpc", - "provider": "PRO Delegators" + "address": "https://dydx-rpc.kingnodes.com:443", + "provider": "Kingnodes 👑" }, { "address": "https://dydx-dao-rpc.polkachu.com", @@ -193,10 +235,6 @@ "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 🐝" @@ -228,16 +266,24 @@ { "address": "https://dydx-rpc.enigma-validator.com", "provider": "Enigma" + }, + { + "address": "https://community.nuxian-node.ch:6797/dydx/trpc", + "provider": "PRO Delegators" + }, + { + "address": "https://dydx-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ { - "address": "https://community.nuxian-node.ch:6797/dydx/crpc", + "address": "https://community.nuxian-node.ch:6797/dydx/crpc", "provider": "PRO Delegators" }, { - "address": "https://dydx-dao-api.polkachu.com", - "provider": "Polkachu" + "address": "https://dydx-dao-api.polkachu.com", + "provider": "Polkachu" }, { "address": "https://dydx-mainnet-full-lcd.public.blastapi.io", @@ -245,7 +291,7 @@ }, { "address": "https://dydx-rest.kingnodes.com:443", - "provider": "Kingnodes" + "provider": "Kingnodes 👑" }, { "address": "https://dydx-api.lavenderfive.com:443", @@ -278,6 +324,10 @@ { "address": "https://dydx-lcd.enigma-validator.com", "provider": "Enigma" + }, + { + "address": "https://dydx-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -307,7 +357,7 @@ }, { "address": "https://dydx-grpc.kingnodes.com:443", - "provider": "Kingnodes" + "provider": "Kingnodes 👑" }, { "address": "https://dydx-grpc.lavenderfive.com", @@ -332,6 +382,10 @@ { "address": "dydx-grpc.publicnode.com:443", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "dydx-grpc.noders.services:37090", + "provider": "[NODERS]TEAM" } ] }, @@ -342,6 +396,12 @@ "tx_page": "https://www.mintscan.io/dydx/txs/${txHash}", "account_page": "https://www.mintscan.io/dydx/account/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/dydx", + "tx_page": "https://ezstaking.app/dydx/txs/${txHash}", + "account_page": "https://ezstaking.app/dydx/account/${accountAddress}" + }, { "kind": "NodeStake", "url": "https://explorer.nodestake.top/dydx/", @@ -361,4 +421,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } ] -} +} \ No newline at end of file diff --git a/dymension/assetlist.json b/dymension/assetlist.json index fb03976ae8..342be15b29 100644 --- a/dymension/assetlist.json +++ b/dymension/assetlist.json @@ -14,6 +14,7 @@ "exponent": 18 } ], + "type_asset": "sdk.coin", "base": "adym", "name": "Dymension", "display": "dym", @@ -30,9 +31,67 @@ } ], "socials": { - "webiste": "https://portal.dymension.xyz", + "website": "https://portal.dymension.xyz", "twitter": "https://twitter.com/dymension" } + }, + { + "description": "The native token of Nim Network.", + "extended_description": "Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.", + "denom_units": [ + { + "denom": "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942", + "exponent": 0, + "aliases": [ + "anim" + ] + }, + { + "denom": "nim", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942", + "name": "Nim Network", + "display": "nim", + "symbol": "NIM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "nim", + "base_denom": "anim", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-49", + "path": "transfer/channel-49/anim" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nim", + "base_denom": "anim" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg" + } + ], + "socials": { + "website": "https://nim.network/", + "twitter": "https://twitter.com/nim_network" + }, + "keywords": [ + "gaming", + "AI" + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg" + } } ] -} +} \ No newline at end of file diff --git a/dymension/chain.json b/dymension/chain.json index 88b995af3c..e7e71e302f 100644 --- a/dymension/chain.json +++ b/dymension/chain.json @@ -8,6 +8,7 @@ "chain_id": "dymension_1100-1", "bech32_prefix": "dym", "slip44": 60, + "node_home": "$HOME/.dymension", "daemon_name": "dymd", "fees": { "fee_tokens": [ @@ -38,7 +39,14 @@ } ], "codebase": { - "git_repo": "https://github.com/dymensionxyz/dymension" + "git_repo": "https://github.com/dymensionxyz/dymension", + "recommended_version": "v3.0.0", + "compatible_versions": [ + "v3.0.0" + ], + "genesis": { + "genesis_url": "https://github.com/dymensionxyz/networks/raw/main/mainnet/dymension/genesis.json" + } }, "peers": { "seeds": [ @@ -106,7 +114,7 @@ "address": "dymension-mainnet-peer.autostake.com:27086", "provider": "AutoStake | Delegate for StakeDrops" }, - { + { "id": "babe3d67aa5570e65953a5253eaf36c7ebfbbb44", "address": "82.223.0.229:26646", "provider": "Cumulo" @@ -222,6 +230,10 @@ { "address": "https://rpc.dymension.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://dymension-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -332,6 +344,10 @@ { "address": "https://lcd.dymension.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://dymension-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -411,9 +427,13 @@ "address": "https://grpc.dymension.posthuman.digital", "provider": "posthuman" }, - { + { "address": "https://grpc.dymension.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "dymension-grpc.noders.services:12090", + "provider": "[NODERS]TEAM" } ], "evm-http-jsonrpc": [ @@ -433,7 +453,7 @@ "address": "https://dymension.0xwave.com:2087", "provider": "Wave" }, - { + { "address": "https://evm-rpc.dym.cumulo.com.es:443", "provider": "Cumulo" }, @@ -444,10 +464,20 @@ { "address": "https://evm-rpc.dymension.posthuman.digital", "provider": "posthuman" + }, + { + "address": "https://dymension-jsonrpc.noders.services", + "provider": "[NODERS]TEAM" } ] }, "explorers": [ + { + "kind": "ezstaking", + "url": "https://ezstaking.app/dymension", + "tx_page": "https://ezstaking.app/dymension/txs/${txHash}", + "account_page": "https://ezstaking.app/dymension/account/${accountAddress}" + }, { "kind": "NodeStake", "url": "https://explorer.nodestake.org/dymension", @@ -485,4 +515,4 @@ "account_page": "https://explorer.posthuman.digital/dymension/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/dyson/assetlist.json b/dyson/assetlist.json index 7ea106c918..9447afc772 100644 --- a/dyson/assetlist.json +++ b/dyson/assetlist.json @@ -115,11 +115,16 @@ "chain_name": "osmosis", "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F" }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg" + }, + { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg" } }, { @@ -162,13 +167,17 @@ "chain_name": "osmosis", "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858" }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg" + }, + { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg" } } ] diff --git a/dyson/chain.json b/dyson/chain.json index 1261936b35..dcbc356f3a 100644 --- a/dyson/chain.json +++ b/dyson/chain.json @@ -30,7 +30,9 @@ "codebase": { "git_repo": "https://gitlab.com/dysonproject/dyson", "recommended_version": "v0.0.2-bebf2e98", - "compatible_versions": ["v0.0.2-bebf2e98"], + "compatible_versions": [ + "v0.0.2-bebf2e98" + ], "genesis": { "genesis_url": "https://gitlab.com/dysonproject/dyson-deploy/-/raw/develop/genesis.json" }, @@ -38,7 +40,9 @@ { "name": "v0.0.2-bebf2e98", "recommended_version": "v0.0.2-bebf2e98", - "compatible_versions": ["v0.0.2-bebf2e98"] + "compatible_versions": [ + "v0.0.2-bebf2e98" + ] } ] }, @@ -102,4 +106,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.svg" } ] -} +} \ No newline at end of file diff --git a/echelon/assetlist.json b/echelon/assetlist.json index 20f535a017..d0f76d1f6e 100644 --- a/echelon/assetlist.json +++ b/echelon/assetlist.json @@ -21,7 +21,6 @@ "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" @@ -29,4 +28,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/emoney/assetlist.json b/emoney/assetlist.json index d5239ebc0c..4bfa7990b9 100644 --- a/emoney/assetlist.json +++ b/emoney/assetlist.json @@ -171,4 +171,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/emoney/chain.json b/emoney/chain.json index 64f96653e8..23e4f19674 100644 --- a/emoney/chain.json +++ b/emoney/chain.json @@ -165,16 +165,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/emoney", + "tx_page": "https://ezstaking.app/emoney/txs/${txHash}", + "account_page": "https://ezstaking.app/emoney/account/${accountAddress}" }, { "kind": "mintscan", @@ -200,4 +194,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg" } ] -} +} \ No newline at end of file diff --git a/empowerchain/chain.json b/empowerchain/chain.json index d86a0c6215..720677dd7d 100644 --- a/empowerchain/chain.json +++ b/empowerchain/chain.json @@ -120,6 +120,11 @@ "id": "f7eb23352efa7aba7ba9aa56fe034ede139deab3", "address": "empower.peer.stakevillage.net:16856", "provider": "Stake Village" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "empower.declab.pro:26609", + "provider": "Decloud Nodes Lab" } ] }, @@ -172,6 +177,14 @@ { "address": "https://rpc.empowerchain.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://empower.declab.pro:26607", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://empower-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -218,6 +231,14 @@ { "address": "https://lcd.empowerchain.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://empower.declab.pro:443", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://empower-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -256,6 +277,14 @@ { "address": "https://grpc.empowerchain.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://empower.declab.pro:9005", + "provider": "Decloud Nodes Lab" + }, + { + "address": "empower-grpc.noders.services:25090", + "provider": "[NODERS]TEAM" } ] }, @@ -277,6 +306,12 @@ "url": "https://exp.stakevillage.net/empower", "tx_page": "https://exp.stakevillage.net/empower/tx/${txHash}", "account_page": "https://exp.stakevillage.net/empower/account/${accountAddress}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Empower", + "tx_page": "https://explorer.declab.pro/Empower/tx/${txHash}", + "account_page": "https://explorer.declab.pro/Empower/account/{$accountAddress}" } ] } diff --git a/ethos/chain.json b/ethos/chain.json index 74057e310a..79c583cfb0 100644 --- a/ethos/chain.json +++ b/ethos/chain.json @@ -57,11 +57,7 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.svg" }, - "codebase": { - "genesis": { - "genesis_url": "" - } - }, + "codebase": {}, "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.png", diff --git a/evmos/assetlist.json b/evmos/assetlist.json index fd48ef6636..3ae8f8acdf 100644 --- a/evmos/assetlist.json +++ b/evmos/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://evmos.org/", + "website": "https://evmos.org/", "twitter": "https://twitter.com/EvmosOrg" } }, @@ -80,6 +80,7 @@ }, { "description": "The token of Neokingdom DAO.", + "extended_description": "Neokingdom DAO wants to make employment fairer, by facilitating both web3 and real-world businesses to operate as Decentralized Autonomous Organizations (DAOs).", "denom_units": [ { "denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", @@ -103,7 +104,11 @@ "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" } - ] + ], + "socials": { + "website": "https://www.neokingdom.org/", + "twitter": "https://twitter.com/NEOKingdomDAO" + } }, { "description": "The token of Teledisko DAO.", @@ -133,6 +138,35 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.svg" } ] + }, + { + "description": "The token of Crowdpunk DAO", + "denom_units": [ + { + "denom": "erc20/0xfbf4318d24a93753f11d365a6dcf8b830e98ab0f", + "exponent": 0 + }, + { + "denom": "crowdp", + "exponent": 18 + } + ], + "base": "erc20/0xfbf4318d24a93753f11d365a6dcf8b830e98ab0f", + "name": "Crowdpunk DAO", + "display": "crowdp", + "address": "0xfbf4318d24a93753f11d365a6dcf8b830e98ab0f", + "symbol": "CROWDP", + "type_asset": "erc20", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.svg" + } + ] } ] -} +} \ No newline at end of file diff --git a/evmos/chain.json b/evmos/chain.json index ed8cf71b0f..6d3200c0cd 100644 --- a/evmos/chain.json +++ b/evmos/chain.json @@ -36,25 +36,22 @@ }, "codebase": { "git_repo": "https://github.com/evmos/evmos", - "recommended_version": "v16.0.3", + "recommended_version": "v17.0.0", "compatible_versions": [ - "v16.0.0", - "v16.0.1", - "v16.0.2", - "v16.0.3" + "v17.0.0" ], - "cosmos_sdk_version": "v0.47.5-evmos.2", + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.5-evmos.2", "consensus": { "type": "cometbft", - "version": "v0.37.3-0.20230920093934-46df7b597e3c" + "version": "v0.37.4" }, - "ibc_go_version": "7.3.1", + "ibc_go_version": "7.4.0", "binaries": { - "linux/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Linux_amd64.tar.gz", - "linux/arm64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Darwin_amd64.tar.gz", - "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Windows_amd64.zip" + "linux/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Windows_amd64.zip" }, "genesis": { "genesis_url": "https://archive.evmos.org/mainnet/genesis.json" @@ -162,15 +159,12 @@ }, { "name": "v16.0.0", - "tag": "v16.0.3", + "tag": "v16.0.4", "proposal": 265, "height": 18295000, - "recommended_version": "v16.0.3", + "recommended_version": "v16.0.4", "compatible_versions": [ - "v16.0.0", - "v16.0.1", - "v16.0.2", - "v16.0.3" + "v16.0.4" ], "cosmos_sdk_version": "v0.47.5-evmos.2", "consensus": { @@ -179,11 +173,34 @@ }, "ibc_go_version": "v7.3.1", "binaries": { - "linux/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Linux_amd64.tar.gz", - "linux/arm64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Darwin_amd64.tar.gz", - "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.3/evmos_16.0.3_Windows_amd64.zip" + "linux/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Windows_amd64.zip" + }, + "next_version_name": "v17.0.0" + }, + { + "name": "v17.0.0", + "tag": "v17.0.0", + "height": 20101000, + "recommended_version": "v17.0.0", + "compatible_versions": [ + "v17.0.0" + ], + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.5-evmos.2", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "ibc_go_version": "7.4.0", + "binaries": { + "linux/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.0/evmos_17.0.0_Windows_amd64.zip" }, "next_version_name": "" } @@ -402,6 +419,10 @@ { "address": "https://rpc.evmos.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://rpc.evmos.citizenweb3.com:443", + "provider": "Citizen Web3" } ], "rest": [ @@ -649,10 +670,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/evmos", + "tx_page": "https://ezstaking.app/evmos/txs/${txHash}", + "account_page": "https://ezstaking.app/evmos/account/${accountAddress}" }, { "kind": "mintscan", @@ -660,12 +681,6 @@ "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", @@ -702,6 +717,12 @@ "url": "https://exp.stakevillage.net/evmos", "tx_page": "https://exp.stakevillage.net/evmos/tx/${txHash}", "account_page": "https://exp.stakevillage.net/evmos/accounts/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/evmos", + "tx_page": "https://explorer.stavr.tech/evmos/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/evmos/accounts/${accountAddress}" } ], "images": [ @@ -710,4 +731,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } ] -} +} \ No newline at end of file diff --git a/evmos/images/crowdp.png b/evmos/images/crowdp.png new file mode 100644 index 0000000000..a529cb8ef6 Binary files /dev/null and b/evmos/images/crowdp.png differ diff --git a/evmos/images/crowdp.svg b/evmos/images/crowdp.svg new file mode 100644 index 0000000000..0531bb6aba --- /dev/null +++ b/evmos/images/crowdp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fetchhub/chain.json b/fetchhub/chain.json index 88ae8893e3..b627a189e1 100644 --- a/fetchhub/chain.json +++ b/fetchhub/chain.json @@ -107,6 +107,11 @@ "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", "address": "fetchhub-mainnet-peer.autostake.com:27266", "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "fetch.rpc.nodeshub.online:15256", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -157,12 +162,16 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://fetch-rpc.highstakes.ch:26657/", + "address": "https://fetch-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { "address": "https://public.stakewolle.com/cosmos/fetchhub/rpc", "provider": "Stakewolle" + }, + { + "address": "https://fetch.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "rest": [ @@ -211,12 +220,16 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://fetch-api.highstakes.ch:1317/", + "address": "https://fetch-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { "address": "https://public.stakewolle.com/cosmos/fetchhub/rest", "provider": "Stakewolle" + }, + { + "address": "https://fetch.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ @@ -255,6 +268,10 @@ { "address": "fetch-grpc.publicnode.com:443", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "fetch.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, @@ -265,6 +282,12 @@ "tx_page": "https://www.mintscan.io/fetchai/transactions/${txHash}", "account_page": "https://www.mintscan.io/fetchai/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/fetchhub", + "tx_page": "https://ezstaking.app/fetchhub/txs/${txHash}", + "account_page": "https://ezstaking.app/fetchhub/account/${accountAddress}" + }, { "kind": "bigdipper", "url": "https://explore-fetchhub.fetch.ai", @@ -291,6 +314,12 @@ "url": "https://fetchstation.azoyalabs.com/mainnet", "tx_page": "https://fetchstation.azoyalabs.com/mainnet/explorer/transactions/${txHash}", "account_page": "https://fetchstation.azoyalabs.com/mainnet/explorer/address/${accountAddress}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/fetchhub/", + "tx_page": "https://explorer.nodeshub.online/fetchhub/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/fetchhub/accounts/${accountAddress}" } ], "images": [ @@ -299,4 +328,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg" } ] -} +} \ No newline at end of file diff --git a/finschia/assetlist.json b/finschia/assetlist.json index 863ff195c0..02e14386e0 100644 --- a/finschia/assetlist.json +++ b/finschia/assetlist.json @@ -30,7 +30,9 @@ } ], "coingecko_id": "link", - "keywords": ["staking"] + "keywords": [ + "staking" + ] } ] -} +} \ No newline at end of file diff --git a/finschia/chain.json b/finschia/chain.json index 1c405ddb5f..1576b68fe4 100644 --- a/finschia/chain.json +++ b/finschia/chain.json @@ -9,7 +9,9 @@ "bech32_prefix": "link", "daemon_name": "fnsad", "node_home": "$HOME/.finschia", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 438, "fees": { "fee_tokens": [ @@ -35,7 +37,10 @@ "codebase": { "git_repo": "https://github.com/finschia/finschia", "recommended_version": "v2.0.1", - "compatible_versions": ["v2.0.0", "v2.0.1"], + "compatible_versions": [ + "v2.0.0", + "v2.0.1" + ], "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-amd64", @@ -48,7 +53,9 @@ "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", "ibc_go_version": "v4.3.1", - "ics_enabled": ["ics20-1"], + "ics_enabled": [ + "ics20-1" + ], "genesis": { "name": "v2", "genesis_url": "https://vos.line-scdn.net/finschia-2-fileshare/datafile/finschia-prod-2/finschia-2-genesis.tgz" @@ -59,7 +66,9 @@ "tag": "v1.1.1", "height": 55791218, "recommended_version": "v1.1.1", - "compatible_versions": ["v1.1.1"], + "compatible_versions": [ + "v1.1.1" + ], "go_version": "1.18", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v1.1.1/finschia-v1.1.1-linux-amd64.tgz", @@ -72,7 +81,9 @@ "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", "ibc_go_version": "v3.3.3", - "ics_enabled": ["ics20-1"], + "ics_enabled": [ + "ics20-1" + ], "next_version_name": "v2" }, { @@ -81,7 +92,10 @@ "proposal": 17, "height": 59938000, "recommended_version": "v2.0.1", - "compatible_versions": ["v2.0.0", "v2.0.1"], + "compatible_versions": [ + "v2.0.0", + "v2.0.1" + ], "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-amd64", @@ -94,7 +108,9 @@ "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", "ibc_go_version": "v4.3.1", - "ics_enabled": ["ics20-1"], + "ics_enabled": [ + "ics20-1" + ], "previous_version_name": "v1", "next_version_name": "v3" } @@ -145,6 +161,12 @@ "url": "https://www.mintscan.io/finschia", "tx_page": "https://www.mintscan.io/finschia/tx/${txHash}", "account_page": "https://www.mintscan.io/finschia/address/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/finschia", + "tx_page": "https://ezstaking.app/finschia/txs/${txHash}", + "account_page": "https://ezstaking.app/finschia/account/${accountAddress}" } ], "images": [ @@ -157,4 +179,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg" } -} +} \ No newline at end of file diff --git a/firmachain/chain.json b/firmachain/chain.json index b484d13295..e46f7ab386 100644 --- a/firmachain/chain.json +++ b/firmachain/chain.json @@ -89,6 +89,11 @@ "id": "35b9e0a0818d2c5e9ef187984872c0ad2dbd447c", "address": "firma.peer.stavr.tech:1036", "provider": "🔥STAVR🔥" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "firmachain.rpc.nodeshub.online:16456", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -113,6 +118,10 @@ { "address": "https://firmachain-rpc.ramuchi.tech", "provider": "ramuchi.tech" + }, + { + "address": "https://firmachain.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "rest": [ @@ -135,6 +144,10 @@ { "address": "https://firmachain-api.ramuchi.tech", "provider": "ramuchi.tech" + }, + { + "address": "https://firmachain.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ @@ -149,15 +162,19 @@ { "address": "https://firmachain-grpc.ramuchi.tech:1390", "provider": "ramuchi.tech" + }, + { + "address": "firmachain.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, "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": "ezstaking", + "url": "https://ezstaking.app/firmachain", + "tx_page": "https://ezstaking.app/firmachain/txs/${txHash}", + "account_page": "https://ezstaking.app/firmachain/account/${accountAddress}" }, { "kind": "🔥STAVR🔥", @@ -180,6 +197,12 @@ "url": "https://atomscan.com/firmachain", "tx_page": "https://atomscan.com/firmachain/transactions/${txHash}", "account_page": "https://atomscan.com/firmachain/accounts/${accountAddress}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/firmachain/", + "tx_page": "https://explorer.nodeshub.online/firmachain/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/firmachain/accounts/${accountAddress}" } ], "images": [ @@ -188,4 +211,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg" } ] -} +} \ No newline at end of file diff --git a/furya/assetlist.json b/furya/assetlist.json index 892df26465..559bd32835 100644 --- a/furya/assetlist.json +++ b/furya/assetlist.json @@ -25,9 +25,20 @@ "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.svg", + "theme": { + "primary_color_hex": "#eaf143" + } } - ] + ], + "coingecko_id": "fanfury", + "keywords": [ + "gaming", + "staking" + ], + "socials": { + "twitter": "https://twitter.com/furyachain" + } } ] } \ No newline at end of file diff --git a/furya/chain.json b/furya/chain.json index 11a6bf9fb6..e3f311bca7 100644 --- a/furya/chain.json +++ b/furya/chain.json @@ -63,6 +63,16 @@ "id": "38f40db17cdae23ba3c2b0f7d5738b9d31d077aa", "address": "34.32.247.201:26656", "provider": "Furya" + }, + { + "id": "906ba6fd7cc9349d63c26608736ac91fe09437fb", + "address": "85.215.65.44:26656", + "provider": "Starsquid" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "furya.rpc.nodeshub.online:26956", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -70,19 +80,43 @@ "rpc": [ { "address": "https://rpc.furya.xyz", - "provider": "Furya Genesis Validator 🐝" + "provider": "Furya Genesis Validator" + }, + { + "address": "https://furya-rpc.synergynodes.com", + "provider": "synergynodes" + }, + { + "address": "https://furya.rpc.nodeshub.online:443", + "provider": "nodeshub" } ], "rest": [ { "address": "https://api.furya.xyz", - "provider": "Furya Genesis Validator 🐝" + "provider": "Furya Genesis Validator" + }, + { + "address": "https://furya.api.nodeshub.online", + "provider": "synergynodes" + }, + { + "address": "https://furya.api.nodeshub.online", + "provider": "Furya Genesis Validator" + }, + { + "address": "https://furya.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ { "address": "grpc.furya.xyz:443", - "provider": "Lavender.Five Nodes 🐝" + "provider": "Furya Genesis Validator" + }, + { + "address": "https://furya.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, @@ -90,8 +124,14 @@ { "kind": "Furya Explorer", "url": "https://explorer.furya.xyz/", - "tx_page": "https://explorer.furya.xyz/txs/${txHash}", - "account_page": "https://explorer.furya.xyz/account/${accountAddress}" + "tx_page": "https://explorer.furya.xyz/furya/tx/${txHash}", + "account_page": "https://explorer.furya.xyz/furya/account/${accountAddress}" + }, + { + "kind": "Nodeshub Explorer", + "url": "https://explorer.nodeshub.online/furya", + "tx_page": "https://explorer.nodeshub.online/furya/txs/${txHash}", + "account_page": "https://explorer.nodeshub.online/furya/account/${accountAddress}" } ], "images": [ diff --git a/fxcore/assetlist.json b/fxcore/assetlist.json index 366d7245ae..93717c1ee2 100644 --- a/fxcore/assetlist.json +++ b/fxcore/assetlist.json @@ -36,12 +36,12 @@ { "denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", "exponent": 0, - "aliases": [ ] + "aliases": [] }, { "denom": "PUNDIX", "exponent": 18, - "aliases": [ ] + "aliases": [] } ], "base": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", diff --git a/fxcore/chain.json b/fxcore/chain.json index 4b6fe694f6..684fe697ce 100644 --- a/fxcore/chain.json +++ b/fxcore/chain.json @@ -178,6 +178,11 @@ "id": "6e8818051a2ca9b8be67a6f2ba48c33d8c489d5c", "address": "fxcore-mainnet-node-5.functionx.io:26656", "provider": "Function X" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "functionx.rpc.nodeshub.online:24256", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -186,12 +191,20 @@ { "address": "https://fx-json.functionx.io", "provider": "Function X" + }, + { + "address": "https://functionx.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "rest": [ { "address": "https://fx-rest.functionx.io", "provider": "Function X" + }, + { + "address": "https://functionx.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ @@ -202,6 +215,10 @@ { "address": "https://fx-grpc.portfolio-x.xyz:9090", "provider": "Portfolio X" + }, + { + "address": "functionx.grpc.nodeshub.online", + "provider": "Nodes Hub" } ], "evm-http-jsonrpc": [ @@ -228,6 +245,12 @@ "kind": "ping.pub", "url": "https://ping.pub/fxcore", "tx_page": "https://ping.pub/fxcore/tx/${txHash}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/fxcore/", + "tx_page": "https://explorer.nodeshub.online/fxcore/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/fxcore/accounts/${accountAddress}" } ] } diff --git a/galactica/images/galactica.png b/galactica/images/galactica.png new file mode 100644 index 0000000000..4389cf1101 Binary files /dev/null and b/galactica/images/galactica.png differ diff --git a/galactica/images/galactica.svg b/galactica/images/galactica.svg new file mode 100644 index 0000000000..c7d450a142 --- /dev/null +++ b/galactica/images/galactica.svg @@ -0,0 +1 @@ + diff --git a/gateway/assetlist.json b/gateway/assetlist.json index ffd3a134d1..e3ef40650b 100644 --- a/gateway/assetlist.json +++ b/gateway/assetlist.json @@ -679,6 +679,48 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png" } + }, + { + "description": "W is the native token powering the Wormhole interoperability platform.", + "type_asset": "sdk.coin", + "address": "wormhole1zecpd6puhcpgqgkjtwr59cc8cj3v89c5jkx0vr26fcclhhv7pmfqsuurzm", + "denom_units": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos", + "exponent": 0 + }, + { + "denom": "w", + "exponent": 6 + } + ], + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos", + "name": "Wormhole Token", + "display": "w", + "symbol": "W", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ" + }, + "provider": "Wormhole" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png" + }, + "coingecko_id": "", + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png" + } + ] } ] -} +} \ No newline at end of file diff --git a/gateway/chain.json b/gateway/chain.json index 8432097bbf..559e342426 100644 --- a/gateway/chain.json +++ b/gateway/chain.json @@ -155,4 +155,4 @@ "keywords": [ "bridge" ] -} +} \ No newline at end of file diff --git a/genesisl1/chain.json b/genesisl1/chain.json index 9a96253a31..98776b3dc3 100644 --- a/genesisl1/chain.json +++ b/genesisl1/chain.json @@ -141,4 +141,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg" } ] -} +} \ No newline at end of file diff --git a/gitopia/assetlist.json b/gitopia/assetlist.json index 8c2f422ec8..cc900fb840 100644 --- a/gitopia/assetlist.json +++ b/gitopia/assetlist.json @@ -33,7 +33,7 @@ ], "coingecko_id": "gitopia", "socials": { - "webiste": "https://gitopia.com/", + "website": "https://gitopia.com/", "twitter": "https://twitter.com/gitopiaDAO" } } diff --git a/gitopia/chain.json b/gitopia/chain.json index 0d64e67cf4..f2a274e990 100644 --- a/gitopia/chain.json +++ b/gitopia/chain.json @@ -299,6 +299,11 @@ "id": "c160c99489ca08ce5c59af1025460544619acdad", "address": "peer-gitopia.tothemars.network:21156", "provider": "ToTheMars" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "gitopia.declab.pro:26627", + "provider": "Decloud Nodes Lab" } ] }, @@ -419,6 +424,14 @@ { "address": "https://gitopia-rpc.tothemars.network:443", "provider": "ToTheMars" + }, + { + "address": "https://gitopia.declab.pro:26625", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://gitopia-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -541,6 +554,14 @@ { "address": "https://gitopia-api.tothemars.network:443", "provider": "ToTheMars" + }, + { + "address": "https://gitopia.declab.pro:443", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://gitopia-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -655,6 +676,14 @@ { "address": "gitopia-grpc.tothemars.network:21190", "provider": "ToTheMars" + }, + { + "address": "https://gitopia.declab.pro:9017", + "provider": "Decloud Nodes Lab" + }, + { + "address": "gitopia-grpc.noders.services:19090", + "provider": "[NODERS]TEAM" } ] }, @@ -748,6 +777,12 @@ "url": "https://explorer.tothemars.network/gitopia", "tx_page": "https://explorer.tothemars.network/gitopia/tx/${txHash}", "account_page": "https://explorer.tothemars.network/gitopia/account/${accountAddress}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Gitopia", + "tx_page": "https://explorer.declab.pro/Gitopia/tx/${txHash}", + "account_page": "https://explorer.declab.pro/Gitopia/account/${accountAddress}" } ], "logo_URIs": { diff --git a/govgen/assetlist.json b/govgen/assetlist.json index 657158ccd3..78fbb6d6fe 100644 --- a/govgen/assetlist.json +++ b/govgen/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/govgen/chain.json b/govgen/chain.json index 46439b3358..437ddae66d 100644 --- a/govgen/chain.json +++ b/govgen/chain.json @@ -76,7 +76,7 @@ "windows/arm64": "https://github.com/atomone-hub/govgen/releases/download/v1.0.1/govgend-v1.0.1-windows-arm64.exe" } } - ] + ] }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.png", @@ -93,112 +93,112 @@ ], "persistent_peers": [ { - "id" : "e43fa897f5d4521cf979b2b45c1c7ce6ce7526ca", - "address" :"167.235.183.213:26656" + "id": "e43fa897f5d4521cf979b2b45c1c7ce6ce7526ca", + "address": "167.235.183.213:26656" }, { - "id" : "148d010cbeb45140f190abfee435f42347d2c195", - "address" :"65.108.71.140:26656" + "id": "148d010cbeb45140f190abfee435f42347d2c195", + "address": "65.108.71.140:26656" }, { - "id" : "ae3b7efbe5bddff191b53b769767e835c2365241", - "address" :"46.166.172.240:26656" + "id": "ae3b7efbe5bddff191b53b769767e835c2365241", + "address": "46.166.172.240:26656" }, { - "id" : "644a1458bb4db8f0bfd730d5cd59356be31d7f0b", - "address" :"37.120.245.28:26656" + "id": "644a1458bb4db8f0bfd730d5cd59356be31d7f0b", + "address": "37.120.245.28:26656" }, { - "id" : "803b2b7d296305b21e2bde0e7a176ee817dfb32a", - "address" :"65.109.61.113:26656" + "id": "803b2b7d296305b21e2bde0e7a176ee817dfb32a", + "address": "65.109.61.113:26656" }, { - "id" : "9878ffec4ee8374c379ecb20f6969113c74bdf5b", - "address" :"5.78.74.23:26656" + "id": "9878ffec4ee8374c379ecb20f6969113c74bdf5b", + "address": "5.78.74.23:26656" }, { - "id" : "1504dc323cf076fe3d67cf44957b1b11542be4f1", - "address" :"46.4.49.232:26656" + "id": "1504dc323cf076fe3d67cf44957b1b11542be4f1", + "address": "46.4.49.232:26656" }, { - "id" : "305477e5d173676b37063c19ebb3fc54865031c5", - "address" :"135.181.238.46:26656" + "id": "305477e5d173676b37063c19ebb3fc54865031c5", + "address": "135.181.238.46:26656" }, { - "id" : "8ba4d316ba11ae5bffea99c1b9054d6e48949899", - "address" :"89.40.15.222:26656" + "id": "8ba4d316ba11ae5bffea99c1b9054d6e48949899", + "address": "89.40.15.222:26656" }, { - "id" : "9fd44b4268f5b5f404deb49d5d51cfe63e36fe27", - "address" :"57.128.22.99:26656" + "id": "9fd44b4268f5b5f404deb49d5d51cfe63e36fe27", + "address": "57.128.22.99:26656" }, { - "id" : "ff3ce867466db0ca067af1858f18973a40f994ba", - "address" :"65.108.73.124:26656" + "id": "ff3ce867466db0ca067af1858f18973a40f994ba", + "address": "65.108.73.124:26656" }, { - "id" : "7b6b5e6bd22012b57c766d7aa29e62a7cdfa1ffd", - "address" :"135.181.164.90:26656" + "id": "7b6b5e6bd22012b57c766d7aa29e62a7cdfa1ffd", + "address": "135.181.164.90:26656" }, { - "id" : "330790318fe0a434506cbd9e67b3cf2fb3a70776", - "address" :"172.235.61.162:26656" + "id": "330790318fe0a434506cbd9e67b3cf2fb3a70776", + "address": "172.235.61.162:26656" }, { - "id" : "aebe4bf557b694414a0b9419f6914989d8b20697", - "address" :"141.94.209.185:26656" + "id": "aebe4bf557b694414a0b9419f6914989d8b20697", + "address": "141.94.209.185:26656" }, { - "id" : "e82e3a9e9d216928b9880a8b7a231b89fee85a71", - "address" :"95.217.117.37:26656" + "id": "e82e3a9e9d216928b9880a8b7a231b89fee85a71", + "address": "95.217.117.37:26656" }, { - "id" : "53725e6241835df4e9aa3d79b17283df80ec8d8b", - "address" :"139.144.52.201:26656" + "id": "53725e6241835df4e9aa3d79b17283df80ec8d8b", + "address": "139.144.52.201:26656" }, { - "id" : "b061dfcf7d6bacc0b65d7105ae95856a1911f236", - "address" :"5.181.190.76:26656" + "id": "b061dfcf7d6bacc0b65d7105ae95856a1911f236", + "address": "5.181.190.76:26656" }, { - "id" : "d5b35e38d8e8de778273433380354a309e0a1415", - "address" :"207.244.80.234:26656" + "id": "d5b35e38d8e8de778273433380354a309e0a1415", + "address": "207.244.80.234:26656" }, { - "id" : "f1a765e98c98a067275b4831e447aaebb45ae8b5", - "address" :"135.181.113.225:26656" + "id": "f1a765e98c98a067275b4831e447aaebb45ae8b5", + "address": "135.181.113.225:26656" }, { - "id" : "4882ff4d312733d5abf30e76e588e92cd1e941fa", - "address" :"65.109.103.214:26656" + "id": "4882ff4d312733d5abf30e76e588e92cd1e941fa", + "address": "65.109.103.214:26656" }, { - "id" : "cb573bb313fd190eed685d6bd5a7d8254d05d8fb", - "address" :"107.155.81.106:26656" + "id": "cb573bb313fd190eed685d6bd5a7d8254d05d8fb", + "address": "107.155.81.106:26656" }, { - "id" : "56661d3c3739cc9eba7422825db3cb15b412fac6", - "address" :"95.217.122.104:26656" + "id": "56661d3c3739cc9eba7422825db3cb15b412fac6", + "address": "95.217.122.104:26656" }, { - "id" : "6297ac573eabe2ed825eeb824fefa3fe09eaa1cb", - "address" :"152.53.34.76:26656" + "id": "6297ac573eabe2ed825eeb824fefa3fe09eaa1cb", + "address": "152.53.34.76:26656" }, { - "id" : "e55acdd96d2be959659b82e07bf4e1616e6ed3b9", - "address" :"167.235.242.236:26656" + "id": "e55acdd96d2be959659b82e07bf4e1616e6ed3b9", + "address": "167.235.242.236:26656" }, { - "id" : "00044f57ee86c3c487e061fd5504a72d57b650ca", - "address" :"162.19.169.74:26656" + "id": "00044f57ee86c3c487e061fd5504a72d57b650ca", + "address": "162.19.169.74:26656" }, { - "id" : "94ded263f7bf10f14eca7fd5ed99541b2ba78d02", - "address" :"85.215.114.180:26656" + "id": "94ded263f7bf10f14eca7fd5ed99541b2ba78d02", + "address": "85.215.114.180:26656" }, { - "id" : "62bdb851cb7d4174b9d8ecf90613cf7ca14d517c", - "address" :"65.108.227.114:26656" + "id": "62bdb851cb7d4174b9d8ecf90613cf7ca14d517c", + "address": "65.108.227.114:26656" } ] }, @@ -212,7 +212,7 @@ "address": "https://rpc-govgen.sg-1.online/", "provider": "SG-1" }, - { + { "address": "https://govgen.rpc.nodeshub.online:443", "provider": "Nodes Hub" }, @@ -223,11 +223,15 @@ { "address": "https://rpc.govgen.posthuman.digital:443", "provider": "posthuman" + }, + { + "address": "https://rpc-govgen.kewrnode.com/", + "provider": "Kewr Node" } ], "rest": [ { - "address":"https://api.govgen.io/", + "address": "https://api.govgen.io/", "provider": "AllInBits" }, { @@ -245,6 +249,10 @@ { "address": "https://rest.govgen.posthuman.digital:443", "provider": "posthuman" + }, + { + "address": "https://rest-govgen.kewrnode.com/", + "provider": "Kewr Node" } ], "grpc": [ @@ -300,4 +308,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.svg" } ] -} +} \ No newline at end of file diff --git a/gravitybridge/assetlist.json b/gravitybridge/assetlist.json index 3d8208aa53..b94ccc7d71 100644 --- a/gravitybridge/assetlist.json +++ b/gravitybridge/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.gravitybridge.net/", + "website": "https://www.gravitybridge.net/", "twitter": "https://twitter.com/gravity_bridge" } }, @@ -399,7 +399,6 @@ "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": [ { @@ -421,6 +420,47 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" } ] + }, + { + "description": "Gravity Bridge Paxos Gold", + "denom_units": [ + { + "denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "exponent": 0 + }, + { + "denom": "gpaxg", + "exponent": 18 + } + ], + "base": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "name": "Paxos Gold", + "display": "gpaxg", + "symbol": "PAXG", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg" + }, + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x45804880De22913dAFE09f4980848ECE6EcbAf78" + }, + "provider": "Gravity Bridge" + } + ], + "images": [ + { + "image_sync": { + "base_denom": "ethereum", + "chain_name": "0x45804880De22913dAFE09f4980848ECE6EcbAf78" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg" + } + ] } ] -} +} \ No newline at end of file diff --git a/gravitybridge/chain.json b/gravitybridge/chain.json index 4dc8032732..da8af33217 100644 --- a/gravitybridge/chain.json +++ b/gravitybridge/chain.json @@ -317,10 +317,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/gravitybridge", + "tx_page": "https://ezstaking.app/gravitybridge/txs/${txHash}", + "account_page": "https://ezstaking.app/gravitybridge/account/${accountAddress}" }, { "kind": "mintscan", @@ -353,6 +353,12 @@ "kind": "Stakeflow", "url": "https://stakeflow.io/gravity-bridge", "account_page": "https://stakeflow.io/gravity-bridge/accounts/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/GravityBridge", + "tx_page": "https://explorer.stavr.tech/GravityBridge/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/GravityBridge/accounts/${accountAddress}" } ], "images": [ @@ -361,4 +367,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg" } ] -} +} \ No newline at end of file diff --git a/haqq/chain.json b/haqq/chain.json index 732c52f06a..da481fc4af 100644 --- a/haqq/chain.json +++ b/haqq/chain.json @@ -36,16 +36,16 @@ }, "codebase": { "git_repo": "https://github.com/haqq-network/haqq", - "recommended_version": "v1.7.3", + "recommended_version": "v1.7.4", "compatible_versions": [ - "v1.7.3" + "v1.7.4" ], "binaries": { - "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Windows_x86_64.zip" + "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Windows_x86_64.zip" }, "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.5-evmos", "consensus": { @@ -419,6 +419,30 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Windows_x86_64.zip" }, + "next_version_name": "v1.7.4" + }, + { + "name": "v1.7.4", + "tag": "v1.7.4", + "recommended_version": "v1.7.4", + "compatible_versions": [ + "v1.7.4" + ], + "proposal": 31, + "height": 10881000, + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.5-evmos", + "consensus": { + "type": "cometbft", + "version": "v0.37.3" + }, + "ibc_go_version": "7.3.1", + "binaries": { + "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Windows_x86_64.zip" + }, "next_version_name": "" } ] @@ -517,6 +541,10 @@ { "address": "https://haqq-rpc.palamar.io", "provider": "Palamar" + }, + { + "address": "https://haqq-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -551,6 +579,10 @@ { "address": "https://haqq-api.palamar.io", "provider": "Palamar" + }, + { + "address": "https://haqq-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -589,6 +621,10 @@ { "address": "haqq-grpc.palamar.io:443", "provider": "Palamar" + }, + { + "address": "haqq-grpc.noders.services:14090", + "provider": "[NODERS]TEAM" } ], "evm-http-jsonrpc": [ @@ -619,6 +655,10 @@ { "address": "https://evm-haqq.sr20de.xyz", "provider": "Sr20de" + }, + { + "address": "https://haqq-jsonrpc.noders.services", + "provider": "[NODERS]TEAM" } ] }, @@ -660,4 +700,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.svg" } ] -} +} \ No newline at end of file diff --git a/highbury/assetlist.json b/highbury/assetlist.json index 16d7b2d3c2..0111dfe7ef 100644 --- a/highbury/assetlist.json +++ b/highbury/assetlist.json @@ -71,7 +71,7 @@ ], "base": "jinxy", "name": "Jinxy", - "display": "JINXy", + "display": "JINXY", "symbol": "JINXy", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.png", diff --git a/humans/assetlist.json b/humans/assetlist.json index ae79d1d9b3..e0b06de003 100644 --- a/humans/assetlist.json +++ b/humans/assetlist.json @@ -33,9 +33,9 @@ } ], "socials": { - "webiste": "https://humans.ai/", + "website": "https://humans.ai/", "twitter": "https://twitter.com/humansdotai" } } ] -} +} \ No newline at end of file diff --git a/humans/chain.json b/humans/chain.json index 3086b058b3..4532dd97a2 100644 --- a/humans/chain.json +++ b/humans/chain.json @@ -9,8 +9,12 @@ "bech32_prefix": "human", "node_home": "$HOME/.humansd", "daemon_name": "humansd", - "key_algos": ["ethsecp256k1"], - "extra_codecs": ["ethermint"], + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], "slip44": 60, "fees": { "fee_tokens": [ @@ -33,7 +37,9 @@ "codebase": { "git_repo": "https://github.com/humansdotai/", "recommended_version": "v1.0.0", - "compatible_versions": ["v1.0.0"], + "compatible_versions": [ + "v1.0.0" + ], "cosmos_sdk_version": "0.46.11", "consensus": { "type": "cometbft", @@ -46,7 +52,9 @@ { "name": "v1.0.0", "recommended_version": "v1.0.0", - "compatible_versions": ["v1.0.0"], + "compatible_versions": [ + "v1.0.0" + ], "consensus": { "type": "cometbft", "version": "0.34.27" @@ -77,13 +85,18 @@ }, { "id": "0e959a22dfdd34ac16f9af82d76ec6ae5f0e8e73", - "address": "46.4.14.172:10256", + "address": "135.181.75.235:10256", "provider": "PPNV Service" }, { "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "humans-mainnet-seed.autostake.com:27536", + "provider": "AutoStake 🛡️ Slash Protected" } ], "persistent_peers": [ @@ -98,8 +111,8 @@ "provider": "Nodes Hub" }, { - "id": "fd66247c122117190c9f2e7a09797e4039a05ba2", - "address": "46.4.14.172:16656", + "id": "2ad3cae310d94b7795a248ca2137577a5d26797a", + "address": "135.181.75.235:13656", "provider": "PPNV Service" }, { @@ -111,6 +124,11 @@ "id": "9193e655f0581b4acf2e87976ac0b55795359742", "address": "167.235.177.226:26656", "provider": "[NODERS]TEAM" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "humans-mainnet-peer.autostake.com:27536", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, @@ -153,7 +171,7 @@ "provider": "KonsorTech" }, { - "address": "http://46.4.14.172:16657", + "address": "http://135.181.75.235:13657", "provider": "PPNV Service" }, { @@ -163,6 +181,14 @@ { "address": "https://rpc.humans.posthuman.digital", "provider": "posthuman" + }, + { + "address": "https://humans-rpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://humans-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], "rest": [ @@ -199,7 +225,7 @@ "provider": "KonsorTech" }, { - "address": "http://46.4.14.172:16317", + "address": "http://135.181.75.235:13317", "provider": "PPNV Service" }, { @@ -209,6 +235,14 @@ { "address": "https://rest.humans.posthuman.digital", "provider": "posthuman" + }, + { + "address": "https://humans-api.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://humans-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], "grpc": [ @@ -237,12 +271,20 @@ "provider": "[NODERS]TEAM" }, { - "address": "46.4.14.172:16090", + "address": "http://135.181.75.235:13090", "provider": "PPNV Service" }, { "address": "https://grpc-humans.cosmos-spaces.cloud:1190", "provider": "StakePool" + }, + { + "address": "humans-grpc.noders.services:21090", + "provider": "[NODERS]TEAM" + }, + { + "address": "humans-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], "evm-http-jsonrpc": [ @@ -269,6 +311,10 @@ { "address": "https://evm.humans.posthuman.digital", "provider": "posthuman" + }, + { + "address": "https://humans-jsonrpc.noders.services", + "provider": "[NODERS]TEAM" } ] }, @@ -279,10 +325,10 @@ "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": "ezstaking", + "url": "https://ezstaking.app/humans", + "tx_page": "https://ezstaking.app/humans/txs/${txHash}", + "account_page": "https://ezstaking.app/humans/account/${accountAddress}" }, { "kind": "ping.pub", @@ -318,4 +364,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg" } ] -} +} \ No newline at end of file diff --git a/ibc_data.schema.json b/ibc_data.schema.json index fe1968e512..9f9b55b03c 100644 --- a/ibc_data.schema.json +++ b/ibc_data.schema.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "https://json-schema.org/draft-07/schema", + "title": "IBCData", "type": "object", "required": [ "chain_1", @@ -49,6 +50,10 @@ "type": "string", "description": "IBC Version" }, + "fee_version": { + "type": "string", + "description": "Fee Version" + }, "description": { "type": "string", "description": "Human readable description of the channel." diff --git a/idep/chain.json b/idep/chain.json index 3440849f51..f2f2c04ed7 100644 --- a/idep/chain.json +++ b/idep/chain.json @@ -87,12 +87,6 @@ ] }, "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", diff --git a/impacthub/chain.json b/impacthub/chain.json index 0d4cb23075..69f7c2d225 100644 --- a/impacthub/chain.json +++ b/impacthub/chain.json @@ -34,23 +34,35 @@ }, "codebase": { "git_repo": "https://github.com/ixofoundation/ixo-blockchain", - "recommended_version": "v2.0.0", + "recommended_version": "v3.0.0", "compatible_versions": [ - "v2.0.0" + "v3.0.0" ], + "cosmos_sdk_version": "v0.45.16", + "ibc_go_version": "v4.4.1", + "consensus": { + "type": "cometbft", + "version": "v0.34.27" + }, "genesis": { "genesis_url": "https://github.com/ixofoundation/genesis/raw/bc042e1223d551b22d55c155de06e662ca24d2f2/ixo-5/genesis.json.tar.gz" }, "versions": [ { "name": "v0.20.0", + "proposal": 403, + "height": 1254500, "recommended_version": "v0.20.1", "compatible_versions": [ "v0.20.0", "v0.20.1" ], - "proposal": 403, - "height": 1254500, + "cosmos_sdk_version": "v0.45.12", + "ibc_go_version": "v4.3.0", + "consensus": { + "type": "tendermint", + "version": "v0.34.24" + }, "next_version_name": "v2" }, { @@ -61,6 +73,28 @@ "compatible_versions": [ "v2.0.0" ], + "cosmos_sdk_version": "v0.45.16", + "ibc_go_version": "v4.4.1", + "consensus": { + "type": "cometbft", + "version": "v0.34.27" + }, + "next_version_name": "v3" + }, + { + "name": "v3", + "proposal": 447, + "height": 6556300, + "recommended_version": "v3.0.0", + "compatible_versions": [ + "v3.0.0" + ], + "cosmos_sdk_version": "v0.45.16", + "ibc_go_version": "v4.4.1", + "consensus": { + "type": "cometbft", + "version": "v0.34.27" + }, "next_version_name": "" } ] @@ -175,10 +209,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/ixo", + "tx_page": "https://ezstaking.app/ixo/txs/${txHash}", + "account_page": "https://ezstaking.app/ixo/account/${accountAddress}" }, { "kind": "🔥STAVR🔥", @@ -215,4 +249,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" } ] -} +} \ No newline at end of file diff --git a/imversed/chain.json b/imversed/chain.json index b675a84e6e..8eedcc0404 100644 --- a/imversed/chain.json +++ b/imversed/chain.json @@ -111,4 +111,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg" } ] -} +} \ No newline at end of file diff --git a/injective/assetlist.json b/injective/assetlist.json index ea7c3ffe49..9f7778abfe 100644 --- a/injective/assetlist.json +++ b/injective/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://injective.com/", + "website": "https://injective.com/", "twitter": "https://twitter.com/Injective_" } }, @@ -265,12 +265,12 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg" }, "socials": { - "webiste": "https://gelotto.io/", + "website": "https://gelotto.io/", "twitter": "https://twitter.com/Gelotto2" } }, { - "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/", + "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters.", "denom_units": [ { "denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", @@ -285,6 +285,7 @@ "name": "Hava Coin", "display": "hava", "symbol": "HAVA", + "coingecko_id": "hava-coin", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png" }, @@ -292,7 +293,11 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png" } - ] + ], + "socials": { + "website": "https://havacoin.xyz/", + "twitter": "https://twitter.com/Hava_Coin" + } }, { "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", @@ -387,6 +392,98 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png" } ] + }, + { + "description": "BEAST-ERC20 on injective", + "denom_units": [ + { + "denom": "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", + "exponent": 0 + }, + { + "denom": "beast", + "exponent": 6 + } + ], + "base": "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", + "name": "Gelotto BEAST", + "display": "beast", + "symbol": "BEAST", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xA4426666addBE8c4985377d36683D17FB40c31Be" + }, + "provider": "Peggy" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xA4426666addBE8c4985377d36683D17FB40c31Be" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png" + }, + "socials": { + "website": "https://gelotto.io/", + "twitter": "https://twitter.com/Gelotto2" + } + }, + { + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "denom_units": [ + { + "denom": "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", + "exponent": 0, + "aliases": [ + "uastro" + ] + }, + { + "denom": "astro", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", + "name": "Astroport token", + "display": "astro", + "symbol": "ASTRO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "channel_id": "channel-60" + }, + "chain": { + "channel_id": "channel-177", + "path": "transfer/channel-177/factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + } } ] -} +} \ No newline at end of file diff --git a/injective/chain.json b/injective/chain.json index 086404c1f4..98999c3924 100644 --- a/injective/chain.json +++ b/injective/chain.json @@ -216,7 +216,11 @@ "apis": { "rpc": [ { - "address": "https://rpc-injective.goldenratiostaking.net", + "address": "https://injective-1-public-rpc.mesa.ec1-prod.newmetric.xyz", + "provider": "NewMetric" + }, + { + "address": "https://rpc.injective.goldenratiostaking.net", "provider": "Golden Ratio Staking" }, { @@ -248,7 +252,7 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://injective-rpc.highstakes.ch:26657/", + "address": "https://injective-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -258,9 +262,17 @@ { "address": "https://rpc.injective.bronbro.io/", "provider": "Bro_n_Bro" + }, + { + "address": "https://injective-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ + { + "address": "https://injective-1-public-rest.mesa.ec1-prod.newmetric.xyz", + "provider": "NewMetric" + }, { "address": "https://api-injective-ia.cosmosia.notional.ventures/", "provider": "Notional" @@ -282,7 +294,7 @@ "provider": "Stakeflow" }, { - "address": "https://rest-injective.goldenratiostaking.net", + "address": "https://rest.injective.goldenratiostaking.net", "provider": "Golden Ratio Staking" }, { @@ -294,7 +306,7 @@ "provider": "AutoStake 🛡️ Slash Protected" }, { - "address": "https://injective-api.highstakes.ch:1317/", + "address": "https://injective-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -304,9 +316,17 @@ { "address": "https://lcd.injective.bronbro.io/", "provider": "Bro_n_Bro" + }, + { + "address": "https://injective-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ + { + "address": "k8s-injectiv-publicin-731c880328-0f3d7889b57e31a3.elb.eu-central-1.amazonaws.com:80", + "provider": "NewMetric" + }, { "address": "grpc-injective-ia.cosmosia.notional.ventures:443", "provider": "Notional" @@ -354,10 +374,20 @@ { "address": "grpc.injective.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "injective-grpc.noders.services:33090", + "provider": "[NODERS]TEAM" } ] }, "explorers": [ + { + "kind": "ezstaking", + "url": "https://ezstaking.app/injective", + "tx_page": "https://ezstaking.app/injective/txs/${txHash}", + "account_page": "https://ezstaking.app/injective/account/${accountAddress}" + }, { "kind": "injectiveprotocol", "url": "https://explorer.injective.network/", @@ -392,4 +422,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" } ] -} +} \ No newline at end of file diff --git a/irisnet/chain.json b/irisnet/chain.json index 2161a3c9d6..51df780da9 100644 --- a/irisnet/chain.json +++ b/irisnet/chain.json @@ -137,7 +137,7 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://iris-rpc.highstakes.ch:26657/", + "address": "https://iris-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -163,7 +163,7 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://iris-api.highstakes.ch:1317/", + "address": "https://iris-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -218,10 +218,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/irisnet", + "tx_page": "https://ezstaking.app/irisnet/txs/${txHash}", + "account_page": "https://ezstaking.app/irisnet/account/${accountAddress}" }, { "kind": "mintscan", diff --git a/jackal/chain.json b/jackal/chain.json index 4f7c05ef9a..12f1f5e0ba 100644 --- a/jackal/chain.json +++ b/jackal/chain.json @@ -33,13 +33,14 @@ }, "codebase": { "git_repo": "https://github.com/JackalLabs/canine-chain", - "recommended_version": "v3.2.0", + "recommended_version": "v3.2.2", "compatible_versions": [ - "v3.2.0" + "v3.2.1", + "v3.2.2" ], "binaries": { - "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.0/canined-Linux", - "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.0/canined-macOS" + "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.2/canined-Linux", + "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.2/canined-macOS" }, "genesis": { "genesis_url": "https://cdn.discordapp.com/attachments/1002389406650466405/1034968352591986859/updated_genesis2.json" @@ -127,17 +128,18 @@ }, { "name": "v3.2.0", - "tag": "V3.2.0", + "tag": "V3.2.2", "proposal": 12, "height": 6835000, - "recommended_version": "v3.2.0", + "recommended_version": "v3.2.2", "compatible_versions": [ - "v3.2.0" + "v3.2.1", + "v3.2.2" ], "cosmwasm_enabled": true, "binaries": { - "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.0/canined-Linux", - "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.0/canined-macOS" + "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.2/canined-Linux", + "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.2/canined-macOS" }, "next_version_name": "" } @@ -285,6 +287,10 @@ { "address": "https://jackal-rpc.kleomedes.network", "provider": "Kleomedes" + }, + { + "address": "https://jackal-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -351,6 +357,10 @@ { "address": "https://jackal-api.kleomedes.network", "provider": "Kleomedes" + }, + { + "address": "https://jackal-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -397,6 +407,10 @@ { "address": "grpc.jackal.silentvalidator.com:443", "provider": "silent" + }, + { + "address": "jackal-grpc.noders.services:26090", + "provider": "[NODERS]TEAM" } ] }, @@ -443,4 +457,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg" } ] -} +} \ No newline at end of file diff --git a/juno/assetlist.json b/juno/assetlist.json index 488fa46fbf..2b8da6c38a 100644 --- a/juno/assetlist.json +++ b/juno/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://junonetwork.io/", + "website": "https://junonetwork.io/", "twitter": "https://twitter.com/JunoNetwork" } }, @@ -131,7 +131,6 @@ "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", @@ -161,7 +160,6 @@ "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", @@ -278,7 +276,6 @@ "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", @@ -505,7 +502,6 @@ "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", @@ -535,7 +531,6 @@ "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", @@ -657,7 +652,7 @@ ] }, { - "description": "The native token cw20 for Fanfury on Juno Chain", + "description": "The deprecated cw20 token for Fanfury on Juno Chain", "type_asset": "cw20", "address": "juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", "denom_units": [ @@ -671,9 +666,9 @@ } ], "base": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", - "name": "Fanfury", + "name": "FURY.legacy", "display": "fury", - "symbol": "FURY", + "symbol": "FURY.legacy", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png" }, @@ -736,7 +731,6 @@ "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", @@ -842,7 +836,7 @@ "exponent": 6 } ], - "base": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "base": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", "name": "Banana Token", "display": "banana", "symbol": "BANANA", @@ -2022,33 +2016,156 @@ ] }, { - "type_asset": "sdk.coin", + "description": "BackBone Labs Liquid Staked JUNO", + "type_asset": "cw20", + "address": "juno1mvkgcr5uce2rnpzr4qrzf50hx4qreuwzlt7fzsjrhjud3xnjmttq5mkh2m", + "denom_units": [ + { + "denom": "cw20:juno1mvkgcr5uce2rnpzr4qrzf50hx4qreuwzlt7fzsjrhjud3xnjmttq5mkh2m", + "exponent": 0 + }, + { + "denom": "bJUNO", + "exponent": 6 + } + ], + "base": "cw20:juno1mvkgcr5uce2rnpzr4qrzf50hx4qreuwzlt7fzsjrhjud3xnjmttq5mkh2m", + "name": "BackBone Labs Liquid Staked JUNO", + "display": "bJUNO", + "symbol": "bJUNO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bJUNO-bbl.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bJUNO-bbl.png" + } + ], + "coingecko_id": "backbone-labs-staked-juno" + }, + { + "type_asset": "ics20", + "description": "USD Coin on Juno", + "denom_units": [ + { + "denom": "ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF", + "exponent": 0, + "aliases": [ + "uusdc", + "microusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "base": "ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "coingecko_id": "usd-coin", + "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": [ + { + "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" + } + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-3", + "base_denom": "uusdc", + "chain_name": "noble" + }, + "chain": { + "channel_id": "channel-224", + "path": "transfer/channel-224/uusdc" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2", + "exponent": 0, + "aliases": [ + "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + ] + }, + { + "denom": "rstk", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2", + "name": "Restake DAO Token", + "display": "rstk", + "symbol": "RSTK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-210", + "path": "transfer/channel-210/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + } + }, + { "denom_units": [ { - "denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", + "denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", "exponent": 0 }, { - "denom": "arena", + "denom": "wind", "exponent": 6 } ], - "address": "juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy", - "base": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", - "name": "Arena Token", - "description": "The token for the Arena DAO", - "display": "arena", - "symbol": "ARENA", + "address": "juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq", + "base": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "name": "Wind Token", + "display": "wind", + "symbol": "WIND", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png" } ] } ] -} \ No newline at end of file +} diff --git a/juno/chain.json b/juno/chain.json index 3fff03186c..73c58c70c0 100644 --- a/juno/chain.json +++ b/juno/chain.json @@ -40,21 +40,21 @@ }, "codebase": { "git_repo": "https://github.com/CosmosContracts/juno", - "recommended_version": "v21.0.0", + "recommended_version": "v22.0.0", "compatible_versions": [ - "v21.0.0" + "v22.0.0" ], "binaries": { - "linux/amd64": "https://github.com/CosmosContracts/juno/releases/download/v21.0.0/junod" + "linux/amd64": "https://github.com/CosmosContracts/juno/releases/download/v22.0.0/junod" }, - "cosmos_sdk_version": "v0.47.6", + "cosmos_sdk_version": "v0.47.11-0.20240417094812-f556fd956fb1", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.5" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", + "ibc_go_version": "v7.4.0", "genesis": { "genesis_url": "https://download.dimi.sh/juno-phoenix2-genesis.tar.gz" }, @@ -213,12 +213,12 @@ "name": "v21", "proposal": 340, "height": 14556500, - "recommended_version": "v21.0.0", + "recommended_version": "v21.0.1", "compatible_versions": [ - "v21.0.0" + "v21.0.1" ], "binaries": { - "linux/amd64": "https://github.com/CosmosContracts/juno/releases/download/v21.0.0/junod" + "linux/amd64": "https://github.com/kintsugi-tech/juno/releases/download/v21.0.1/junod" }, "cosmos_sdk_version": "v0.47.6", "consensus": { @@ -228,6 +228,27 @@ "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, "ibc_go_version": "v7.3.1", + "next_version_name": "v22" + }, + { + "name": "v22", + "proposal": 347, + "height": 15873890, + "recommended_version": "v22.0.0", + "compatible_versions": [ + "v22.0.0" + ], + "binaries": { + "linux/amd64": "https://github.com/CosmosContracts/juno/releases/download/v22.0.0/junod" + }, + "cosmos_sdk_version": "v0.47.11-0.20240417094812-f556fd956fb1", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.4.0", "next_version_name": "" } ] @@ -323,6 +344,16 @@ "id": "77c33f62d34c20a0e795240f4548ab741ea558d9", "address": "138.201.21.121:24956", "provider": "Validatrium" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "juno.declab.pro:26612", + "provider": "Decloud Nodes Lab" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "juno.rpc.nodeshub.online:12656", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -381,7 +412,7 @@ "provider": "BlockHunters 🎯" }, { - "address": "https://juno.kingnodes.com", + "address": "https://juno-rpc.kingnodes.com", "provider": "kingnodes 👑" }, { @@ -435,6 +466,14 @@ { "address": "https://juno-rpc.cogwheel.zone", "provider": "Cogwheel" + }, + { + "address": "https://juno.declab.pro:26610", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://juno.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "rest": [ @@ -483,7 +522,7 @@ "provider": "BlockHunters 🎯" }, { - "address": "https://juno.kingnodes.com", + "address": "https://juno-rest.kingnodes.com", "provider": "kingnodes 👑" }, { @@ -533,6 +572,14 @@ { "address": "https://juno-api.cogwheel.zone", "provider": "Cogwheel" + }, + { + "address": "https://juno.declab.pro:443", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://juno.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ @@ -553,7 +600,7 @@ "provider": "🔥STAVR🔥" }, { - "address": "grpc-juno.kingnodes.com:443", + "address": "https://juno-grpc.kingnodes.com:443", "provider": "kingnodes 👑" }, { @@ -611,15 +658,23 @@ { "address": "juno-grpc.cogwheel.zone:443", "provider": "Cogwheel" + }, + { + "address": "https://juno.declab.pro:9007", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://juno.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, "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": "ezstaking", + "url": "https://ezstaking.app/juno", + "tx_page": "https://ezstaking.app/juno/txs/${txHash}", + "account_page": "https://ezstaking.app/juno/account/${accountAddress}" }, { "kind": "ping.pub", @@ -658,6 +713,17 @@ "kind": "Stakeflow", "url": "https://stakeflow.io/juno", "account_page": "https://stakeflow.io/juno/accounts/${accountAddress}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Juno", + "tx_page": "https://explorer.declab.pro/Juno/tx/${txHash}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/juno/", + "tx_page": "https://explorer.nodeshub.online/juno/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/juno/accounts/${accountAddress}" } ], "images": [ @@ -666,4 +732,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" } ] -} +} \ No newline at end of file diff --git a/juno/images/arena.png b/juno/images/arena.png deleted file mode 100644 index 3c9243e3cd..0000000000 Binary files a/juno/images/arena.png and /dev/null differ diff --git a/juno/images/bJUNO-bbl.png b/juno/images/bJUNO-bbl.png new file mode 100644 index 0000000000..ae8c8b02ea Binary files /dev/null and b/juno/images/bJUNO-bbl.png differ diff --git a/juno/images/wind.png b/juno/images/wind.png new file mode 100644 index 0000000000..46f412a87b Binary files /dev/null and b/juno/images/wind.png differ diff --git a/kava/assetlist.json b/kava/assetlist.json index 074f42831f..6c376b77d3 100644 --- a/kava/assetlist.json +++ b/kava/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "The native staking and governance token of Kava", + "extended_description": "The native staking and governance token of Kava\n\nKava is a Layer-1 blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum.\n\nThe Kava Network uses a developer-optimized co-chain architecture. The Ethereum Co-Chain enables support for EVM smart contracts while the Cosmos Co-Chain enables the lightning-fast Tendermint consensus engine and the Inter Blockchain Communication Protocol (IBC).\n\nThe two co-chains are connected by a translator module that enables them to interoperate seamlessly, bringing the two most used blockchain development environments together in a single, scalable network.\n\nThe Kava Network features a native governance and utility token, KAVA, that can be staked by validators or delegated to validator nodes. Stakers and delegators earn 37.5% of all KAVA emissions as a reward for securing the network. Kava stakers also have voting rights in network governance proposals.", "denom_units": [ { "denom": "ukava", @@ -30,7 +31,7 @@ } ], "socials": { - "webiste": "https://www.kava.io/", + "website": "https://www.kava.io/", "twitter": "https://twitter.com/KAVA_CHAIN" } }, diff --git a/kava/chain.json b/kava/chain.json index 1eed232d80..c27e4b3e0f 100644 --- a/kava/chain.json +++ b/kava/chain.json @@ -32,9 +32,9 @@ }, "codebase": { "git_repo": "https://github.com/kava-Labs/kava/", - "recommended_version": "v0.21.0", + "recommended_version": "v0.26.0", "compatible_versions": [ - "v0.21.0" + "v0.26.0" ], "genesis": { "genesis_url": "https://kava-genesis-files.s3.us-east-1.amazonaws.com/kava_2222-10/genesis.json" @@ -42,10 +42,53 @@ "versions": [ { "name": "v0.21.0", + "proposal": 124, + "height": 3607200, "recommended_version": "v0.21.0", "compatible_versions": [ "v0.21.0" - ] + ], + "next_version_name": "v0.23.0" + }, + { + "name": "v0.23.0", + "proposal": 139, + "height": 4832500, + "recommended_version": "v0.23.0", + "compatible_versions": [ + "v0.23.0" + ], + "next_version_name": "v0.24.0" + }, + { + "name": "v0.24.0", + "proposal": 146, + "height": 5597000, + "recommended_version": "v0.24.0", + "compatible_versions": [ + "v0.24.0" + ], + "next_version_name": "v0.25.0" + }, + { + "name": "v0.25.0", + "proposal": 163, + "height": 7638000, + "recommended_version": "v0.25.0", + "compatible_versions": [ + "v0.25.0" + ], + "next_version_name": "v0.26.0" + }, + { + "name": "v0.26.0", + "proposal": 178, + "height": 9561866, + "recommended_version": "v0.26.0", + "compatible_versions": [ + "v0.26.0" + ], + "next_version_name": "" } ] }, @@ -208,6 +251,12 @@ "tx_page": "https://www.mintscan.io/kava/transactions/${txHash}", "account_page": "https://www.mintscan.io/kava/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/kava", + "tx_page": "https://ezstaking.app/kava/txs/${txHash}", + "account_page": "https://ezstaking.app/kava/account/${accountAddress}" + }, { "kind": "ping.pub", "url": "https://ping.pub/kava", diff --git a/kichain/chain.json b/kichain/chain.json index 0cf5c14125..3f28d79fa9 100644 --- a/kichain/chain.json +++ b/kichain/chain.json @@ -205,10 +205,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/kichain", + "tx_page": "https://ezstaking.app/kichain/txs/${txHash}", + "account_page": "https://ezstaking.app/kichain/account/${accountAddress}" }, { "kind": "mintscan", @@ -239,4 +239,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg" } ] -} +} \ No newline at end of file diff --git a/kujira/assetlist.json b/kujira/assetlist.json index 50de72d140..7299968de0 100644 --- a/kujira/assetlist.json +++ b/kujira/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://kujira.network/", + "website": "https://kujira.network/", "twitter": "https://twitter.com/TeamKujira" } }, @@ -1082,6 +1082,1210 @@ "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": "BackBone Labs Liquid Staked KUJI", + "denom_units": [ + { + "denom": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "exponent": 0 + }, + { + "denom": "bKUJI", + "exponent": 6 + } + ], + "base": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "name": "BackBone Labs Liquid Staked KUJI", + "display": "bKUJI", + "symbol": "bKUJI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D", + "exponent": 0, + "aliases": [ + "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + ] + }, + { + "denom": "rstk", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D", + "name": "Restake DAO Token", + "display": "rstk", + "symbol": "RSTK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "channel_id": "channel-8" + }, + "chain": { + "channel_id": "channel-58", + "path": "transfer/channel-58/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + } + }, + { + "description": "Ghost Vault USK", + "denom_units": [ + { + "denom": "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", + "exponent": 0 + }, + { + "denom": "xusk", + "exponent": 6 + } + ], + "base": "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", + "name": "Ghost Vault USK", + "display": "xusk", + "symbol": "xUSK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png" + } + ] + }, + { + "description": "Ghost Vault MNTA", + "denom_units": [ + { + "denom": "factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt", + "exponent": 0 + }, + { + "denom": "xmnta", + "exponent": 6 + } + ], + "base": "factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt", + "name": "Ghost Vault MNTA", + "display": "xmnta", + "symbol": "xMNTA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xmnta.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xmnta.png" + } + ] + }, + { + "description": "Stride staked ATOM", + "denom_units": [ + { + "denom": "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", + "exponent": 0 + }, + { + "denom": "statom", + "exponent": 6 + } + ], + "base": "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuatom", + "channel_id": "channel-8" + }, + "chain": { + "channel_id": "channel-32", + "path": "transfer/channel-32/uatom" + } + } + ], + "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": [ + { + "image_sync": { + "chain_name": "stride", + "base_denom": "statom" + }, + "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": "Axelar Bridged wBTC", + "denom_units": [ + { + "denom": "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", + "exponent": 0 + }, + { + "denom": "wbtc.axl", + "exponent": 6 + } + ], + "base": "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", + "name": "Axelar Bridged wBTC", + "display": "wbtc.axl", + "symbol": "wBTC.axl", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "wbtc-satoshi", + "channel_id": "channel-14" + }, + "chain": { + "channel_id": "channel-32", + "path": "transfer/channel-9/wbtc-satoshi" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "axelar", + "base_denom": "wbtc-satoshi" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + } + ] + }, + { + "description": "Stride staked OSMO", + "denom_units": [ + { + "denom": "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", + "exponent": 0 + }, + { + "denom": "stosmo", + "exponent": 6 + } + ], + "base": "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", + "name": "Stride staked OSMO", + "display": "stosmo", + "symbol": "stOSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuosmo", + "channel_id": "channel-8" + }, + "chain": { + "channel_id": "channel-32", + "path": "transfer/channel-32/uosmo" + } + } + ], + "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": "LP Bow: DOT.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp", + "exponent": 0 + }, + { + "denom": "lp-dot-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp", + "name": "LP Bow: DOT.axl-MNTA", + "display": "lp-dot-mnta", + "symbol": "LP DOT.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: SHD-MNTA", + "denom_units": [ + { + "denom": "factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp", + "exponent": 0 + }, + { + "denom": "lp-shd-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp", + "name": "LP Bow: SHD-MNTA", + "display": "lp-shd-mnta", + "symbol": "LP SHD-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: DYDX-MNTA", + "denom_units": [ + { + "denom": "factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp", + "exponent": 0 + }, + { + "denom": "lp-dydx-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp", + "name": "LP Bow: DYDX-MNTA", + "display": "lp-dydx-mnta", + "symbol": "LP DYDX-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wAVAX.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp", + "exponent": 0 + }, + { + "denom": "lp-wavax-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp", + "name": "LP Bow: wAVAX.axl-MNTA", + "display": "lp-wavax-mnta", + "symbol": "LP wAVAX.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: CHEQ-MNTA", + "denom_units": [ + { + "denom": "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", + "exponent": 0 + }, + { + "denom": "lp-cheq-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", + "name": "LP Bow: CHEQ-MNTA", + "display": "lp-cheq-mnta", + "symbol": "LP CHEQ-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: FUZN-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp", + "exponent": 0 + }, + { + "denom": "lp-fuzn-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp", + "name": "LP Bow: FUZN-MNTA", + "display": "lp-fuzn-mnta", + "symbol": "LP FUZN-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: SOMM-MNTA", + "denom_units": [ + { + "denom": "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", + "exponent": 0 + }, + { + "denom": "lp-somm-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", + "name": "LP Bow: SOMM-MNTA", + "display": "lp-somm-mnta", + "symbol": "LP SOMM-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wETH.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp", + "exponent": 0 + }, + { + "denom": "lp-weth-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp", + "name": "LP Bow: wETH.axl-MNTA", + "display": "lp-weth-mnta", + "symbol": "LP wETH.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: NTRN-MNTA", + "denom_units": [ + { + "denom": "factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp", + "exponent": 0 + }, + { + "denom": "lp-ntrn-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp", + "name": "LP Bow: NTRN-MNTA", + "display": "lp-ntrn-mnta", + "symbol": "LP NTRN-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wFTM.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp", + "exponent": 0 + }, + { + "denom": "lp-wftm-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp", + "name": "LP Bow: wFTM.axl-MNTA", + "display": "lp-wftm-mnta", + "symbol": "LP wFTM.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: STARS-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", + "exponent": 0 + }, + { + "denom": "lp-stars-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", + "name": "LP Bow: STARS-MNTA", + "display": "lp-stars-mnta", + "symbol": "LP STARS-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: TIA-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp", + "exponent": 0 + }, + { + "denom": "lp-tia-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp", + "name": "LP Bow: TIA-MNTA", + "display": "lp-tia-mnta", + "symbol": "LP TIA-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: SOL.wh-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp", + "exponent": 0 + }, + { + "denom": "lp-sol-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp", + "name": "LP Bow: SOL.wh-MNTA", + "display": "lp-sol-mnta", + "symbol": "LP SOL.wh-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: DYM-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp", + "exponent": 0 + }, + { + "denom": "lp-dym-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp", + "name": "LP Bow: DYM-MNTA", + "display": "lp-dym-mnta", + "symbol": "LP DYM-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: AKT-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp", + "exponent": 0 + }, + { + "denom": "lp-akt-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp", + "name": "LP Bow: AKT-MNTA", + "display": "lp-akt-mnta", + "symbol": "LP AKT-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: LINK.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp", + "exponent": 0 + }, + { + "denom": "lp-link-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp", + "name": "LP Bow: LINK.axl-MNTA", + "display": "lp-link-mnta", + "symbol": "LP LINK.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wTAO.grv-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp", + "exponent": 0 + }, + { + "denom": "lp-wtao-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp", + "name": "LP Bow: wTAO.grv-MNTA", + "display": "lp-wtao-mnta", + "symbol": "LP wTAO.grv-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: MNTA-KUJI", + "denom_units": [ + { + "denom": "factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp", + "exponent": 0 + }, + { + "denom": "lp-mnta-kuji", + "exponent": 6 + } + ], + "base": "factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp", + "name": "LP Bow: MNTA-KUJI", + "display": "lp-mnta-kuji", + "symbol": "LP MNTA-KUJI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: AXL-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp", + "exponent": 0 + }, + { + "denom": "lp-axl-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp", + "name": "LP Bow: AXL-MNTA", + "display": "lp-axl-mnta", + "symbol": "LP AXL-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: ATOM-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp", + "exponent": 0 + }, + { + "denom": "lp-atom-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp", + "name": "LP Bow: ATOM-MNTA", + "display": "lp-atom-mnta", + "symbol": "LP ATOM-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: ARB-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp", + "exponent": 0 + }, + { + "denom": "lp-arb-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp", + "name": "LP Bow: ARB-MNTA", + "display": "lp-arb-mnta", + "symbol": "LP ARB-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: WHALE-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp", + "exponent": 0 + }, + { + "denom": "lp-whale-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp", + "name": "LP Bow: WHALE-MNTA", + "display": "lp-whale-mnta", + "symbol": "LP WHALE-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: SCRT-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp", + "exponent": 0 + }, + { + "denom": "lp-scrt-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp", + "name": "LP Bow: SCRT-MNTA", + "display": "lp-scrt-mnta", + "symbol": "LP SCRT-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wstETH.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp", + "exponent": 0 + }, + { + "denom": "lp-wsteth-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp", + "name": "LP Bow: wstETH.axl-MNTA", + "display": "lp-wsteth-mnta", + "symbol": "LP wstETH.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wMATIC.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp", + "exponent": 0 + }, + { + "denom": "lp-wmatic-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp", + "name": "LP Bow: wMATIC.axl-MNTA", + "display": "lp-wmatic-mnta", + "symbol": "LP wMATIC.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: UNI.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp", + "exponent": 0 + }, + { + "denom": "lp-uni-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp", + "name": "LP Bow: UNI.axl-MNTA", + "display": "lp-uni-mnta", + "symbol": "LP UNI.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: yieldETH.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp", + "exponent": 0 + }, + { + "denom": "lp-yieldeth-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp", + "name": "LP Bow: yieldETH.axl-MNTA", + "display": "lp-yieldeth-mnta", + "symbol": "LP yieldETH.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wBTC.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp", + "exponent": 0 + }, + { + "denom": "lp-wbtc-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp", + "name": "LP Bow: wBTC.axl-MNTA", + "display": "lp-wbtc-mnta", + "symbol": "LP wBTC.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: PAXG.grv-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp", + "exponent": 0 + }, + { + "denom": "lp-paxg-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp", + "name": "LP Bow: PAXG.grv-MNTA", + "display": "lp-paxg-mnta", + "symbol": "LP PAXG.grv-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wBNB.axl-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp", + "exponent": 0 + }, + { + "denom": "lp-wbnb-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp", + "name": "LP Bow: wBNB.axl-MNTA", + "display": "lp-wbnb-mnta", + "symbol": "LP wBNB.axl-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: OSMO-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp", + "exponent": 0 + }, + { + "denom": "lp-osmo-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp", + "name": "LP Bow: OSMO-MNTA", + "display": "lp-osmo-mnta", + "symbol": "LP OSMO-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: INJ-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp", + "exponent": 0 + }, + { + "denom": "lp-inj-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp", + "name": "LP Bow: INJ-MNTA", + "display": "lp-inj-mnta", + "symbol": "LP INJ-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: stOSMO-OSMO", + "denom_units": [ + { + "denom": "factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp", + "exponent": 0 + }, + { + "denom": "lp-stosmo-osmo", + "exponent": 6 + } + ], + "base": "factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp", + "name": "LP Bow: stOSMO-OSMO", + "display": "lp-stosmo-osmo", + "symbol": "LP stOSMO-OSMO", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wstETH.axl-wETH.axl", + "denom_units": [ + { + "denom": "factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp", + "exponent": 0 + }, + { + "denom": "lp-wsteth-weth", + "exponent": 6 + } + ], + "base": "factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp", + "name": "LP Bow: wstETH.axl-wETH.axl", + "display": "lp-wsteth-weth", + "symbol": "LP wstETH.axl-wETH.axl", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: qcMNTA-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp", + "exponent": 0 + }, + { + "denom": "lp-qcmnta-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp", + "name": "LP Bow: qcMNTA-MNTA", + "display": "lp-qcmnta-mnta", + "symbol": "LP qcMNTA-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: ampMNTA-MNTA", + "denom_units": [ + { + "denom": "factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp", + "exponent": 0 + }, + { + "denom": "lp-ampmnta-mnta", + "exponent": 6 + } + ], + "base": "factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp", + "name": "LP Bow: ampMNTA-MNTA", + "display": "lp-ampmnta-mnta", + "symbol": "LP ampMNTA-MNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "LP Bow: wETH.axl-USK", + "denom_units": [ + { + "denom": "factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp", + "exponent": 0 + }, + { + "denom": "lp-weth-usk", + "exponent": 6 + } + ], + "base": "factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp", + "name": "LP Bow: wETH.axl-USK", + "display": "lp-weth-usk", + "symbol": "LP wETH.axl-USK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ] + }, + { + "description": "The token of NAMI", + "denom_units": [ + { + "denom": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami", + "exponent": 0 + }, + { + "denom": "nami", + "exponent": 6 + } + ], + "base": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami", + "name": "NAMI", + "display": "nami", + "symbol": "NAMI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.svg" + } + ] } ] -} +} \ No newline at end of file diff --git a/kujira/chain.json b/kujira/chain.json index b6fd1e4c3b..07b7b7394c 100644 --- a/kujira/chain.json +++ b/kujira/chain.json @@ -138,14 +138,14 @@ }, "codebase": { "git_repo": "https://github.com/Team-Kujira/core", - "recommended_version": "v0.9.3-1", + "recommended_version": "v1.0.2", "compatible_versions": [ - "v0.9.3-1" + "v1.0.2" ], - "cosmos_sdk_version": "v0.47.5", + "cosmos_sdk_version": "v0.47.8", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, @@ -230,6 +230,23 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, + "next_version_name": "v1.0.2" + }, + { + "name": "v1.0.2", + "proposal": 618, + "height": 18700000, + "recommended_version": "v1.0.2", + "compatible_versions": [ + "v1.0.2" + ], + "cosmos_sdk_version": "v0.47.8", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, "next_version_name": "" } ] @@ -260,7 +277,7 @@ { "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", "address": "kujira-mainnet-seed.autostake.com:26796", - "provider": "AutoStake ⚡️ 0% fee" + "provider": "AutoStake 🛡️ Slash Protected" }, { "id": "400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc", @@ -292,7 +309,7 @@ { "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", "address": "kujira-mainnet-peer.autostake.com:26796", - "provider": "AutoStake ⚡️ 0% fee" + "provider": "AutoStake 🛡️ Slash Protected" }, { "id": "c1a740841a6dc0b56730e975b1a4aa2d8c73b204", @@ -353,7 +370,7 @@ }, { "address": "https://kujira-mainnet-rpc.autostake.com:443", - "provider": "AutoStake ⚡️ 0% fee" + "provider": "AutoStake 🛡️ Slash Protected" }, { "address": "https://rpc.kujira.rektdao.club", @@ -427,7 +444,7 @@ }, { "address": "https://kujira-mainnet-lcd.autostake.com:443", - "provider": "AutoStake ⚡️ 0% fee" + "provider": "AutoStake 🛡️ Slash Protected" }, { "address": "https://api.kujira.rektdao.club", @@ -473,7 +490,7 @@ }, { "address": "kujira-mainnet-grpc.autostake.com:443", - "provider": "AutoStake ⚡️ 0% fee" + "provider": "AutoStake 🛡️ Slash Protected" }, { "address": "kujira.grpc.kjnodes.com:11390", @@ -508,6 +525,12 @@ "url": "https://kujira.explorers.guru", "tx_page": "https://kujira.explorers.guru/transaction/${txHash}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/kujira", + "tx_page": "https://ezstaking.app/kujira/txs/${txHash}", + "account_page": "https://ezstaking.app/kujira/account/${accountAddress}" + }, { "kind": "atomscan", "url": "https://atomscan.com/kujira", diff --git a/kujira/images/bKUJI.png b/kujira/images/bKUJI.png new file mode 100644 index 0000000000..987193db0f Binary files /dev/null and b/kujira/images/bKUJI.png differ diff --git a/kujira/images/bow.svg b/kujira/images/bow.svg new file mode 100644 index 0000000000..6a4b3e4708 --- /dev/null +++ b/kujira/images/bow.svg @@ -0,0 +1,15 @@ + + + kujira-bow-round copy 2 + + + + + + + + + + + + \ No newline at end of file diff --git a/kujira/images/ghost.png b/kujira/images/ghost.png new file mode 100644 index 0000000000..8841f06fe3 Binary files /dev/null and b/kujira/images/ghost.png differ diff --git a/kujira/images/nami.png b/kujira/images/nami.png new file mode 100644 index 0000000000..2703c75353 Binary files /dev/null and b/kujira/images/nami.png differ diff --git a/kujira/images/nami.svg b/kujira/images/nami.svg new file mode 100644 index 0000000000..bd3760a5db --- /dev/null +++ b/kujira/images/nami.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kujira/images/xkuji.png b/kujira/images/xkuji.png new file mode 100644 index 0000000000..5510e124f5 Binary files /dev/null and b/kujira/images/xkuji.png differ diff --git a/kujira/images/xmnta.png b/kujira/images/xmnta.png new file mode 100644 index 0000000000..4932278f47 Binary files /dev/null and b/kujira/images/xmnta.png differ diff --git a/kujira/images/xusk.png b/kujira/images/xusk.png new file mode 100644 index 0000000000..78ba9a7653 Binary files /dev/null and b/kujira/images/xusk.png differ diff --git a/kyve/assetlist.json b/kyve/assetlist.json index f9941bf87d..9e21cb01c1 100644 --- a/kyve/assetlist.json +++ b/kyve/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.kyve.network/", + "website": "https://www.kyve.network/", "twitter": "https://twitter.com/KYVENetwork" } } diff --git a/kyve/chain.json b/kyve/chain.json index 7b8f00a7d7..7f705a43e3 100644 --- a/kyve/chain.json +++ b/kyve/chain.json @@ -185,6 +185,11 @@ "id": "00917221debc335189292cce406cd20a8a44e603", "address": "peer-kyve.mms.team:27656", "provider": "MMS" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "kyve.declab.pro:26618", + "provider": "Decloud Nodes Lab" } ] }, @@ -225,6 +230,18 @@ { "address": "https://rpc-kyve.mms.team", "provider": "MMS" + }, + { + "address": "https://kyve.declab.pro:26616", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://kyve-rpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://kyve_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ @@ -263,6 +280,18 @@ { "address": "https://api-kyve.mms.team", "provider": "MMS" + }, + { + "address": "https://kyve.declab.pro:443", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://kyve-api.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://kyve_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -289,10 +318,24 @@ { "address": "grpc-kyve.mms.team:443", "provider": "MMS" + }, + { + "address": "https://kyve.declab.pro:9011", + "provider": "Decloud Nodes Lab" + }, + { + "address": "kyve-grpc.noders.services:15090", + "provider": "[NODERS]TEAM" } ] }, "explorers": [ + { + "kind": "ezstaking", + "url": "https://ezstaking.app/kyve", + "tx_page": "https://ezstaking.app/kyve/txs/${txHash}", + "account_page": "https://ezstaking.app/kyve/account/${accountAddress}" + }, { "kind": "mintscan", "url": "https://www.mintscan.io/kyve", @@ -316,6 +359,18 @@ "url": "https://explorer.stake-take.com/kyve", "tx_page": "https://explorer.stake-take.com/kyve/txs/${txHash}", "account_page": "https://explorer.stake-take.com/kyve/account/${accountAddress}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Kyve", + "tx_page": "https://explorer.declab.pro/Kyve/txs/${txHash}", + "account_page": "https://explorer.declab.pro/Kyve/account/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/kyve", + "tx_page": "https://explorer.whenmoonwhenlambo.money/kyve/txs/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/kyve/account/${accountAddress}" } ], "images": [ @@ -324,4 +379,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg" } ] -} +} \ No newline at end of file diff --git a/lambda/chain.json b/lambda/chain.json index 949af17425..e2f34afb8b 100644 --- a/lambda/chain.json +++ b/lambda/chain.json @@ -72,6 +72,14 @@ { "address": "https://rpc.lambda.nodestake.top", "provider": "NodeStake" + }, + { + "address": "https://lambda-rpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://lambda_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ @@ -86,6 +94,14 @@ { "address": "https://api.lambda.nodestake.top", "provider": "NodeStake" + }, + { + "address": "https://lambda-api.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://lambda_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -96,12 +112,24 @@ { "address": "grpc.lambda.nodestake.top:443", "provider": "NodeStake" + }, + { + "address": "lambda-grpc.noders.services:31090", + "provider": "[NODERS]TEAM" } ], "evm-http-jsonrpc": [ { "address": "https://jsonrpc-lambda.d-stake.xyz", "provider": "D-stake" + }, + { + "address": "https://lambda-jsonrpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://lambda_mainnet_evm.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ] }, @@ -126,6 +154,12 @@ "url": "https://atomscan.com/lambda", "tx_page": "https://atomscan.com/lambda/transactions/${txHash}", "account_page": "https://atomscan.com/lambda/accounts/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/lambda", + "tx_page": "https://explorer.whenmoonwhenlambo.money/lambda/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/lambda/account/${accountAddress}" } ], "images": [ diff --git a/lava/assetlist.json b/lava/assetlist.json index 3de1616852..55ddbb0efb 100644 --- a/lava/assetlist.json +++ b/lava/assetlist.json @@ -38,9 +38,9 @@ "incentivized public rpc" ], "socials": { - "webiste": "https://lavanet.xyz", + "website": "https://lavanet.xyz", "twitter": "https://twitter.com/lavanetxyz" } } ] -} +} \ No newline at end of file diff --git a/lava/chain.json b/lava/chain.json index 7212afd1d4..a3242d8394 100644 --- a/lava/chain.json +++ b/lava/chain.json @@ -1,109 +1,148 @@ { - "$schema": "../chain.schema.json", - "chain_name": "lava", - "status": "upcoming", - "network_type": "mainnet", - "website": "https://lavanet.xyz/", - "update_link": "https://raw.githubusercontent.com/lavanet/lava/main/chain.schema.json", - "pretty_name": "Lava", - "chain_id": "lava-mainnet-1", - "bech32_prefix": "lava@", - "daemon_name": "lavad", - "node_home": "$HOME/.lava", - "key_algos": [ - "secp256k1" + "$schema": "../chain.schema.json", + "chain_name": "lava", + "status": "upcoming", + "network_type": "mainnet", + "website": "https://lavanet.xyz/", + "update_link": "https://raw.githubusercontent.com/lavanet/lava/main/chain.schema.json", + "pretty_name": "Lava", + "chain_id": "lava-mainnet-1", + "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": 0.00005, + "high_gas_price": 0.0001 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ulava" + } ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "ulava", - "fixed_min_gas_price": 0.000000001, - "low_gas_price": 0.000000001, - "average_gas_price": 0.00005, - "high_gas_price": 0.0001 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "ulava" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, - "codebase": { - "git_repo": "https://github.com/lavanet/lava", - "recommended_version": "v0.33.1", - "compatible_versions": [ - "v0.33.1" - ], - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.33.1/lavad-v0.33.1-linux-amd64?checksum=sha256:ae2e49e53bd8c979ca27c83d3d10a708fc23247dae020840fe46b9b68cb8e925" - }, - "go_version": "1.20", - "cosmos_sdk_version": "github.com/lavanet/cosmos-sdk@v0.47.x-lava", - "consensus": { - "type": "cometbft", - "version": "0.37.4" - }, - "cosmwasm_enabled": false, - "ibc_go_version": "v7.2.0", - "ics_enabled": [ - "ics20-1" - ] - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png", - "theme": { - "primary_color_hex": "#FF3900" - }, - "layout": "logo", - "text_position": "right" - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png", - "layout": "logomark" - } + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "git_repo": "https://github.com/lavanet/lava", + "recommended_version": "v0.33.1", + "compatible_versions": [ + "v0.33.1" ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png" + "binaries": { + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.33.1/lavad-v0.33.1-linux-amd64?checksum=sha256:ae2e49e53bd8c979ca27c83d3d10a708fc23247dae020840fe46b9b68cb8e925" }, - "description": "Lava (LAVA) is the data access layer of the modular stack. developers and ecosystems permissionlessly add services to be served or accessed through lava. featuring a fully decentralized open source sdk integrable in frontends and a battle tested fully scalable open source server kit and can be used locally or through managed endpoints. Lava features rpc data access, indexing services, debug apis, archive access and more. Service providers can join the network, earn rewards either in the native token of the chain via token bought subscriptions on chain or through any ibc transferred token via incentive pools created and funded by ecosystems and DAOs. Developers can use the abstraction and go multi chain in seconds, not needing to choose what tools to use, having the access aggregated for them. Build whatever, wherever.", - "apis": { - "rpc": [ - { - "address": "https://lava-rpc.w3coins.io:443", - "provider": "w3coins" - } - ], - "rest": [ - { - "address": " https://lava-api.w3coins.io:443", - "provider": "w3coins" - } - ] + "go_version": "1.20", + "cosmos_sdk_version": "github.com/lavanet/cosmos-sdk@v0.47.x-lava", + "consensus": { + "type": "cometbft", + "version": "0.37.4" }, - "explorers": [ - { - "kind": "w3coins", - "url": "https://lava-explorer.w3coins.io/Lava", - "tx_page": "https://lava-explorer.w3coins.io/Lava/tx/${txHash}", - "account_page": "https://lava-explorer.w3coins.io/Lava/account/${accountAddress}" - } + "cosmwasm_enabled": false, + "ibc_go_version": "v7.2.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png", + "theme": { + "primary_color_hex": "#FF3900" + }, + "layout": "logo", + "text_position": "right" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png", + "layout": "logomark" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png" + }, + "description": "Lava (LAVA) is the data access layer of the modular stack. developers and ecosystems permissionlessly add services to be served or accessed through lava. featuring a fully decentralized open source sdk integrable in frontends and a battle tested fully scalable open source server kit and can be used locally or through managed endpoints. Lava features rpc data access, indexing services, debug apis, archive access and more. Service providers can join the network, earn rewards either in the native token of the chain via token bought subscriptions on chain or through any ibc transferred token via incentive pools created and funded by ecosystems and DAOs. Developers can use the abstraction and go multi chain in seconds, not needing to choose what tools to use, having the access aggregated for them. Build whatever, wherever.", + "peers": { + "seeds": [ + { + "id": "e023c3892862744081360a99a2666e8111b196d3", + "address": "lava-seed.y2.finance:26656", + "provider": "YTWOFUND" + }, + { + "id": "810b95bb95de712d4f30c2f62738bd976c016831", + "address": "lava-seed.finteh.org:26656", + "provider": "finteh" + }, + { + "id": "cec848e7d4c5a7ae305b27cda133d213435c110f", + "address": "seed-lava.ibs.team:16680", + "provider": "Inter Blockchain Services" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://lava-rpc.w3coins.io:443", + "provider": "w3coins" + }, + { + "address": "https://lava-rpc.finteh.org:443", + "provider": "finteh" + }, + { + "address": "https://lava-rpc.y2.finance:443", + "provider": "YTWOFUND" + }, + { + "address": "https://lava-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" + } ], - "keywords": [ - "modular", - "data", - "data access", - "rpc", - "staking", - "dual staking", - "indexing", - "incentivized public rpc" + "rest": [ + { + "address": "https://lava-api.w3coins.io:443", + "provider": "w3coins" + }, + { + "address": "https://lava.api.staking-explorer.com", + "provider": "Daily DROP" + }, + { + "address": "https://lava-api.ibs.team:443", + "provider": "Inter Blockchain Services" + } ] -} + }, + "explorers": [ + { + "kind": "w3coins", + "url": "https://lava-explorer.w3coins.io/Lava", + "tx_page": "https://lava-explorer.w3coins.io/Lava/tx/${txHash}", + "account_page": "https://lava-explorer.w3coins.io/Lava/account/${accountAddress}" + } + ], + "keywords": [ + "modular", + "data", + "data access", + "rpc", + "staking", + "dual staking", + "indexing", + "incentivized public rpc" + ] +} \ No newline at end of file diff --git a/likecoin/chain.json b/likecoin/chain.json index 354966427e..1b0b8aff1f 100644 --- a/likecoin/chain.json +++ b/likecoin/chain.json @@ -36,16 +36,16 @@ }, "codebase": { "git_repo": "https://github.com/likecoin/likecoin-chain", - "recommended_version": "v4.1.1", + "recommended_version": "v4.2.0", "compatible_versions": [ - "v4.1.1" + "v4.2.0" ], "binaries": { - "linux/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Windows_x86_64.zip" + "linux/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Windows_x86_64.zip" }, "cosmos_sdk_version": "0.46", "consensus": { @@ -53,7 +53,7 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "6.2.1", + "ibc_go_version": "6.3.0", "ics_enabled": [ "ics20-1" ], @@ -179,6 +179,29 @@ "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Windows_x86_64.zip" }, + "next_version_name": "v4.2.0" + }, + { + "name": "v4.2.0", + "tag": "v4.2.0", + "height": 14103500, + "recommended_version": "v4.2.0", + "compatible_versions": [ + "v4.2.0" + ], + "cosmos_sdk_version": "0.46", + "ibc_go_version": "6.3.0", + "consensus": { + "type": "tendermint", + "version": "0.34" + }, + "binaries": { + "linux/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Windows_x86_64.zip" + }, "next_version_name": "" } ] @@ -248,7 +271,7 @@ "provider": "PikaSer" }, { - "address": "http://51.159.223.25:28657", + "address": "https://rpc.likecoin.citizenweb3.com:443", "provider": "Citizen Web3" } ], @@ -297,10 +320,10 @@ "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": "ezstaking", + "url": "https://ezstaking.app/likecoin", + "tx_page": "https://ezstaking.app/likecoin/txs/${txHash}", + "account_page": "https://ezstaking.app/likecoin/account/${accountAddress}" }, { "kind": "lunie-ng", @@ -341,4 +364,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg" } ] -} +} \ No newline at end of file diff --git a/logos/chain.json b/logos/chain.json index d590953d06..3aca3f0c5d 100644 --- a/logos/chain.json +++ b/logos/chain.json @@ -57,11 +57,7 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.svg" }, - "codebase": { - "genesis": { - "genesis_url": "" - } - }, + "codebase": {}, "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.png", diff --git a/loop/assetlist.json b/loop/assetlist.json new file mode 100644 index 0000000000..3a6d781971 --- /dev/null +++ b/loop/assetlist.json @@ -0,0 +1,67 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "loop", + "assets": [ + { + "description": "The native token of Loop", + "denom_units": [ + { + "denom": "token", + "exponent": 0 + } + ], + "type_asset": "sdk.coin", + "base": "token", + "name": "Token", + "display": "token", + "symbol": "TOKEN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.svg" + } + ], + "coingecko_id": "", + "keywords": [], + "socials": { + "website": "https://www.loop.fans/", + "twitter": "https://twitter.com/LoopFans" + } + }, + { + "denom_units": [ + { + "denom": "upoa", + "exponent": 0 + }, + { + "denom": "poa", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "base": "upoa", + "name": "POA", + "display": "poa", + "symbol": "POA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/poa.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/poa.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/poa.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/poa.svg" + } + ], + "coingecko_id": "", + "keywords": [ + "poa" + ] + } + ] +} \ No newline at end of file diff --git a/loop/chain.json b/loop/chain.json new file mode 100644 index 0000000000..8195fb30ba --- /dev/null +++ b/loop/chain.json @@ -0,0 +1,105 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "loop", + "status": "live", + "network_type": "mainnet", + "website": "https://www.loop.fans/", + "pretty_name": "Loop", + "chain_id": "loop-1", + "bech32_prefix": "loop", + "daemon_name": "loopd", + "node_home": "$HOME/.loopchain", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "token", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "upoa" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/LoopFans/loop-chain", + "genesis": { + "name": "v1", + "genesis_url": "https://github.com/LoopFans/loop-chain/blob/main/network/loop-1/genesis.json" + }, + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ], + "go_version": "1.21", + "binaries": { + "linux/amd64": "https://github.com/LoopFans/loop-chain/releases/download/v1.0.0/loopchain_1.0.0_linux_amd64.tar.gz" + } + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.svg", + "layout": "logomark" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.svg" + }, + "description": "Empowering Artists and Superfans.", + "peers": { + "seeds": [], + "persistent_peers": [ + { + "id": "66250af94e333a8798f7b7a843bcd532c60d7a4e", + "address": "cluster.pfc.zone:31953", + "provider": "PFC" + }, + { + "id": "4ca5c65eead022b6e930fbcd5febdd0acb1387ff", + "address": "cluster.yieldpay.money:30149", + "provider": "PFC" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.loop.pfc.zone/", + "provider": "PFC" + } + ], + "rest": [ + { + "address": "https://api.loop.pfc.zone/", + "provider": "PFC" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://ping.pfc.zone/loop", + "tx_page": "https://ping.pfc.zone/loop/tx/${txHash}" + } + ], + "keywords": [ + "fans" + ] +} \ No newline at end of file diff --git a/loop/images/loop.png b/loop/images/loop.png new file mode 100644 index 0000000000..3a6a760065 Binary files /dev/null and b/loop/images/loop.png differ diff --git a/loop/images/loop.svg b/loop/images/loop.svg new file mode 100644 index 0000000000..ffd0c78020 --- /dev/null +++ b/loop/images/loop.svg @@ -0,0 +1,531 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loop/images/poa.png b/loop/images/poa.png new file mode 100644 index 0000000000..4d8efe2cce Binary files /dev/null and b/loop/images/poa.png differ diff --git a/loop/images/poa.svg b/loop/images/poa.svg new file mode 100644 index 0000000000..073422d8aa --- /dev/null +++ b/loop/images/poa.svg @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +POA diff --git a/loyal/chain.json b/loyal/chain.json index 13dc818cb0..805198af5f 100644 --- a/loyal/chain.json +++ b/loyal/chain.json @@ -132,4 +132,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg" } ] -} +} \ No newline at end of file diff --git a/lumnetwork/chain.json b/lumnetwork/chain.json index 81a1ee142e..532c63654f 100644 --- a/lumnetwork/chain.json +++ b/lumnetwork/chain.json @@ -313,6 +313,10 @@ { "address": "https://lum-rpc.panthea.eu", "provider": "Panthea EU" + }, + { + "address": "https://lumnetwork_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ @@ -339,6 +343,10 @@ { "address": "https://lum-api.panthea.eu", "provider": "Panthea EU" + }, + { + "address": "https://lumnetwork_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -366,10 +374,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/lumnetwork", + "tx_page": "https://ezstaking.app/lumnetwork/txs/${txHash}", + "account_page": "https://ezstaking.app/lumnetwork/account/${accountAddress}" }, { "kind": "mintscan", @@ -397,6 +405,12 @@ "url": "https://atomscan.com/lum-network", "tx_page": "https://atomscan.com/lum-network/transactions/${txHash}", "account_page": "https://atomscan.com/lum-network/accounts/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/lum-network", + "tx_page": "https://explorer.whenmoonwhenlambo.money/lum-network/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/lum-network/account/${accountAddress}" } ], "images": [ @@ -405,4 +419,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg" } ] -} +} \ No newline at end of file diff --git a/mars/assetlist.json b/mars/assetlist.json index 03db395932..8abe66ac12 100644 --- a/mars/assetlist.json +++ b/mars/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.marsprotocol.io/", + "website": "https://www.marsprotocol.io/", "twitter": "https://twitter.com/mars_protocol" } } diff --git a/mars/chain.json b/mars/chain.json index 339b7a5f5a..7653f6113e 100644 --- a/mars/chain.json +++ b/mars/chain.json @@ -153,7 +153,7 @@ { "address": "https://mars-rpc.stakeandrelax.net", "provider": "Stake&Relax 🦥" - } + } ], "rest": [ { @@ -191,7 +191,7 @@ { "address": "https://mars-api.stakeandrelax.net", "provider": "Stake&Relax 🦥" - } + } ], "grpc": [ { @@ -229,10 +229,16 @@ { "address": "mars-grpc.stakeandrelax.net:18590", "provider": "Stake&Relax 🦥" - } + } ] }, "explorers": [ + { + "kind": "ezstaking", + "url": "https://ezstaking.app/mars", + "tx_page": "https://ezstaking.app/mars/txs/${txHash}", + "account_page": "https://ezstaking.app/mars/account/${accountAddress}" + }, { "kind": "BigDipper", "url": "https://explorer.marsprotocol.io", @@ -274,4 +280,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.svg" } ] -} +} \ No newline at end of file diff --git a/medasdigital/chain.json b/medasdigital/chain.json index 6fae2b5b8e..52e04f382c 100644 --- a/medasdigital/chain.json +++ b/medasdigital/chain.json @@ -129,4 +129,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg" } ] -} +} \ No newline at end of file diff --git a/meme/chain.json b/meme/chain.json index b2ddc40008..9aecd13ec7 100644 --- a/meme/chain.json +++ b/meme/chain.json @@ -134,6 +134,10 @@ { "address": "https://meme.api.m.anode.team", "provider": "ANODE TEAM" + }, + { + "address": "https://meme.api.m.stavr.tech", + "provider": "🔥STAVR🔥" } ], "grpc": [ @@ -176,6 +180,12 @@ "url": "https://explorer.stake-take.com/meme", "tx_page": "https://explorer.stake-take.com/meme/tx/${txHash}", "account_page": "https://explorer.stake-take.com/meme/account/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Meme", + "tx_page": "https://explorer.stavr.tech/Meme/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Meme/account/${accountAddress}" } ], "images": [ @@ -184,4 +194,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg" } ] -} +} \ No newline at end of file diff --git a/memo_keys.schema.json b/memo_keys.schema.json index f6884220b9..00b15b80af 100644 --- a/memo_keys.schema.json +++ b/memo_keys.schema.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-07/schema", + "$schema": "https://json-schema.org/draft-07/schema", + "title": "MemoKeys", "type": "object", "required": [ "memo_keys" diff --git a/migaloo/assetlist.json b/migaloo/assetlist.json index 05ac07915c..27da03c412 100644 --- a/migaloo/assetlist.json +++ b/migaloo/assetlist.json @@ -56,31 +56,30 @@ ] }, { - "description": "boneWHALE", + "description": "BackBone Labs Liquid Staked WHALE", "denom_units": [ { "denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", "exponent": 0 }, { - "denom": "boneWHALE", + "denom": "bWHALE", "exponent": 6 } ], "base": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "name": "boneWHALE", - "display": "boneWHALE", + "name": "BackBone Labs Liquid Staked WHALE", + "display": "bWHALE", "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png" } - ] + ], + "coingecko_id": "backbone-labs-staked-whale" }, { "description": "FABLE", @@ -348,6 +347,256 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png" } ] + }, + { + "description": "lsdSHARK is the liquid staking derivative of SHARK.", + "denom_units": [ + { + "denom": "factory/migaloo1p3aj9f09d7c4jxhgue0hpdpw370j6gzc59nxxx6l8d0gc9f9rfwsdwetus/lsdSHARK", + "exponent": 0 + }, + { + "denom": "lsdSHARK", + "exponent": 6 + } + ], + "base": "factory/migaloo1p3aj9f09d7c4jxhgue0hpdpw370j6gzc59nxxx6l8d0gc9f9rfwsdwetus/lsdSHARK", + "name": "lsdSHARK", + "display": "lsdSHARK", + "symbol": "lsdSHARK", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark" + }, + "provider": "Shark Protocol" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/lsdshark.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/lsdshark.png" + } + ] + }, + { + "description": "The native staking token of Terra.", + "denom_units": [ + { + "denom": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", + "exponent": 0 + }, + { + "denom": "luna", + "exponent": 6 + } + ], + "base": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", + "name": "Luna", + "display": "luna", + "symbol": "LUNA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "terra2", + "base_denom": "uluna", + "channel_id": "channel-86" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uluna" + } + } + ], + "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" + } + ], + "socials": { + "website": "https://www.terra.money/", + "twitter": "https://twitter.com/terra_money" + } + }, + { + "description": "Rakoff Token", + "denom_units": [ + { + "denom": "ibc/44C29C91F202E20C8E28DFB1FA89B725C54171CD77B8948836C72E7A97E4A018", + "exponent": 0 + }, + { + "denom": "Rakoff", + "exponent": 6 + } + ], + "base": "ibc/44C29C91F202E20C8E28DFB1FA89B725C54171CD77B8948836C72E7A97E4A018", + "type_asset": "ics20", + "name": "Rakoff", + "display": "Rakoff", + "symbol": "RAKOFF", + "traces": [ + { + "type": "ibc-cw20", + "counterparty": { + "chain_name": "terra", + "base_denom": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", + "port": "wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc", + "channel_id": "channel-87" + }, + "chain": { + "port": "transfer", + "channel_id": "channel-114", + "path": "transfer/channel-114/cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "terra", + "base_denom": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png" + } + ] + }, + { + "description": "GASH", + "denom_units": [ + { + "denom": "factory/migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg/gash", + "exponent": 0 + }, + { + "denom": "gash", + "exponent": 6 + } + ], + "base": "factory/migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg/gash", + "name": "GASH", + "display": "gash", + "symbol": "GASH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/gash.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/gash.png" + } + ] + }, + { + "description": "Restake DAO Token", + "denom_units": [ + { + "denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "exponent": 0 + }, + { + "denom": "rstk", + "exponent": 6 + } + ], + "base": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "name": "RESTAKE", + "display": "rstk", + "symbol": "RSTK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + } + ] + }, + { + "description": "Frogztrik NFT Token", + "denom_units": [ + { + "denom": "ibc/B1BD4EF49A2E051EFC85E8C6A932B559CE62F9519E0E83BE29A8F0BDF89BD1D3", + "exponent": 0 + }, + { + "denom": "frog", + "exponent": 6 + } + ], + "base": "ibc/B1BD4EF49A2E051EFC85E8C6A932B559CE62F9519E0E83BE29A8F0BDF89BD1D3", + "type_asset": "ics20", + "name": "Frogztrik NFT Token", + "display": "frog", + "symbol": "FROG", + "traces": [ + { + "type": "ibc-cw20", + "counterparty": { + "chain_name": "terra", + "base_denom": "cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9", + "port": "wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc", + "channel_id": "channel-87" + }, + "chain": { + "port": "transfer", + "channel_id": "channel-114", + "path": "transfer/channel-114/cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/FROG.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "terra", + "base_denom": "cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/FROG.png" + } + ] + }, + { + "description": "GRAC is the official token of Racoon.Bet's gaming platform.", + "denom_units": [ + { + "denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", + "exponent": 0 + }, + { + "denom": "GRAC", + "exponent": 6 + } + ], + "base": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", + "name": "Gaming RAC Token", + "display": "GRAC", + "symbol": "GRAC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png" + } + ] } ] -} +} \ No newline at end of file diff --git a/migaloo/chain.json b/migaloo/chain.json index 445b39034e..8f5e894f27 100644 --- a/migaloo/chain.json +++ b/migaloo/chain.json @@ -215,6 +215,10 @@ { "address": "https://migaloo-rpc.cosmosrescue.com", "provider": "cosmosrescue" + }, + { + "address": "https://migaloo-rpc.highstakes.ch", + "provider": "High Stakes 🇨🇭" } ], "rest": [ @@ -245,6 +249,10 @@ { "address": "https://migaloo-api.cosmosrescue.com", "provider": "cosmosrescue" + }, + { + "address": "https://migaloo-api.highstakes.ch", + "provider": "High Stakes 🇨🇭" } ], "grpc": [ @@ -309,4 +317,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg" } ] -} +} \ No newline at end of file diff --git a/migaloo/images/bWHALE.png b/migaloo/images/bWHALE.png index 59530905e3..4674f1437e 100644 Binary files a/migaloo/images/bWHALE.png and b/migaloo/images/bWHALE.png differ diff --git a/migaloo/images/bWHALE.svg b/migaloo/images/bWHALE.svg deleted file mode 100644 index cbf697fdda..0000000000 --- a/migaloo/images/bWHALE.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/migaloo/images/gash.png b/migaloo/images/gash.png new file mode 100644 index 0000000000..664b7443d5 Binary files /dev/null and b/migaloo/images/gash.png differ diff --git a/migaloo/images/grac.png b/migaloo/images/grac.png new file mode 100644 index 0000000000..725e193267 Binary files /dev/null and b/migaloo/images/grac.png differ diff --git a/migaloo/images/lsdshark.png b/migaloo/images/lsdshark.png new file mode 100644 index 0000000000..015b916e8e Binary files /dev/null and b/migaloo/images/lsdshark.png differ diff --git a/migaloo/images/rstk.png b/migaloo/images/rstk.png new file mode 100644 index 0000000000..3e73af505e Binary files /dev/null and b/migaloo/images/rstk.png differ diff --git a/migaloo/images/rstk.svg b/migaloo/images/rstk.svg new file mode 100644 index 0000000000..3640f58478 --- /dev/null +++ b/migaloo/images/rstk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/mythos/chain.json b/mythos/chain.json index b3366953e8..81e29965e8 100644 --- a/mythos/chain.json +++ b/mythos/chain.json @@ -52,11 +52,7 @@ "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": { - "genesis": { - "genesis_url": "" - } - }, + "codebase": {}, "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.png", diff --git a/neutaro/assetlist.json b/neutaro/assetlist.json new file mode 100644 index 0000000000..94ac8cd00a --- /dev/null +++ b/neutaro/assetlist.json @@ -0,0 +1,34 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "neutaro", + "assets": [ + { + "description": "The native token of Neutaro", + "denom_units": [ + { + "denom": "uneutaro", + "exponent": 0 + }, + { + "denom": "neutaro", + "exponent": 6 + } + ], + "base": "uneutaro", + "name": "Neutaro", + "display": "neutaro", + "symbol": "NTMPI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg" + }, + "coingecko_id": "neutaro", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/neutaro/chain.json b/neutaro/chain.json new file mode 100644 index 0000000000..6e50983c5c --- /dev/null +++ b/neutaro/chain.json @@ -0,0 +1,121 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "neutaro", + "status": "live", + "network_type": "mainnet", + "website": "https://neutaro.com/", + "pretty_name": "Neutaro", + "chain_id": "Neutaro-1", + "bech32_prefix": "neutaro", + "daemon_name": "neutaro", + "node_home": "$HOME/.Neutaro", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uneutaro", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0.035 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uneutaro" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/Neutaro/Neutaro", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "genesis": { + "genesis_url": "http://154.26.153.186/genesis.json" + }, + "versions": [ + { + "name": "Neutaro1", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg" + }, + "description": "The Blockchain that is Pioneering Ethical Standards, Values, and Transparency in cross chain Blockchain Technology to drive innovation", + "peers": { + "seeds": [ + { + "id": "2fd06277f46e845ca73df8f81caf68e6579bbe32", + "address": "86.48.20.122:26656", + "provider": "Neutaro" + } + ], + "persistent_peers": [ + { + "id": "fabdabd6c438f0ac45a5bb62702fd4ce0b84e876", + "address": "38.242.255.37:26656", + "provider": "Arvy" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc2.neutaro.tech:443", + "provider": "Neutaro" + }, + { + "address": "https://rpc-neutaro.blockval.io", + "provider": "Blockval" + } + ], + "rest": [ + { + "address": "https://api2.neutaro.tech:443", + "provider": "Neutaro" + }, + { + "address": "https://api-neutaro.blockval.io", + "provider": "Blockval" + } + ], + "grpc": [ + { + "address": "https://grpc2.neutaro.tech:443", + "provider": "Neutaro" + }, + { + "address": "https://grpc-neutaro.blockval.io", + "provider": "Blockval" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://explorer.neutaro.tech/Neutaro", + "tx_page": "https://explorer.neutaro.tech/Neutaro/tx/${txHash}", + "account_page": "https://explorer.neutaro.tech/Neutaro/account/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg" + } + ] +} \ No newline at end of file diff --git a/neutaro/images/neutaro.png b/neutaro/images/neutaro.png new file mode 100644 index 0000000000..ed7a190a81 Binary files /dev/null and b/neutaro/images/neutaro.png differ diff --git a/neutaro/images/neutaro.svg b/neutaro/images/neutaro.svg new file mode 100644 index 0000000000..b801063f9e --- /dev/null +++ b/neutaro/images/neutaro.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/neutron/assetlist.json b/neutron/assetlist.json index 228aeb6079..9fb8ef58be 100644 --- a/neutron/assetlist.json +++ b/neutron/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://neutron.org/", + "website": "https://neutron.org/", "twitter": "https://twitter.com/Neutron_org" } }, @@ -94,15 +94,15 @@ ] }, { - "denom": "usdc", + "denom": "axlusdc", "exponent": 6 } ], "type_asset": "ics20", "base": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "name": "IBC usdc", - "display": "usdc", - "symbol": "USDC", + "name": "USD Coin (Axelar)", + "display": "axlusdc", + "symbol": "axlUSDC", "traces": [ { "type": "ibc", @@ -373,10 +373,10 @@ ] }, { - "description": "ASTRO on Neutron", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", "denom_units": [ { - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", "exponent": 0, "aliases": [ "uastro" @@ -387,11 +387,88 @@ "exponent": 6 } ], - "type_asset": "ics20", - "base": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "base": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", "name": "Astroport token", "display": "astro", "symbol": "ASTRO", + "coingecko_id": "astroport-fi", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + }, + "socials": { + "website": "https://astroport.fi/", + "twitter": "https://twitter.com/astroport_fi" + } + }, + { + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "denom_units": [ + { + "denom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "exponent": 0, + "aliases": [ + "uxastro" + ] + }, + { + "denom": "xASTRO", + "exponent": 6 + } + ], + "base": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "name": "Staked Astroport Token", + "display": "xASTRO", + "symbol": "xASTRO", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + }, + "provider": "Astroport" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg" + }, + "socials": { + "website": "https://astroport.fi/", + "twitter": "https://twitter.com/astroport_fi" + } + }, + { + "description": "ASTRO.cw20 on Neutron", + "denom_units": [ + { + "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "exponent": 0, + "aliases": [ + "uastro" + ] + }, + { + "denom": "astro.cw20", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "name": "Astroport CW20 token", + "display": "astro.cw20", + "symbol": "ASTRO.cw20", "traces": [ { "type": "ibc-cw20", @@ -414,13 +491,11 @@ "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg" } }, { @@ -694,7 +769,11 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg" } - ] + ], + "socials": { + "website": "https://apollo.farm/", + "twitter": "https://twitter.com/ApolloDAO" + } }, { "description": "NEWTROLL", @@ -923,6 +1002,113 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png" } ] + }, + { + "description": "$ATOM to $1,000 LFG!!", + "denom_units": [ + { + "denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "exponent": 0, + "aliases": [ + "uatom1klfg" + ] + }, + { + "denom": "ATOM1KLFG", + "exponent": 6 + } + ], + "base": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "name": "ATOM1KLFG", + "display": "ATOM1KLFG", + "symbol": "ATOM1KLFG", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png" + } + ] + }, + { + "type_asset": "ics20", + "description": "USD Coin on Neutron", + "denom_units": [ + { + "denom": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "exponent": 0, + "aliases": [ + "uusdc", + "microusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "base": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "coingecko_id": "usd-coin", + "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": [ + { + "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" + } + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-18", + "base_denom": "uusdc", + "chain_name": "noble" + }, + "chain": { + "channel_id": "channel-30", + "path": "transfer/channel-30/uusdc" + } + } + ] + }, + { + "description": "WEIRD FRIENDS token", + "denom_units": [ + { + "denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + "exponent": 0, + "aliases": [ + "uWEIRD" + ] + }, + { + "denom": "WEIRD", + "exponent": 6 + } + ], + "base": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + "name": "WEIRD", + "display": "WEIRD", + "symbol": "WEIRD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png" + } + ] } ] -} +} \ No newline at end of file diff --git a/neutron/chain.json b/neutron/chain.json index 03a2c51eac..9421b7bfc5 100644 --- a/neutron/chain.json +++ b/neutron/chain.json @@ -62,21 +62,21 @@ }, "codebase": { "git_repo": "https://github.com/neutron-org/neutron", - "recommended_version": "v2.0.3", + "recommended_version": "v3.0.2", "compatible_versions": [ - "v2.0.3" + "v3.0.2" ], "binaries": { - "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v2.0.3/neutrond-linux-amd64" + "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v3.0.2/neutrond-linux-amd64" }, - "cosmos_sdk_version": "v0.47.6", + "cosmos_sdk_version": "neutron-org/cosmos-sdk v0.47.10-neutron", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.4" }, - "cosmwasm_version": "v0.45.0", + "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", + "ibc_go_version": "v7.3.2", "genesis": { "genesis_url": "https://raw.githubusercontent.com/neutron-org/mainnet-assets/main/neutron-1-genesis.json" }, @@ -102,12 +102,12 @@ "name": "v2.0.0", "proposal": 25, "height": 5416000, - "recommended_version": "v2.0.3", + "recommended_version": "v2.0.4", "compatible_versions": [ - "v2.0.3" + "v2.0.4" ], "binaries": { - "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v2.0.3/neutrond-linux-amd64" + "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v2.0.4/neutrond-linux-amd64" }, "cosmos_sdk_version": "v0.47.6", "consensus": { @@ -117,6 +117,27 @@ "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, "ibc_go_version": "v7.3.1", + "next_version_name": "v3.0.1" + }, + { + "name": "v3.0.1", + "proposal": 35, + "height": 9034900, + "recommended_version": "v3.0.2", + "compatible_versions": [ + "v3.0.2" + ], + "binaries": { + "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v3.0.2/neutrond-linux-amd64" + }, + "cosmos_sdk_version": "neutron-org/cosmos-sdk v0.47.10-neutron", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "neutron-org/wasmd v0.45.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.2", "next_version_name": "" } ] @@ -272,6 +293,12 @@ "url": "https://www.mintscan.io/neutron", "tx_page": "https://www.mintscan.io/neutron/transactions/${txHash}", "account_page": "https://www.mintscan.io/neutron/accounts/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/neutron", + "tx_page": "https://ezstaking.app/neutron/txs/${txHash}", + "account_page": "https://ezstaking.app/neutron/account/${accountAddress}" } ], "images": [ @@ -280,4 +307,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.svg" } ] -} +} \ No newline at end of file diff --git a/neutron/images/ATOM1KLFGc.png b/neutron/images/ATOM1KLFGc.png new file mode 100644 index 0000000000..1efba9635c Binary files /dev/null and b/neutron/images/ATOM1KLFGc.png differ diff --git a/neutron/images/WEIRD.png b/neutron/images/WEIRD.png new file mode 100644 index 0000000000..f963430d14 Binary files /dev/null and b/neutron/images/WEIRD.png differ diff --git a/neutron/images/arena.png b/neutron/images/arena.png new file mode 100644 index 0000000000..d782e7a2e0 Binary files /dev/null and b/neutron/images/arena.png differ diff --git a/juno/images/arena.svg b/neutron/images/arena.svg similarity index 100% rename from juno/images/arena.svg rename to neutron/images/arena.svg diff --git a/terra2/images/astro.png b/neutron/images/astro.png similarity index 100% rename from terra2/images/astro.png rename to neutron/images/astro.png diff --git a/terra2/images/astro.svg b/neutron/images/astro.svg similarity index 100% rename from terra2/images/astro.svg rename to neutron/images/astro.svg diff --git a/neutron/images/xAstro.svg b/neutron/images/xAstro.svg new file mode 100644 index 0000000000..5f79cf9e4a --- /dev/null +++ b/neutron/images/xAstro.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/nibiru/assetlist.json b/nibiru/assetlist.json index 9ffc99f443..e4f471f66a 100644 --- a/nibiru/assetlist.json +++ b/nibiru/assetlist.json @@ -11,7 +11,7 @@ }, { "denom": "nibi", - "exponent": 6 + "exponent": 6 } ], "base": "unibi", @@ -29,6 +29,45 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] + }, + { + "description": "uoprek", + "denom_units": [ + { + "denom": "tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek", + "exponent": 0 + } + ], + "base": "tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek", + "name": "uoprek", + "display": "tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek", + "symbol": "UOPREK" + }, + { + "description": "utestate", + "denom_units": [ + { + "denom": "tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate", + "exponent": 0 + } + ], + "base": "tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate", + "name": "utestate", + "display": "tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate", + "symbol": "UTESTATE" + }, + { + "description": "npp", + "denom_units": [ + { + "denom": "tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP", + "exponent": 0 + } + ], + "base": "tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP", + "name": "npp", + "display": "tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP", + "symbol": "NPP" } ] } diff --git a/nibiru/chain.json b/nibiru/chain.json index 97e47e9298..62aac090a2 100644 --- a/nibiru/chain.json +++ b/nibiru/chain.json @@ -36,24 +36,24 @@ }, "codebase": { "git_repo": "https://github.com/NibiruChain/nibiru", - "recommended_version": "v1.0.2", + "recommended_version": "v1.2.0", "compatible_versions": [ - "v1.0.2" + "v1.2.0" ], "binaries": { - "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.2/nibid_1.0.2_linux_amd64.tar.gz", - "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.2/nibid_1.0.2_linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.2/nibid_1.0.2_darwin_amd64.tar.gz", - "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.2/nibid_1.0.2_darwin_arm64.tar.gz" + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.2.0/nibid_1.2.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.2.0/nibid_1.2.0_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.2.0/nibid_1.2.0_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.2.0/nibid_1.2.0_darwin_arm64.tar.gz" }, "cosmos_sdk_version": "v0.47.10", "consensus": { "type": "cometbft", "version": "v0.37.4" }, + "ibc_go_version": "v7.3.2", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Mainnet/cataclysm-1/genesis.json" }, @@ -129,6 +129,81 @@ "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, "ibc_go_version": "v7.3.1", + "next_version_name": "v1.0.3" + }, + { + "name": "v1.0.3", + "recommended_version": "v1.0.3", + "compatible_versions": [ + "v1.0.3" + ], + "tag": "v1.0.3", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.3/nibid_1.0.3_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.3/nibid_1.0.3_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.3/nibid_1.0.3_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.3/nibid_1.0.3_darwin_arm64.tar.gz" + }, + "proposal": 8, + "height": 4088799, + "cosmos_sdk_version": "v0.47.10", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.2", + "next_version_name": "v1.1.0" + }, + { + "name": "v1.1.0", + "recommended_version": "v1.1.0", + "compatible_versions": [ + "v1.1.0" + ], + "tag": "v1.1.0", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.1.0/nibid_1.1.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.1.0/nibid_1.1.0_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.1.0/nibid_1.1.0_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.1.0/nibid_1.1.0_darwin_arm64.tar.gz" + }, + "proposal": 9, + "height": 4447094, + "cosmos_sdk_version": "v0.47.10", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "ibc_go_version": "v7.3.2", + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "next_version_name": "v1.2.0" + }, + { + "name": "v1.2.0", + "recommended_version": "v1.2.0", + "compatible_versions": [ + "v1.2.0" + ], + "tag": "v1.2.0", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.2.0/nibid_1.2.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.2.0/nibid_1.2.0_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.2.0/nibid_1.2.0_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.2.0/nibid_1.2.0_darwin_arm64.tar.gz" + }, + "proposal": 10, + "height": 4804662, + "cosmos_sdk_version": "v0.47.10", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "ibc_go_version": "v7.3.2", + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, "next_version_name": "" } ] @@ -164,6 +239,11 @@ "id": "400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc", "address": "nibiru.rpc.kjnodes.com:13959", "provider": "kjnodes.com 🦄" + }, + { + "id": "c416d67c3dbb2d30b803611469e6d2634099292d", + "address": "nibiru.seed.stavr.tech:11036", + "provider": "🔥STAVR🔥" } ], "persistent_peers": [ @@ -176,6 +256,16 @@ "id": "e7af24b15365bff9537e2776c2a5fdf01b933dc5", "address": "34.76.178.49:26656", "provider": "Nibiru Foundation" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "nibiru.rpc.nodeshub.online:19856", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "id": "c2f97c34c7df4ed57fcaf088ef59dd568dd19f01", + "address": "nibiru-mainnet.peer.stakevillage.net:16156", + "provider": "Stake Village" } ] }, @@ -204,6 +294,26 @@ { "address": "https://nibiru.rpc.liveraven.net", "provider": "LiveRaveN" + }, + { + "address": "https://nibiru-rpc.cogwheel.zone", + "provider": "Cogwheel ⚙️" + }, + { + "address": "https://nibiru.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "address": "https://nibiru.rpc.m.stavr.tech:443", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://nibiru-rpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://nibiru-mainnet.rpc.stakevillage.net:443", + "provider": "Stake Village" } ], "rest": [ @@ -230,6 +340,30 @@ { "address": "https://nibiru.api.liveraven.net", "provider": "LiveRaveN" + }, + { + "address": "https://nibiru-api.cogwheel.zone", + "provider": "Cogwheel ⚙️" + }, + { + "address": "https://nibiru.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://nibiru.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "address": "https://nibiru.api.staking-explorer.com", + "provider": "Daily DROP | 2% Fee" + }, + { + "address": "https://nibiru-api.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://nibiru-mainnet.api.stakevillage.net", + "provider": "Stake Village" } ], "grpc": [ @@ -256,6 +390,26 @@ { "address": "nibiru.grpc.liveraven.net:443", "provider": "LiveRaveN" + }, + { + "address": "nibiru-grpc.cogwheel.zone:443", + "provider": "Cogwheel ⚙️" + }, + { + "address": "https://nibiru.grpc.nodeshub.online", + "provider": "Nodes Hub" + }, + { + "address": "nibiru.grpc.m.stavr.tech:5023", + "provider": "🔥STAVR🔥" + }, + { + "address": "nibiru-grpc.noders.services:35090", + "provider": "[NODERS]TEAM" + }, + { + "address": "nibiru-mainnet.grpc.stakevillage.net:443", + "provider": "Stake Village" } ] }, @@ -277,6 +431,24 @@ "url": "https://mainnet.explorer.liveraven.net/nibiru", "tx_page": "https://mainnet.explorer.liveraven.net/nibiru/tx/${txHash}", "account_page": "https://mainnet.explorer.liveraven.net/nibiru/account/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Nibiru-Mainnet", + "tx_page": "https://explorer.stavr.tech/Nibiru-Mainnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Nibiru-Mainnet/account/${accountAddress}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/nibiru/", + "tx_page": "https://explorer.nodeshub.online/nibiru/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/nibiru/accounts/${accountAddress}" + }, + { + "kind": "Stake Village", + "url": "https://exp.stakevillage.net/nibiru-mainnet", + "tx_page": "https://exp.stakevillage.net/nibiru-mainnet/tx/${txHash}", + "account_page": "https://exp.stakevillage.net/nibiru-mainnet/accounts/${accountAddress}" } ], "images": [ @@ -285,4 +457,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] -} +} \ No newline at end of file diff --git a/nim/assetlist.json b/nim/assetlist.json new file mode 100644 index 0000000000..6fc4845ead --- /dev/null +++ b/nim/assetlist.json @@ -0,0 +1,43 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "nim", + "assets": [ + { + "description": "The native token of Nim Network.", + "extended_description": "Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.", + "denom_units": [ + { + "denom": "anim", + "exponent": 0 + }, + { + "denom": "nim", + "exponent": 18 + } + ], + "type_asset": "sdk.coin", + "base": "anim", + "name": "NIM Network", + "display": "nim", + "symbol": "NIM", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg" + } + ], + "socials": { + "website": "https://ai.nim.network/", + "twitter": "https://twitter.com/nim_network" + }, + "keywords": [ + "gaming", + "AI" + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg" + } + } + ] +} \ No newline at end of file diff --git a/nim/chain.json b/nim/chain.json new file mode 100644 index 0000000000..b8fb9aaa5e --- /dev/null +++ b/nim/chain.json @@ -0,0 +1,85 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "nim", + "status": "live", + "network_type": "mainnet", + "website": "https://ai.nim.network", + "pretty_name": "Nim Network", + "chain_id": "nim_1122-1", + "bech32_prefix": "nim", + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "anim", + "low_gas_price": 20000000000, + "average_gas_price": 20000000000, + "high_gas_price": 20000000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "anim" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg" + }, + "description": "Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg" + } + ], + "codebase": { + "recommended_version": "v2.1.3-rc02", + "compatible_versions": [ + "v2.1.3-rc02" + ], + "versions": [ + { + "name": "v2.1", + "recommended_version": "v2.1.3-rc02", + "compatible_versions": [ + "v2.1.3-rc02" + ] + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://nim-mainnet-tendermint.public.blastapi.io", + "provider": "BlastAPI" + } + ], + "rest": [ + { + "address": "https://nim-mainnet-rest.public.blastapi.io", + "provider": "BlastAPI" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://nim-mainnet.public.blastapi.io", + "provider": "BlastAPI" + } + ] + }, + "explorers": [ + { + "kind": "FYI", + "url": "https://dym.fyi/r/nim", + "tx_page": "https://dym.fyi/r/nim/tx/${txHash}", + "account_page": "https://dym.fyi/r/nim/address/${accountAddress}" + } + ] +} \ No newline at end of file diff --git a/nim/images/nim.png b/nim/images/nim.png new file mode 100644 index 0000000000..651d7d32ec Binary files /dev/null and b/nim/images/nim.png differ diff --git a/nim/images/nim.svg b/nim/images/nim.svg new file mode 100644 index 0000000000..27ccf9a3e1 --- /dev/null +++ b/nim/images/nim.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/noble/chain.json b/noble/chain.json index 510e503cd7..38603385d7 100644 --- a/noble/chain.json +++ b/noble/chain.json @@ -43,9 +43,9 @@ }, "codebase": { "git_repo": "https://github.com/strangelove-ventures/noble", - "recommended_version": "v4.0.3", + "recommended_version": "v4.1.2", "compatible_versions": [ - "v4.0.3" + "v4.1.2" ], "cosmos_sdk_version": "v0.45.16", "consensus": { @@ -84,10 +84,11 @@ }, { "name": "neon", - "tag": "v2.0.0", + "tag": "v2.0.1", "height": 119000, - "recommended_version": "v2.0.0", + "recommended_version": "v2.0.1", "compatible_versions": [ + "v2.0.1", "v2.0.0" ], "cosmos_sdk_version": "v0.45", @@ -160,6 +161,26 @@ "ics_enabled": [ "ics20-1" ], + "next_version_name": "fusion" + }, + { + "name": "fusion", + "tag": "v4.1.2", + "height": 5797500, + "recommended_version": "v4.1.2", + "compatible_versions": [ + "v4.1.2" + ], + "cosmos_sdk_version": "v0.45.16", + "consensus": { + "type": "cometbft", + "version": "v0.34.27" + }, + "cosmwasm_enabled": false, + "ibc_go_version": "v4.5.1", + "ics_enabled": [ + "ics20-1" + ], "next_version_name": "" } ] @@ -217,6 +238,12 @@ "tx_page": "https://www.mintscan.io/noble/txs/${txHash}", "account_page": "https://www.mintscan.io/noble/account/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/noble", + "tx_page": "https://ezstaking.app/noble/txs/${txHash}", + "account_page": "https://ezstaking.app/noble/account/${accountAddress}" + }, { "kind": "ping.pub", "url": "https://explore.strange.love/noble-1", @@ -234,4 +261,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg" } ] -} +} \ No newline at end of file diff --git a/nois/chain.json b/nois/chain.json index 007108cdfc..9a74e1cfd4 100644 --- a/nois/chain.json +++ b/nois/chain.json @@ -187,8 +187,8 @@ "provider": "Polkachu" }, { - "address": "https://nois.kingnodes.com", - "provider": "Kingnodes" + "address": "https://nois-rpc.kingnodes.com", + "provider": "kingnodes 👑" }, { "address": "https://nois.rpc.kjnodes.com", @@ -202,7 +202,7 @@ "address": "https://nois-rpc.stakeandrelax.net", "provider": "Stake&Relax 🦥" }, - { + { "address": "https://rpc.nois.cumulo.org.es", "provider": "Cumulo" } @@ -261,8 +261,8 @@ "provider": "Polkachu" }, { - "address": "https://grpc-nois.kingnodes.com", - "provider": "Kingnodes" + "address": "https://nois-grpc.kingnodes.com", + "provider": "kingnodes 👑" }, { "address": "nois.grpc.kjnodes.com:15190", @@ -319,8 +319,8 @@ "provider": "Polkachu" }, { - "address": "https://nois.kingnodes.com", - "provider": "Kingnodes" + "address": "https://nois-rest.kingnodes.com", + "provider": "kingnodes 👑" }, { "address": "https://nois.api.kjnodes.com", @@ -334,7 +334,7 @@ "address": "https://nois-api.stakeandrelax.net", "provider": "Stake&Relax 🦥" }, - { + { "address": "https://api.nois.cumulo.org.es", "provider": "Cumulo" } @@ -342,10 +342,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/nois", + "tx_page": "https://ezstaking.app/nois/txs/${txHash}", + "account_page": "https://ezstaking.app/nois/account/${accountAddress}" }, { "kind": "🔥STAVR🔥", @@ -372,4 +372,4 @@ "drand", "wasm" ] -} +} \ No newline at end of file diff --git a/nolus/assetlist.json b/nolus/assetlist.json index 6b8eee08ab..37cef1122c 100644 --- a/nolus/assetlist.json +++ b/nolus/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://nolus.io/", + "website": "https://nolus.io/", "twitter": "https://twitter.com/NolusProtocol" } }, @@ -75,13 +75,17 @@ "chain_name": "osmosis", "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858" }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg" + }, + { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg" } }, { @@ -325,11 +329,16 @@ "chain_name": "osmosis", "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5" }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" + }, + { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" } }, { @@ -373,11 +382,16 @@ "chain_name": "osmosis", "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F" }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg" + }, + { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg" } }, { @@ -420,9 +434,15 @@ "image_sync": { "chain_name": "osmosis", "base_denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4" - } + }, + "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" } - ] + ], + "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": "AXL transferred from the Osmosis mainnet that is supported on the Nolus chain", @@ -464,9 +484,15 @@ "image_sync": { "chain_name": "osmosis", "base_denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E" - } + }, + "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" + } }, { "description": "JUNO transferred from the Osmosis mainnet that is supported on the Nolus chain", @@ -508,9 +534,15 @@ "image_sync": { "chain_name": "osmosis", "base_denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED" - } + }, + "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" + } }, { "description": "EVMOS transferred from the Osmosis mainnet that is supported on the Nolus chain", @@ -552,9 +584,15 @@ "image_sync": { "chain_name": "osmosis", "base_denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A" - } + }, + "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" + } }, { "description": "stkATOM transferred from the Osmosis mainnet that is supported on the Nolus chain", @@ -596,9 +634,15 @@ "image_sync": { "chain_name": "osmosis", "base_denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC" - } + }, + "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" } - ] + ], + "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" + } }, { "description": "SCRT transferred from the Osmosis mainnet that is supported on the Nolus chain", @@ -640,9 +684,15 @@ "image_sync": { "chain_name": "osmosis", "base_denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A" - } + }, + "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" + } }, { "description": "CRO transferred from the Osmosis mainnet that is supported on the Nolus chain", @@ -883,13 +933,17 @@ "chain_name": "neutron", "base_denom": "untrn" }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg" + }, + { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/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" + "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" } }, { diff --git a/nolus/chain.json b/nolus/chain.json index 05ac759021..adbb705595 100644 --- a/nolus/chain.json +++ b/nolus/chain.json @@ -17,7 +17,8 @@ "fee_tokens": [ { "denom": "unls", - "low_gas_price": 0, + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, "average_gas_price": 0.025, "high_gas_price": 0.05 } @@ -414,4 +415,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" } ] -} +} \ No newline at end of file diff --git a/nomic/chain.json b/nomic/chain.json index 1a20800a1e..bb5db772c4 100644 --- a/nomic/chain.json +++ b/nomic/chain.json @@ -160,4 +160,4 @@ "bech32PrefixValAddr": "nomic", "bech32PrefixValPub": "nomic" } -} +} \ No newline at end of file diff --git a/nyx/assetlist.json b/nyx/assetlist.json index 24a2695ce2..f3012d3265 100644 --- a/nyx/assetlist.json +++ b/nyx/assetlist.json @@ -45,7 +45,8 @@ "display": "nym", "symbol": "NYM", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg" }, "coingecko_id": "nym", "images": [ diff --git a/nyx/chain.json b/nyx/chain.json index d9a3f217bc..43426b48a1 100644 --- a/nyx/chain.json +++ b/nyx/chain.json @@ -16,14 +16,14 @@ "denom": "unym", "fixed_min_gas_price": 0.025, "low_gas_price": 0.025, - "average_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, + "average_gas_price": 0.025, "high_gas_price": 0.04 } ] @@ -99,7 +99,8 @@ ] }, "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg" }, "peers": { "seeds": [ @@ -229,10 +230,10 @@ "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": "ezstaking", + "url": "https://ezstaking.app/nyx", + "tx_page": "https://ezstaking.app/nyx/txs/${txHash}", + "account_page": "https://ezstaking.app/nyx/account/${accountAddress}" }, { "kind": "mintscan", @@ -244,12 +245,6 @@ "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": [ @@ -268,6 +263,9 @@ "dark_mode": true, "circle": true } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png" } ] -} +} \ No newline at end of file diff --git a/octa/chain.json b/octa/chain.json index 43aaef1574..0b7fc27946 100644 --- a/octa/chain.json +++ b/octa/chain.json @@ -21,15 +21,7 @@ ] }, "codebase": { - "git_repo": "", - "recommended_version": "", "compatible_versions": [], - "binaries": { - "linux/amd64": "", - "linux/arm64": "", - "darwin/amd64": "", - "windows/amd64": "" - }, "genesis": { "genesis_url": "https://octa-coin-assets.s3.eu-central-1.amazonaws.com/genesis.json" } diff --git a/odin/assetlist.json b/odin/assetlist.json index f5106c4467..6db5f6198f 100644 --- a/odin/assetlist.json +++ b/odin/assetlist.json @@ -29,8 +29,8 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg" } ], - "socials": { - "webiste": "https://odinprotocol.io/", + "socials": { + "website": "https://odinprotocol.io/", "twitter": "https://twitter.com/odinprotocol" } }, @@ -87,7 +87,7 @@ } ], "socials": { - "webiste": "https://dokicoin.io/", + "website": "https://dokicoin.io/", "twitter": "https://twitter.com/doki_coin" } }, @@ -146,9 +146,9 @@ } ], "socials": { - "webiste": "https://www.odin9worlds.io/", + "website": "https://www.odin9worlds.io/", "twitter": "https://twitter.com/odin9worlds" } } ] -} +} \ No newline at end of file diff --git a/odin/chain.json b/odin/chain.json index b0d21dd151..eadee8a2d5 100644 --- a/odin/chain.json +++ b/odin/chain.json @@ -34,9 +34,9 @@ }, "codebase": { "git_repo": "https://github.com/ODIN-PROTOCOL/odin-core", - "recommended_version": "v0.7.11", + "recommended_version": "v0.7.12", "compatible_versions": [ - "v0.7.11" + "v0.7.12" ], "cosmos_sdk_version": "v0.47.7", "consensus": { @@ -76,7 +76,23 @@ "version": "v0.37.4" }, "ibc_go_version": "v7.3.0", - "next_version_name": "" + "next_version_name": "v0.7.12" + }, + { + "name": "v0.7.12", + "proposal": 24, + "height": 14129800, + "recommended_version": "v0.7.12", + "compatible_versions": [ + "v0.7.12" + ], + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "ibc_go_version": "v7.3.0", + "next_version_name": "" } ] }, @@ -210,4 +226,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg" } ] -} +} \ No newline at end of file diff --git a/odin1/assetlist.json b/odin1/assetlist.json index a63d65bd6f..f2bc2e0fc9 100644 --- a/odin1/assetlist.json +++ b/odin1/assetlist.json @@ -97,4 +97,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/odin1/chain.json b/odin1/chain.json index fb697104ef..c08a2053f9 100644 --- a/odin1/chain.json +++ b/odin1/chain.json @@ -156,4 +156,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg" } ] -} +} \ No newline at end of file diff --git a/omniflixhub/assetlist.json b/omniflixhub/assetlist.json index 58726234cc..22183385d8 100644 --- a/omniflixhub/assetlist.json +++ b/omniflixhub/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://omniflix.network/", + "website": "https://omniflix.network/", "twitter": "https://twitter.com/OmniFlixNetwork" } }, @@ -226,6 +226,55 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } }, + { + "description": "Akash Token (AKT) is the Akash Network's native utility token", + "denom_units": [ + { + "denom": "ibc/6901B45BC2C5418ED8B3C3C9F9A641A3DAF2D234230AFA9DF32D8F9F9434721C", + "exponent": 0, + "aliases": [ + "uakt" + ] + }, + { + "denom": "akt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/6901B45BC2C5418ED8B3C3C9F9A641A3DAF2D234230AFA9DF32D8F9F9434721C", + "name": "Akash", + "display": "akt", + "symbol": "AKT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "akash", + "base_denom": "uakt", + "channel_id": "channel-61" + }, + "chain": { + "channel_id": "channel-25", + "path": "transfer/channel-25/uakt" + } + } + ], + "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": [ + { + "image_sync": { + "chain_name": "akash", + "base_denom": "uakt" + }, + "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" + } + ] + }, { "denom_units": [ { @@ -262,14 +311,16 @@ "chain_name": "osmosis", "base_denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7" }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png" + }, + { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.svg" } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png" } } ] -} +} \ No newline at end of file diff --git a/omniflixhub/chain.json b/omniflixhub/chain.json index b5e13b07e5..de7afe564e 100644 --- a/omniflixhub/chain.json +++ b/omniflixhub/chain.json @@ -12,15 +12,15 @@ "slip44": 118, "codebase": { "git_repo": "https://github.com/OmniFlix/omniflixhub", - "recommended_version": "v3.3.0", + "recommended_version": "4.0.0", "compatible_versions": [ - "v3.3.0" + "v4.0.0" ], "cosmos_sdk_version": "v0.47.10", - "ibc_go_version": "v7.3.2", + "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", - "version": "v0.37.4" + "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", "genesis": { @@ -37,7 +37,7 @@ "ibc_go_version": "v3.3.1", "consensus": { "type": "tendermint", - "version": "v0.34.22" + "version": "v0.34.22" }, "next_version_name": "v0.10.0" }, @@ -53,7 +53,7 @@ "ibc_go_version": "v3.4.0", "consensus": { "type": "cometbft", - "version": "v0.34.27" + "version": "v0.34.27" }, "next_version_name": "v0.11.0" }, @@ -69,7 +69,7 @@ "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", - "version": "v0.34.28" + "version": "v0.34.28" }, "next_version_name": "v0.12.x" }, @@ -85,7 +85,7 @@ "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", - "version": "v0.34.28" + "version": "v0.34.28" }, "next_version_name": "v2.0.0" }, @@ -101,7 +101,7 @@ "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.2" }, "next_version_name": "v2.1" }, @@ -117,7 +117,7 @@ "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.2" }, "next_version_name": "v3" }, @@ -133,7 +133,24 @@ "ibc_go_version": "v7.3.2", "consensus": { "type": "cometbft", - "version": "v0.37.4" + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.45.0", + "next_version_name": "v4" + }, + { + "name": "v4", + "proposal": 36, + "height": 11914000, + "recommended_version": "v4.0.0", + "compatible_versions": [ + "v4.0.0" + ], + "cosmos_sdk_version": "v0.47.10", + "ibc_go_version": "v7.3.4", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", "next_version_name": "" @@ -221,8 +238,8 @@ "apis": { "rpc": [ { - "address": "https://omniflix.kingnodes.com", - "provider": "kingnodes" + "address": "https://omniflix-rpc.kingnodes.com", + "provider": "kingnodes 👑" }, { "address": "https://rpc.omniflix.nodestake.top", @@ -307,8 +324,8 @@ "provider": "silent" }, { - "address": "https://omniflix.kingnodes.com", - "provider": "kingnodes" + "address": "https://omniflix-rest.kingnodes.com", + "provider": "kingnodes 👑" }, { "address": "https://omniflixhub-mainnet-lcd.autostake.com:443", @@ -327,8 +344,8 @@ "provider": "Daksha Validator" }, { - "address": "http://omniflix.api.staking-explorer.com", - "provider": "Daily $FLIX DROP 💰" + "address": "https://omniflix.api.staking-explorer.com", + "provider": "Daily DROP | 1% Fee" }, { "address": "https://api.omniflix.stakeup.tech", @@ -349,8 +366,8 @@ ], "grpc": [ { - "address": "grpc-omniflix.kingnodes.com:443", - "provider": "kingnodes" + "address": "https://omniflix-grpc.kingnodes.com:443", + "provider": "kingnodes 👑" }, { "address": "grpc.omniflix.nodestake.top:443", @@ -404,10 +421,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/omniflixhub", + "tx_page": "https://ezstaking.app/omniflixhub/txs/${txHash}", + "account_page": "https://ezstaking.app/omniflixhub/account/${accountAddress}" }, { "kind": "mintscan", @@ -434,4 +451,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg" } ] -} +} \ No newline at end of file diff --git a/onex/assetlist.json b/onex/assetlist.json new file mode 100644 index 0000000000..42a78d3116 --- /dev/null +++ b/onex/assetlist.json @@ -0,0 +1,36 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "onex", + "assets": [ + { + "description": "The native token of ONEX", + "denom_units": [ + { + "denom": "aonex", + "exponent": 0 + }, + { + "denom": "onex", + "exponent": 18 + } + ], + "base": "aonex", + "name": "ONEX", + "display": "onex", + "symbol": "ONEX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.svg" + }, + "keywords": [ + "dex" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/onex/chain.json b/onex/chain.json new file mode 100644 index 0000000000..c074f3415e --- /dev/null +++ b/onex/chain.json @@ -0,0 +1,135 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "onex", + "status": "live", + "website": "https://app.onomy.io/", + "network_type": "mainnet", + "pretty_name": "ONEX", + "chain_id": "onex-mainnet-1", + "bech32_prefix": "onomy", + "daemon_name": "onexd", + "node_home": "$HOME/.onomy_onex", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "aonex", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0.025, + "high_gas_price": 0.04 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "aonex" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/onomyprotocol/onex", + "recommended_version": "v1.1.0", + "compatible_versions": [ + "v1.1.0" + ], + "cosmos_sdk_version": "0.45.16", + "consensus": { + "type": "cometbft", + "version": "0.34.28" + }, + "genesis": { + "name": "v1", + "genesis_url": "https://raw.githubusercontent.com/onomyprotocol/onex/main/chain/onex-mainnet-1/genesis-with-ccv.json" + }, + "versions": [ + { + "name": "v1.1.0", + "tag": "v1.1.0", + "recommended_version": "v1.1.0", + "compatible_versions": [ + "v1.1.0" + ], + "cosmos_sdk_version": "0.45.16", + "consensus": { + "type": "cometbft", + "version": "0.34.28" + }, + "height": 0, + "next_version_name": "v1.2.0" + } + ] + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png", + "theme": { + "primary_color_hex": "#000000" + } + } + ], + "peers": { + "seeds": [ + { + "id": "fdbeb23dab3a697751edcc723480723e8e788431", + "address": "141.95.85.153:17400", + "provider": "cosmostation" + }, + { + "id": "41caa4106f68977e3a5123e56f57934a2d34a1c1", + "address": "95.214.53.20:27386", + "provider": "autostake" + } + ], + "persistent_peers": [ + { + "id": "2f96d16645fd52dba217fb477a66c7b637fbb3c7", + "address": "52.79.199.137:26656", + "provider": "cosmostation" + }, + { + "id": "2bd4696ae55870d031ff355460a57c8770b8747e", + "address": "149.102.128.71:26756", + "provider": "stakecito" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.mainnet.onex.onomy.io", + "provider": "pendulum" + } + ], + "rest": [ + { + "address": "https://rest.mainnet.onex.onomy.io", + "provider": "pendulum" + } + ], + "grpc": [ + { + "address": "a.node.mainnet.onomy.io:19091", + "provider": "pendulum" + } + ] + }, + "explorers": [ + { + "kind": "Dexplorer - must enter rpc link provided above", + "url": "https://dexplorer.cakralabs.site", + "tx_page": "https://dexplorer.cakralabs.site/txs/${txHash}", + "account_page": "https://dexplorer.cakralabs.site/${accountAddress}" + } + ], + "keywords": [ + "dex" + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png" + } +} \ No newline at end of file diff --git a/onex/images/onex.png b/onex/images/onex.png new file mode 100644 index 0000000000..2a80a76ad5 Binary files /dev/null and b/onex/images/onex.png differ diff --git a/onex/images/onex.svg b/onex/images/onex.svg new file mode 100644 index 0000000000..4b7d80ff5d --- /dev/null +++ b/onex/images/onex.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/onomy/chain.json b/onomy/chain.json index 071a46a458..973be72677 100644 --- a/onomy/chain.json +++ b/onomy/chain.json @@ -32,40 +32,93 @@ }, "codebase": { "git_repo": "https://github.com/onomyprotocol/onomy", - "recommended_version": "v1.0.1", + "recommended_version": "v1.1.4", "compatible_versions": [ - "v1.0.1" + "v1.1.4" ], "binaries": { - "linux/amd64": "https://github.com/onomyprotocol/onomy/releases/download/v1.0.1/onomyd", - "linux/arm64": "https://github.com/onomyprotocol/onomy/releases/download/v1.0.1/onomyd-arm" + "linux/amd64": "https://github.com/onomyprotocol/onomy/releases/download/v1.1.4/onomyd", + "linux/arm64": "https://github.com/onomyprotocol/onomy/releases/download/v1.1.4/onomyd-arm" }, - "cosmos_sdk_version": "0.44", + "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.45.16-onomy-dev", + "ibc_go_version": "v4.4.2", "consensus": { - "type": "tendermint", - "version": "0.34" + "type": "cometbft", + "version": "v0.34.28" }, - "ibc_go_version": "2.0.4", "genesis": { "genesis_url": "https://raw.githubusercontent.com/onomyprotocol/onomy/main/genesis/mainnet/genesis-mainnet-1.json" }, "versions": [ { "name": "v1.0.1", + "tag": "v1.0.1", "recommended_version": "v1.0.1", "compatible_versions": [ "v1.0.1" ], - "cosmos_sdk_version": "0.44", + "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.44.6-0.20221103153534-77ffa1c3fab2", + "ibc_go_version": "v2.0.4", "consensus": { "type": "tendermint", - "version": "0.34" + "version": "v0.34.14" }, - "ibc_go_version": "2.0.4", + "next_version_name": "v1.0.3" + }, + { + "name": "v1.0.3", + "tag": "v1.0.3", + "proposal": 8, + "height": 2377000, + "recommended_version": "v1.0.3", + "compatible_versions": [ + "v1.0.3" + ], + "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.44.6-0.20230418124728-9c1be80b05bd", + "ibc_go_version": "v2.0.4", + "consensus": { + "type": "tendermint", + "version": "v0.34.19" + }, + "next_version_name": "v1.0.3" + }, + { + "name": "v1.1.2", + "tag": "v1.1.2", + "proposal": 17, + "height": 4010000, + "recommended_version": "v1.1.2", + "compatible_versions": [ + "v1.1.2" + ], + "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.45.16-onomy-dev", + "ibc_go_version": "v4.4.2", + "consensus": { + "type": "cometbft", + "version": "v0.34.28" + }, + "next_version_name": "v1.1.4" + }, + { + "name": "v1.1.4", + "tag": "v1.1.4", + "proposal": 18, + "height": 5280000, + "recommended_version": "v1.1.4", + "compatible_versions": [ + "v1.1.4" + ], "binaries": { - "linux/amd64": "https://github.com/onomyprotocol/onomy/releases/download/v1.0.1/onomyd", - "linux/arm64": "https://github.com/onomyprotocol/onomy/releases/download/v1.0.1/onomyd-arm" - } + "linux/amd64": "https://github.com/onomyprotocol/onomy/releases/download/v1.1.4/onomyd", + "linux/arm64": "https://github.com/onomyprotocol/onomy/releases/download/v1.1.4/onomyd-arm" + }, + "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.45.16-onomy-dev", + "ibc_go_version": "v4.4.2", + "consensus": { + "type": "cometbft", + "version": "v0.34.28" + }, + "next_version_name": "" } ] }, @@ -75,14 +128,19 @@ "peers": { "seeds": [ { - "id": "211535f9b799bcc8d46023fa180f3359afd4c1d3", - "address": "44.213.44.5:26656", + "id": "6d17f128057497699677012b558a7eaff98dfc9c", + "address": "a.seed.mainnet.onomy.io:26656", "provider": "onomy" }, { - "id": "cd9a47cebe8eef076a5795e1b8460a8e0b2384e5", - "address": "3.210.0.126:26656", + "id": "7e0f0acd32a3c1e85aaebeea56d9b72cece12252", + "address": "b.seed.mainnet.onomy.io:26656", "provider": "onomy" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "onomy-mainnet-seed.autostake.com:27556", + "provider": "AutoStake 🛡️ Slash Protected" } ], "persistent_peers": [ @@ -95,6 +153,11 @@ "id": "00ce2f84f6b91639a7cedb2239e38ffddf9e36de", "address": "44.195.221.88:26656", "provider": "cosmostation" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "onomy-mainnet-peer.autostake.com:27556", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, @@ -103,34 +166,45 @@ { "address": "https://rpc-mainnet.onomy.io", "provider": "onomy" + }, + { + "address": "https://onomy-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], "rest": [ { "address": "https://rest-mainnet.onomy.io", "provider": "onomy" + }, + { + "address": "https://onomy-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], "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}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/onomy", + "tx_page": "https://ezstaking.app/onomy/txs/${txHash}", + "account_page": "https://ezstaking.app/onomy/account/${accountAddress}" } ], "keywords": [ "dex", "stablecoin", "bridge", - "staking" + "staking", + "ics", + "rwa" ], "images": [ { diff --git a/oraichain/chain.json b/oraichain/chain.json index ba9e755c14..75841d5d9a 100644 --- a/oraichain/chain.json +++ b/oraichain/chain.json @@ -293,4 +293,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg" } ] -} +} \ No newline at end of file diff --git a/osmosis/assetlist.json b/osmosis/assetlist.json index cd0c23667b..085ee51e61 100644 --- a/osmosis/assetlist.json +++ b/osmosis/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "The native token of Osmosis", + "extended_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.", "denom_units": [ { "denom": "uosmo", @@ -35,11 +36,13 @@ "staking" ], "socials": { - "webiste": "https://osmosis.zone", + "website": "https://osmosis.zone", "twitter": "https://twitter.com/osmosiszone" } }, { + "description": "ION is the second native token of Osmosis.", + "extended_description": "ION DAO is governed by ION holders. ION is the second native token of Osmosis, the biggest DEX in Cosmos. The origin of ION was a meme coin, but ION DAO has been trying to find ways to add values on ION.", "denom_units": [ { "denom": "uion", @@ -71,7 +74,7 @@ "defi" ], "socials": { - "webiste": "https://ion.wtf", + "website": "https://ion.wtf", "twitter": "https://twitter.com/_IONDAO" } }, @@ -126,8 +129,8 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg" }, "images": [ { @@ -195,7 +198,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" }, "images": [ { @@ -255,8 +259,8 @@ } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg" }, "images": [ { @@ -323,7 +327,8 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg" }, "images": [ { @@ -666,7 +671,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png" + "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" }, "images": [ { @@ -726,7 +732,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png" + "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" }, "images": [ { @@ -855,7 +862,7 @@ "base": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", "name": "Wrapped Polkadot (Axelar)", "display": "dot", - "symbol": "DOT.axl", + "symbol": "moonbeam.DOT.axl", "traces": [ { "type": "bridge", @@ -887,7 +894,8 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" }, "images": [ { @@ -1302,9 +1310,6 @@ "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" ] }, { @@ -1684,7 +1689,7 @@ ], "type_asset": "ics20", "base": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", - "name": "ixo", + "name": "Impacts Hub", "display": "ixo", "symbol": "IXO", "traces": [ @@ -2345,6 +2350,9 @@ "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" } + ], + "keywords": [ + "osmosis_unstable" ] }, { @@ -2364,7 +2372,7 @@ ], "type_asset": "ics20", "base": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "name": "Umee", + "name": "UX Chain", "display": "umee", "symbol": "UMEE", "traces": [ @@ -2954,9 +2962,6 @@ "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" } - ], - "keywords": [ - "osmosis_unstable" ] }, { @@ -3208,7 +3213,8 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" }, "images": [ { @@ -3271,7 +3277,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" }, "images": [ { @@ -3333,7 +3339,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { @@ -3395,7 +3401,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" }, "images": [ { @@ -3457,7 +3463,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" }, "images": [ { @@ -4328,9 +4334,6 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" } - ], - "keywords": [ - "osmosis_unlisted" ] }, { @@ -4563,9 +4566,6 @@ "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" } - ], - "keywords": [ - "osmosis_unstable" ] }, { @@ -6293,9 +6293,9 @@ ], "type_asset": "ics20", "base": "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", - "name": "Fanfury", + "name": "FURY.legacy", "display": "fury", - "symbol": "FURY", + "symbol": "FURY.legacy", "traces": [ { "type": "ibc-cw20", @@ -6673,6 +6673,14 @@ "display": "stkatom", "symbol": "stkATOM", "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "provider": "pSTAKE" + }, { "type": "ibc", "counterparty": { @@ -7108,7 +7116,7 @@ "base": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", "name": "USD Coin (Polygon)", "display": "polygon-usdc", - "symbol": "polygon.USDC", + "symbol": "polygon.USDC.axl", "traces": [ { "type": "synthetic", @@ -7148,7 +7156,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { @@ -7178,7 +7186,7 @@ "base": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", "name": "USD Coin (Avalanche)", "display": "avalanche-usdc", - "symbol": "avalanche.USDC", + "symbol": "avalanche.USDC.axl", "traces": [ { "type": "synthetic", @@ -7218,7 +7226,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { @@ -9115,7 +9123,6 @@ ] }, { - "description": "", "denom_units": [ { "denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", @@ -9442,7 +9449,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" }, "images": [ { @@ -9902,7 +9909,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" }, "images": [ { @@ -9910,7 +9917,7 @@ "chain_name": "picasso", "base_denom": "ppica" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" } ] }, @@ -10372,7 +10379,11 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png" } - ] + ], + "socials": { + "website": "https://www.erisprotocol.com/", + "twitter": "https://twitter.com/eris_protocol" + } }, { "description": "The native staking token of Sei.", @@ -10732,7 +10743,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" }, "images": [ { @@ -10843,7 +10854,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" }, "images": [ { @@ -10996,7 +11007,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { @@ -11063,7 +11074,8 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" }, "images": [ { @@ -11127,7 +11139,8 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" }, "images": [ { @@ -11724,7 +11737,6 @@ ] }, { - "description": "", "denom_units": [ { "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", @@ -11807,7 +11819,8 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" }, "images": [ { @@ -12010,7 +12023,7 @@ "description": "The Revenue & Governance token of Unstake.fi", "denom_units": [ { - "denom": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", + "denom": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", "exponent": 0, "aliases": [ "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" @@ -12022,7 +12035,7 @@ } ], "type_asset": "ics20", - "base": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", + "base": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", "name": "Unstake Fi", "display": "nstk", "symbol": "NSTK", @@ -12257,6 +12270,9 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" } + ], + "keywords": [ + "gaming" ] }, { @@ -12561,6 +12577,14 @@ "display": "stkosmo", "symbol": "stkOSMO", "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "provider": "pSTAKE" + }, { "type": "ibc", "counterparty": { @@ -12590,7 +12614,8 @@ ] }, { - "description": "Levana native token", + "description": "Levana Well-funded Perps is a protocol for perpetual swaps, which are leveraged trading contracts.", + "extended_description": "Levana Well-funded Perps is a protocol for perpetual swaps, which are leveraged trading contracts. It aims to manage risk and provide benefits to both traders and liquidity providers.\n\nFor traders, Levana's solution is to make all positions \"well-funded,\" meaning that the maximum profit for each position is locked in advance. This eliminates the possibility of bad debt and insolvency, providing greater security.\n\nLiquidity providers, on the other hand, receive a yield for taking on the risk of market instability. They supply funds that act as collateral, and in return, they earn a fee with a risk premium.\n\nThe protocol addresses the issues with existing perpetual swap models, such as the virtual AMM. These models rely on complex mechanisms to maintain price stability, but they have limitations and can be risky in volatile markets.\n\nBy separating different trading pairs and creating a decentralized market for liquidity, Levana reduces the risk of contagion between different markets. This also makes it easier to expand to other blockchain networks.\n\nOverall, Levana's perpetual swaps protocol offers a reliable and secure platform for traders and liquidity providers. It ensures fair settlement, minimizes risks, and allows for the development of additional financial protocols on top of tokenized positions.", "denom_units": [ { "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", @@ -12614,9 +12639,6 @@ { "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" } ], "coingecko_id": "levana-protocol" @@ -13548,7 +13570,8 @@ "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" }, { "description": "Baddest coin on Cosmos", @@ -13842,6 +13865,111 @@ } ] }, + { + "description": "Stride's liquid staked SAGA", + "denom_units": [ + { + "denom": "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", + "exponent": 0, + "aliases": [ + "stusaga" + ] + }, + { + "denom": "stSAGA", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", + "name": "Stride Staked SAGA", + "display": "stSAGA", + "symbol": "stSAGA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "saga", + "base_denom": "usaga" + }, + "provider": "Stride" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stusaga", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/stusaga" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", + "exponent": 0, + "aliases": [ + "stinj" + ] + }, + { + "denom": "stINJ", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", + "name": "Stride Staked INJ", + "display": "stINJ", + "symbol": "stINJ", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "injective", + "base_denom": "inj" + }, + "provider": "Stride" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stinj", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/stinj" + } + } + ], + "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" + } + ] + }, { "description": "GLTO-ERC20 on injective", "denom_units": [ @@ -13905,9 +14033,6 @@ "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" } - ], - "keywords": [ - "osmosis_unlisted" ] }, { @@ -13986,149 +14111,2068 @@ ] }, { + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", "denom_units": [ { - "denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "denom": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", "exponent": 0, "aliases": [ - "avalanche-uusdc" + "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" ] }, { - "denom": "avalanche-usdc", + "denom": "astro.cw20", "exponent": 6 } ], "type_asset": "ics20", - "base": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", - "name": "Wormhole USDC(Avalanche)", - "display": "avalanche-usdc", - "symbol": "avalanche.USDC.wh", + "base": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", + "name": "Astroport CW20 Token", + "display": "astro.cw20", + "symbol": "ASTRO.cw20", "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", - "channel_id": "channel-3" + "chain_name": "terra2", + "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "port": "wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce", + "channel_id": "channel-392" }, "chain": { - "channel_id": "channel-2186", - "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4" + "port": "transfer", + "channel_id": "channel-21671", + "path": "transfer/channel-21671/cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg" + }, "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.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" - } + ] }, { - "description": "Sail DAO Token", + "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", "denom_units": [ { - "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", "exponent": 0 }, { - "denom": "sail", + "denom": "BADKID", "exponent": 6 } ], - "base": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "name": "Sail", - "display": "sail", - "symbol": "SAIL", + "type_asset": "sdk.coin", + "address": "osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8", + "base": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "name": "BADKID", + "display": "BADKID", + "symbol": "BADKID", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png" } ] }, { - "description": "Nomic's native token.", + "description": "Solana USD Coin (Wormhole), Solana USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", "denom_units": [ { - "denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "denom": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", "exponent": 0, "aliases": [ - "unom" + "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3" ] }, { - "denom": "nom", - "exponent": 6 + "denom": "wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6", + "exponent": 6, + "aliases": [] } ], "type_asset": "ics20", - "base": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", - "name": "Nomic", - "display": "nomic", - "symbol": "nomic.NOM", + "base": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", + "name": "Solana USD Coin (Wormhole)", + "display": "wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6", + "symbol": "solana.USDC.wh", "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Circle" + }, + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Circle" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" + }, + "provider": "Wormhole" + }, { "type": "ibc", "counterparty": { - "chain_name": "nomic", - "base_denom": "unom", - "channel_id": "channel-1" + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "channel_id": "channel-3" }, "chain": { - "channel_id": "channel-6897", - "path": "transfer/channel-6897/unom" + "channel_id": "channel-2186", + "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3" } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, "images": [ { "image_sync": { - "chain_name": "nomic", - "base_denom": "unom" + "chain_name": "solana", + "base_denom": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" }, - "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.svg" } - ], - "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": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + "description": "The native staking and governance token of Humans.ai.", "denom_units": [ { - "denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "exponent": 0 + "denom": "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", + "exponent": 0, + "aliases": [ + "aheart" + ] }, { - "denom": "BADKID", - "exponent": 6 + "denom": "heart", + "exponent": 18 } ], - "type_asset": "sdk.coin", - "address": "osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8", - "base": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "name": "BADKID", - "display": "BADKID", - "symbol": "BADKID", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png" - }, - "images": [ + "type_asset": "ics20", + "base": "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", + "name": "Humans.ai", + "display": "heart", + "symbol": "HEART", + "traces": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png" + "type": "ibc", + "counterparty": { + "chain_name": "humans", + "base_denom": "aheart", + "channel_id": "channel-4" + }, + "chain": { + "channel_id": "channel-20082", + "path": "transfer/channel-20082/aheart" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg", + "theme": { + "dark_mode": true + } + } + ] + }, + { + "description": "The token of Teledisko DAO.", + "denom_units": [ + { + "denom": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", + "exponent": 0, + "aliases": [ + "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280" + ] + }, + { + "denom": "berlin", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", + "name": "Teledisko DAO", + "display": "berlin", + "symbol": "BERLIN", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "evmos", + "base_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-204", + "path": "transfer/channel-204/erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.svg" + } + ] + }, + { + "description": "The native token of Scorum", + "denom_units": [ + { + "denom": "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", + "exponent": 0, + "aliases": [ + "nscr" + ] + }, + { + "denom": "scr", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", + "name": "Scorum", + "display": "scr", + "symbol": "SCR", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "scorum", + "base_denom": "nscr", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-20100", + "path": "transfer/channel-20100/nscr" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg" + } + ] + }, + { + "description": "The native token of Chain4Energy", + "denom_units": [ + { + "denom": "ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8", + "exponent": 0, + "aliases": [ + "uc4e" + ] + }, + { + "denom": "c4e", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8", + "name": "C4E", + "display": "c4e", + "symbol": "C4E", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "chain4energy", + "base_denom": "uc4e", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-22172", + "path": "transfer/channel-22172/uc4e" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "Bitmos opens doors for BRC20 tokens to thrive alongside established players in the Cosmos Network, revolutionizing decentralized finance (DeFi) for all.", + "denom_units": [ + { + "denom": "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", + "exponent": 0, + "aliases": [ + "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq" + ] + }, + { + "denom": "bitmos", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", + "name": "Bitmos", + "display": "bitmos", + "symbol": "BMOS", + "traces": [ + { + "type": "ibc-cw20", + "counterparty": { + "chain_name": "terra2", + "base_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-26" + }, + "chain": { + "port": "transfer", + "channel_id": "channel-341", + "path": "transfer/channel-341/cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png" + } + ] + }, + { + "description": "The SRCX token of Source Protocol.", + "denom_units": [ + { + "denom": "ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B", + "exponent": 0, + "aliases": [ + "nsrcx", + "ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A" + ] + }, + { + "denom": "srcx", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B", + "name": "Source Token", + "display": "srcx", + "symbol": "SRCX", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "0x454b90716a9435e7161a9aea5cf00e0acbe565ae", + "contract": "0xC891aBa0b42818fb4c975Bf6461033c62BCE75ff" + }, + "chain": { + "contract": "0xC891aBa0b42818fb4c975Bf6461033c62BCE75ff" + }, + "provider": "DeltaSwap.io" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "planq", + "base_denom": "erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09", + "channel_id": "channel-61" + }, + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "source", + "base_denom": "ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-8945", + "path": "transfer/channel-8945/transfer/channel-1/erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png" + } + ] + }, + { + "description": "The revenue token for Pylons", + "denom_units": [ + { + "denom": "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", + "exponent": 0, + "aliases": [ + "ubedrock" + ] + }, + { + "denom": "rock", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", + "name": "Pylons", + "display": "rock", + "symbol": "ROCK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "pylons", + "base_denom": "ubedrock", + "channel_id": "channel-29" + }, + "chain": { + "channel_id": "channel-17683", + "path": "transfer/channel-17683/ubedrock" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png" + } + ] + }, + { + "description": "BSKT tracks the top assets across the crypto ecosystem", + "denom_units": [ + { + "denom": "ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA", + "exponent": 0, + "aliases": [ + "6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA", + "wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst", + "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst" + ] + }, + { + "denom": "wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5", + "exponent": 5, + "aliases": [ + "bskt" + ] + } + ], + "type_asset": "ics20", + "base": "ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA", + "name": "Basket", + "display": "wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5", + "symbol": "BSKT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA" + }, + "provider": "Wormhole" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-2186", + "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png" + } + ] + }, + { + "description": "The native staking and governance token of the AIOZ Network.", + "denom_units": [ + { + "denom": "ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F", + "exponent": 0, + "aliases": [ + "attoaioz" + ] + }, + { + "denom": "nanoaioz", + "exponent": 9 + }, + { + "denom": "aioz", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F", + "name": "AIOZ Network", + "display": "aioz", + "symbol": "AIOZ", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "aioz", + "base_denom": "attoaioz", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-779", + "path": "transfer/channel-779/attoaioz" + } + } + ], + "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" + }, + "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" + } + ] + }, + { + "description": "Stride's liquid staked DYM", + "denom_units": [ + { + "denom": "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", + "exponent": 0, + "aliases": [ + "stadym" + ] + }, + { + "denom": "stDYM", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", + "name": "Stride Staked DYM", + "display": "stDYM", + "symbol": "stDYM", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "dymension", + "base_denom": "adym" + }, + "provider": "Stride" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stadym", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/stadym" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg" + } + ] + }, + { + "description": "DOKI the last Dragon", + "denom_units": [ + { + "denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "exponent": 0, + "aliases": [ + "udoki" + ] + }, + { + "denom": "doki", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "name": "DOKI", + "display": "doki", + "symbol": "DOKI", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "odin", + "base_denom": "udoki", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-258", + "path": "transfer/channel-258/udoki" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png" + } + ] + }, + { + "description": "Sail DAO is a liquidity deployment and management DAO built as a collaboration between the Osmosis and Migaloo Blockchains.", + "extended_description": "Sail DAO is a liquidity deployment and management DAO built as a collaboration between the Osmosis and Migaloo Blockchains. Seeded by both the Osmosis Community Pool and the Migaloo Foundation, Sail DAO is open to hear offers from cosmos based projects that hope to seed liquidity for their token on the Osmosis blockchain. Along with the creation of this DAO the White Whale DEX is deployed on Osmosis, being the first DEX apart from Osmosis to deploy on the chain, it is a great step towards Osmosis becoming an ecosystem from an appchain. Migaloo incubated projects are encouraged to participate in OTC deals with Sail DAO in order to seed or enhance liquidity on WW's Osmosis DEX. However, offers are not limited to Migaloo projects and liquidity is not limitied to being deployed on WW DEX. The treasury of this DAO can be deployed however it wishes at the discretion of the Sail DAO voters. The Osmosis CP has been given veto authorization over any props introduced in this DAO and has also been given clawback rights if this venture ever gets off track.", + "denom_units": [ + { + "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "exponent": 0 + }, + { + "denom": "sail", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "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" + } + ], + "coingecko_id": "sail-dao", + "socials": { + "website": "https://daodao.zone/dao/osmo106tvcj58rvdn9k36m9m3xcmcwk2c3fgft3ldcst9lgy05gcmjanqexru3h/home", + "twitter": "https://twitter.com/Sail_DAO_" + } + }, + { + "description": "SHARK is the apex price prediction market within Cosmos.", + "denom_units": [ + { + "denom": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark" + ] + }, + { + "denom": "SHARK", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", + "name": "SHARK", + "display": "SHARK", + "symbol": "SHARK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-642", + "path": "transfer/channel-642/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png" + } + ] + }, + { + "description": "XRP bridged from XRPL", + "denom_units": [ + { + "denom": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", + "exponent": 0, + "aliases": [ + "drop", + "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz" + ] + }, + { + "denom": "xrp", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", + "name": "Ripple (Coreum)", + "display": "xrp", + "symbol": "XRP.core", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "xrpl", + "base_denom": "drop" + }, + "provider": "Coreum" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "coreum", + "base_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-2188", + "path": "transfer/channel-2188/drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "xrpl", + "base_denom": "drop" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.core.png" + } + ] + }, + { + "description": "The Original Meme Coin of SEI Network", + "denom_units": [ + { + "denom": "ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05", + "exponent": 0, + "aliases": [ + "cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed" + ] + }, + { + "denom": "SEIYAN", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05", + "name": "SEIYAN", + "display": "SEIYAN", + "symbol": "SEIYAN", + "traces": [ + { + "type": "ibc-cw20", + "counterparty": { + "chain_name": "sei", + "base_denom": "cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed", + "port": "transfer", + "channel_id": "channel-0" + }, + "chain": { + "port": "transfer", + "channel_id": "channel-782", + "path": "transfer/channel-782/cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "The native token of Nibiru network", + "denom_units": [ + { + "denom": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", + "exponent": 0, + "aliases": [ + "unibi" + ] + }, + { + "denom": "nibi", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", + "name": "Nibiru", + "display": "nibi", + "symbol": "NIBI", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "nibiru", + "base_denom": "unibi", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-21113", + "path": "transfer/channel-21113/unibi" + } + } + ], + "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" + }, + "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" + } + ] + }, + { + "description": "BEAST-ERC20 on injective", + "denom_units": [ + { + "denom": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", + "exponent": 0, + "aliases": [ + "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be" + ] + }, + { + "denom": "beast", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", + "name": "Gelotto BEAST (Peggy)", + "display": "beast", + "symbol": "BEAST", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xA4426666addBE8c4985377d36683D17FB40c31Be" + }, + "provider": "Peggy" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "injective", + "base_denom": "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", + "channel_id": "channel-8" + }, + "chain": { + "channel_id": "channel-122", + "path": "transfer/channel-122/peggy0xA4426666addBE8c4985377d36683D17FB40c31Be" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xA4426666addBE8c4985377d36683D17FB40c31Be" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png" + } + ] + }, + { + "description": "Cvn is a Layer-1 blockchain built to deliver on the promise of DeFi", + "denom_units": [ + { + "denom": "ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A", + "exponent": 0, + "aliases": [ + "acvnt" + ] + }, + { + "denom": "cvnt", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A", + "name": "ConsciousDAO", + "display": "cvnt", + "symbol": "CVN", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "conscious", + "base_denom": "acvnt", + "channel_id": "channel-6" + }, + "chain": { + "channel_id": "channel-73971", + "path": "transfer/channel-73971/acvnt" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg" + }, + "images": [ + { + "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" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "The memecoin built for the Celestia community", + "denom_units": [ + { + "denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "exponent": 0 + }, + { + "denom": "toro", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z", + "base": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "name": "TORO", + "display": "toro", + "symbol": "TORO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.svg" + } + ] + }, + { + "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.", + "denom_units": [ + { + "denom": "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", + "exponent": 0, + "aliases": [ + "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3" + ] + }, + { + "denom": "sayve", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", + "name": "sayve", + "display": "sayve", + "symbol": "SAYVE", + "traces": [ + { + "type": "ibc-cw20", + "counterparty": { + "chain_name": "terra2", + "base_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-26" + }, + "chain": { + "port": "transfer", + "channel_id": "channel-341", + "path": "transfer/channel-341/cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3" + } + } + ], + "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" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "LAB - Everything is an Experiment", + "extended_description": "LAB - Everything is an Experiment\n\nUse 10 $LAB tokens to mint 1 Mad Scientist NFT on Backbone Labs Osmosis Launchpad. You will then be able to trade your NFTs on the marketplace. You can also choose to hold onto your $LAB tokens as unrevealed NFTs and trade it.\n\n Fair Launch: The event was marked by the absence of whitelists (WLs), no bots and no lock, ensuring an equitable opportunity for all interested parties.\n\nPreparation for the Launch: Participants were given a 52.91-hour window to deposit $OSMO into a pool on Streamswap.\n\nThe Swap Process: After the initial deposit period, $OSMO was converted into $LAB tokens over an additional hour, allowing for a smooth transition and fair distribution.", + "denom_units": [ + { + "denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "exponent": 0 + }, + { + "denom": "LAB", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n", + "base": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "name": "LAB", + "display": "LAB", + "symbol": "LAB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png" + } + ] + }, + { + "description": "BackBone Labs Liquid Staked OSMO", + "denom_units": [ + { + "denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "exponent": 0 + }, + { + "denom": "bOSMO", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv", + "base": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "name": "BackBone Labs Liquid Staked OSMO", + "display": "bOSMO", + "symbol": "bOSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", + "denom_units": [ + { + "denom": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "exponent": 0, + "aliases": [ + "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78" + ] + }, + { + "denom": "PUNDIX", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "name": "Pundi X Token", + "display": "PUNDIX", + "symbol": "PUNDIX", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "fxcore", + "base_denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "pundix", + "base_denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-12618", + "path": "transfer/channel-12618/transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "The native fee, governance and staking token of the Tinkernet Parachain.", + "denom_units": [ + { + "denom": "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", + "exponent": 0, + "aliases": [ + "2125", + "ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8" + ] + }, + { + "denom": "tnkr", + "exponent": 12 + } + ], + "type_asset": "ics20", + "base": "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", + "name": "Tinkernet", + "display": "tnkr", + "symbol": "TNKR", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "tinkernet", + "base_denom": "Planck" + }, + "provider": "Tinkernet Parachain" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "picasso", + "base_denom": "2125", + "channel_id": "channel-17" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/2125" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-2/2125" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" + } + ] + }, + { + "description": "W is the native token powering the Wormhole interoperability platform.", + "denom_units": [ + { + "denom": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", + "exponent": 0, + "aliases": [ + "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos" + ] + }, + { + "denom": "w", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", + "name": "Wormhole Token", + "display": "w", + "symbol": "W", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ" + }, + "provider": "Wormhole" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-2186", + "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png" + } + ] + }, + { + "description": "The native token of dHealth", + "denom_units": [ + { + "denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "exponent": 0, + "aliases": [ + "udhp" + ] + }, + { + "denom": "dhp", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "name": "dHealth", + "display": "dhp", + "symbol": "DHP", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "dhealth", + "base_denom": "udhp", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-38776", + "path": "transfer/channel-38776/udhp" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "The native token of Furya", + "denom_units": [ + { + "denom": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "exponent": 0, + "aliases": [ + "ufury" + ] + }, + { + "denom": "fury", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "name": "furya", + "display": "fury", + "symbol": "FURY", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "furya", + "base_denom": "ufury", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-8690", + "path": "transfer/channel-8690/ufury" + } + } + ], + "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", + "theme": { + "primary_color_hex": "#eaf143" + } + } + ], + "keywords": [ + "gaming", + "staking", + "osmosis_unlisted" + ] + }, + { + "description": "The native staking and governance token of Saga.", + "denom_units": [ + { + "denom": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "exponent": 0, + "aliases": [ + "usaga" + ] + }, + { + "denom": "saga", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "name": "Saga", + "display": "saga", + "symbol": "SAGA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "saga", + "base_denom": "usaga", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-38946", + "path": "transfer/channel-38946/usaga" + } + } + ], + "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", + "theme": { + "primary_color_hex": "#000000", + "dark_mode": false + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg", + "theme": { + "primary_color_hex": "#FFFFFF", + "dark_mode": true + } + } + ] + }, + { + "description": "$ATOM to $1,000 LFG!!", + "denom_units": [ + { + "denom": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", + "exponent": 0, + "aliases": [ + "uatom1klfg", + "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG" + ] + }, + { + "denom": "ATOM1KLFG", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", + "name": "ATOM1KLFG", + "display": "ATOM1KLFG", + "symbol": "ATOM1KLFG", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "channel_id": "channel-10" + }, + "chain": { + "channel_id": "channel-874", + "path": "transfer/channel-874/factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png" + } + ] + }, + { + "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", + "denom_units": [ + { + "denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "exponent": 0, + "aliases": [ + "shido" + ] + }, + { + "denom": "SHIDO", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "name": "Shido", + "display": "SHIDO", + "symbol": "SHIDO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "shido", + "base_denom": "shido", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-38921", + "path": "transfer/channel-38921/shido" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "Decentralized Machine Learning", + "denom_units": [ + { + "denom": "ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5", + "exponent": 0, + "aliases": [ + "ucif" + ] + }, + { + "denom": "cif", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5", + "name": "Cifer", + "display": "cif", + "symbol": "CIF", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "cifer", + "base_denom": "ucif", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-39205", + "path": "transfer/channel-39205/ucif" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/", + "denom_units": [ + { + "denom": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", + "exponent": 0, + "aliases": [ + "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava" + ] + }, + { + "denom": "hava", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", + "name": "Hava Coin", + "display": "hava", + "symbol": "HAVA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "injective", + "base_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "channel_id": "channel-8" + }, + "chain": { + "channel_id": "channel-122", + "path": "transfer/channel-122/factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png" + } + ] + }, + { + "description": "OnE mEmEcOiN tO cOnNeCt oL ImBeCiles - aNd in Da Cosmos BiNd DeM", + "denom_units": [ + { + "denom": "factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC", + "exponent": 0 + }, + { + "denom": "IBC", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "base": "factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC", + "name": "IBC", + "display": "IBC", + "symbol": "IBC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibc.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibc.png" + } + ], + "keywords": [ + "memecoin", + "osmosis_unlisted" + ], + "socials": { + "website": "https://www.ibcmeme.wtf", + "twitter": "https://twitter.com/IBCmemecoin" + } + }, + { + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "denom_units": [ + { + "denom": "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", + "exponent": 0, + "aliases": [ + "uastro" + ] + }, + { + "denom": "astro", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", + "name": "Astroport token", + "display": "astro", + "symbol": "ASTRO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "channel_id": "channel-10" + }, + "chain": { + "channel_id": "channel-874", + "path": "transfer/channel-874/factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + } + ] + }, + { + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "denom_units": [ + { + "denom": "ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564", + "exponent": 0, + "aliases": [ + "uxastro", + "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO" + ] + }, + { + "denom": "xASTRO", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564", + "name": "Staked Astroport Token", + "display": "xASTRO", + "symbol": "xASTRO", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + }, + "provider": "Astroport" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "channel_id": "channel-10" + }, + "chain": { + "channel_id": "channel-874", + "path": "transfer/channel-874/factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "Gravity Bridge Paxos Gold", + "denom_units": [ + { + "denom": "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", + "exponent": 0, + "aliases": [ + "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78" + ] + }, + { + "denom": "gpaxg", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", + "name": "Paxos Gold (Gravity Bridge)", + "display": "gpaxg", + "symbol": "PAXG.grv", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "comex", + "base_denom": "XAU" + }, + "provider": "Paxos" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x45804880De22913dAFE09f4980848ECE6EcbAf78" + }, + "provider": "Gravity Bridge" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "gravitybridge", + "base_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "channel_id": "channel-10" + }, + "chain": { + "channel_id": "channel-144", + "path": "transfer/channel-144/gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.svg" + }, + { + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg" + } + ] + }, + { + "description": "Restake DAO Token", + "denom_units": [ + { + "denom": "ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB", + "exponent": 0, + "aliases": [ + "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + ] + }, + { + "denom": "rstk", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB", + "name": "RESTAKE", + "display": "rstk", + "symbol": "RSTK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-642", + "path": "transfer/channel-642/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + } + ] + }, + { + "description": "The Revenue & Governance token of Unstake.fi", + "denom_units": [ + { + "denom": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", + "exponent": 0, + "aliases": [ + "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" + ] + }, + { + "denom": "nstk", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", + "name": "Unstake Fi", + "display": "nstk", + "symbol": "NSTK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "kujira", + "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-259", + "path": "transfer/channel-259/factory:kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh:unstk" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.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" + } + }, + { + "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": "nom", + "symbol": "nomic.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": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", @@ -14158,74 +16202,335 @@ ] }, { - "description": "The memecoin built for the Celestia community", + "description": "Memecoin for The International Brane Wave", "denom_units": [ { - "denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "exponent": 0, + "aliases": [ + "brnz" + ] + } + ], + "base": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "name": "Branez", + "display": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "symbol": "BRNZ", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg" + } + ] + }, + { + "description": "Bernese Mountain Dog. Thematic dog token to have fun and be friends with all other dog tokens. Fixed supply 132M", + "denom_units": [ + { + "denom": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", "exponent": 0 }, { - "denom": "toro", + "denom": "BERNESE", "exponent": 6 } ], "type_asset": "sdk.coin", - "address": "osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z", - "base": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", - "name": "TORO", - "display": "toro", - "symbol": "TORO", + "address": "osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss", + "base": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", + "name": "BERNESE", + "display": "BERNESE", + "symbol": "BERNESE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png" } ] }, { - "description": "SHARK is the apex price prediction market within Cosmos.", + "description": "wLibra is a bridged version of Libra Coin from 0L Network via LibraBridge.", + "extended_description": "Libra Coin is a fork from Facebook's Diem (Libra) blockchain that was announced in 2019. Libra Coin operates on its own high-performance Layer 1 blockchain, known as the 0L Network. In October 2021, Libra Coin began mining.\n\n Like Bitcoin, there were no pre-mined coins or dedicated token allocation to any parties; all coins were minted through a mining process. Unlike Bitcoin, which undergoes continuous issuance, Libra Coin has a fixed supply. By December 2023, all the Libra Coin had been issued, establishing a capped supply and making the coin permanently deflationary.\n\n Fiercely independent, the project has a long-term view because it is unburdened by venture capital funding, labs entities, a foundation, and the influence of other blockchain ecosystems. Carpe diem.", "denom_units": [ { - "denom": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", + "denom": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", + "exponent": 0 + }, + { + "denom": "wLIBRA", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p", + "base": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", + "name": "Wrapped Libra Coin", + "display": "wLIBRA", + "symbol": "wLIBRA", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "0l", + "base_denom": "microlibra" + }, + "provider": "LibraBridge" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "0l", + "base_denom": "microlibra" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png" + } + ], + "socials": { + "website": "https://0l.network/", + "twitter": "https://twitter.com/0LNetwork" + } + }, + { + "description": "ashLAB - Burned LAB", + "extended_description": "ashLAB - reciept token recieved when burning LAB via ASH DAOs Furnace", + "denom_units": [ + { + "denom": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "exponent": 0 + }, + { + "denom": "ashLAB", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07", + "base": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "name": "Burned LAB", + "display": "ashLAB", + "symbol": "ashLAB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png" + } + ] + }, + { + "description": "The native token of Nim Network.", + "extended_description": "Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.", + "denom_units": [ + { + "denom": "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", "exponent": 0, "aliases": [ - "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark" + "anim", + "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942" ] }, { - "denom": "SHARK", + "denom": "nim", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", + "name": "NIM Network", + "display": "nim", + "symbol": "NIM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "dymension", + "base_denom": "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-19774", + "path": "transfer/channel-19774/transfer/channel-49/anim" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "dymension", + "base_denom": "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg" + } + ], + "socials": { + "website": "https://ai.nim.network/", + "twitter": "https://twitter.com/nim_network" + }, + "keywords": [ + "gaming", + "AI" + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg" + } + }, + { + "description": "Beer Is Good for You!", + "denom_units": [ + { + "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", + "exponent": 0 + }, + { + "denom": "bwh", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", + "name": "BeerWifHat", + "display": "bwh", + "symbol": "BWH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bwh.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bwh.png" + } + ] + }, + { + "description": "Cosmos Airdrop Chat", + "extended_description": "Official Token of the Cosmos Airdrop community", + "denom_units": [ + { + "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", + "exponent": 0 + }, + { + "denom": "CAC", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", + "name": "Cosmos Airdrop Chat", + "display": "CAC", + "symbol": "CAC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CAC.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CAC.png" + } + ] + }, + { + "description": "GRAC is the official token of Racoon.Bet's gaming platform.", + "denom_units": [ + { + "denom": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" + ] + }, + { + "denom": "grac", "exponent": 6 } ], "type_asset": "ics20", - "base": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", - "name": "SHARK", - "display": "SHARK", - "symbol": "SHARK", + "base": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "name": "Gaming RAC Token", + "display": "grac", + "symbol": "GRAC", "traces": [ { "type": "ibc", "counterparty": { "chain_name": "migaloo", - "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", "channel_id": "channel-5" }, "chain": { "channel_id": "channel-642", - "path": "transfer/channel-642/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark" + "path": "transfer/channel-642/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png" + } + ] + }, + { + "description": "WEIRD token for WEIRD friends collection", + "denom_units": [ + { + "denom": "ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748", + "exponent": 0, + "aliases": [ + "uWEIRD" + ] + }, + { + "denom": "WEIRD", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748", + "name": "WEIRD token", + "display": "WEIRD", + "symbol": "WEIRD", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + "channel_id": "channel-10" + }, + "chain": { + "channel_id": "channel-874", + "path": "transfer/channel-874/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png" } ] } ] -} +} \ No newline at end of file diff --git a/osmosis/chain.json b/osmosis/chain.json index 6f04f89518..b93432e36c 100644 --- a/osmosis/chain.json +++ b/osmosis/chain.json @@ -37,338 +37,31 @@ }, "codebase": { "git_repo": "https://github.com/osmosis-labs/osmosis", - "recommended_version": "v22.0.1", + "genesis": { + "name": "v3", + "genesis_url": "https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json" + }, + "recommended_version": "v24.0.1", "compatible_versions": [ - "v22.0.0", - "v22.0.1" + "v24.0.1", + "v24.0.0" ], - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v22.0.1/osmosisd-22.0.1-linux-amd64", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v22.0.1/osmosisd-22.0.1-linux-arm64" - }, - "go_version": "1.21", - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230922030206-734f99fba785", + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v24-osmo-5", "consensus": { - "type": "tendermint", - "version": "0.38.0" + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.4-v24-osmo-2" }, - "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", + "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "cosmwasm_enabled": true, - "ibc_go_version": "4.5.1", + "ibc_go_version": "v7.4.0", "ics_enabled": [ "ics20-1" ], - "genesis": { - "name": "v3", - "genesis_url": "https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json" - }, - "versions": [ - { - "name": "v3", - "tag": "v3.1.0", - "height": 0, - "binaries": { - "darwin/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v3.1.0/osmosisd-3.1.0-darwin-amd64?checksum=sha256:a532f25ae754d2573f6a3c91ba59496ddb9f6766ccf6f69f408f6e1597144a74", - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v3.1.0/osmosisd-3.1.0-linux-amd64?checksum=sha256:6a73d75e9c75ea402c13edc8c5c4ed08e26c5d8e517d540a9ca8b7e7afa67f79", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v3.1.0/osmosisd-3.1.0-linux-arm64?checksum=sha256:893f8a9786ae76d4217260201cd94ab67010f68d98b9676a9b31c0a5e68d1eae" - }, - "next_version_name": "v4" - }, - { - "name": "v4", - "tag": "v4.2.0", - "height": 1314500, - "binaries": { - "darwin/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v4.2.0/osmosisd-4.2.0-darwin-amd64?checksum=sha256:eee08350b223dd06a2aa16aab44aa51eb116f6267924ee1e788ca28fb54fe02d", - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v4.2.0/osmosisd-4.2.0-linux-amd64?checksum=sha256:a11c61a737983d176f23ce83fa5ff985000ce8d5107d738ee6fa7d59b8dd3053", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v4.2.0/osmosisd-4.2.0-linux-arm64?checksum=sha256:41260be15e874fbc6cc49757d9fe3d4e459634729e2b745923e508e9cb26f837" - }, - "next_version_name": "v5" - }, - { - "name": "v5", - "tag": "v6.4.0", - "height": 2383300, - "binaries": { - "darwin/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v6.4.0/osmosisd-6.4.0-darwin-amd64?checksum=sha256:735c7828b0bc311381f4c18081fa648f849df03aeccf173425cc52a634e3c7d8", - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v6.4.0/osmosisd-6.4.0-linux-amd64?checksum=sha256:e4017da5d1a0a3b37b4f6936ba7ef16f39972ae25f95feae43e506f14933cf94", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v6.4.0/osmosisd-6.4.0-linux-arm64?checksum=sha256:a101bb3feb0419293a3ecee17d732a312bf9e864a829905ed509c65b5944040b" - }, - "next_version_name": "v7" - }, - { - "name": "v7", - "tag": "v8.0.0", - "height": 3401000, - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v8.0.0/osmosisd-8.0.0-linux-amd64?checksum=sha256:4559ffe7d1e83b1519c2d45a709d35a89b51f8b35f8bba3b58aef92e667e254c" - }, - "next_version_name": "v9" - }, - { - "name": "v9", - "tag": "v10.1.1", - "height": 4707300, - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v10.1.1/osmosisd-10.1.1-linux-amd64?checksum=sha256:aeae58f8b0be86d5e6e3aec1a8774eab4947207c88c7d4f309c46da98f6694e8", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v10.1.1/osmosisd-10.1.1-linux-arm64?checksum=sha256:d2c672ffa9782687f91d8d03bd23fdf8bd2fbe8b79c9cfcf8e9d302a1238a12c" - }, - "next_version_name": "v11" - }, - { - "name": "v11", - "tag": "v11.0.1", - "height": 5432450, - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v11.0.1/osmosisd-11.0.1-linux-amd64?checksum=sha256:41b8fd2345a5e5b77ee5ed9b9ec5370d94bd1b1aa0d4ac2ac0ab02ee98ddd0d8", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v11.0.1/osmosisd-11.0.1-linux-arm64?checksum=sha256:267776170495ecaa831238ea8994f8790a379663c9ae47a2e93e5beceafd8e1d" - }, - "next_version_name": "v12" - }, - { - "name": "v12", - "tag": "v12.3.0", - "height": 6246000, - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v12.3.0/osmosisd-12.3.0-linux-amd64?checksum=sha256:958210c919d13c281896fa9773c323c5534f0fa46d74807154f737609a00db70", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v12.3.0/osmosisd-12.3.0-linux-arm64?checksum=sha256:a931618c8a839c30e5cecfd2a88055cda1d68cc68557fe3303fe14e2de3bef8f" - }, - "next_version_name": "v13" - }, - { - "name": "v13", - "tag": "v13.1.2", - "height": 7241500, - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v13.1.2/osmosisd-13.1.2-linux-amd64?checksum=sha256:67ed53046667c72ec6bfe962bcb4d6b122610876b3adf75fb7820ce52c34872d", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v13.1.2/osmosisd-13.1.2-linux-arm64?checksum=sha256:ad35c2a8d55852fa28187a55bdeb983494c07923f2a8a9f4479fb044d8d62bd9" - }, - "next_version_name": "v14" - }, - { - "name": "v14", - "tag": "v14.0.1", - "height": 7937500, - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v14.0.1/osmosisd-14.0.1-linux-amd64?checksum=sha256:2cc4172bcf000f0f06b30b16864d875a8de2ee12df994a593dfd52a506851bce", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v14.0.1/osmosisd-14.0.1-linux-arm64?checksum=sha256:9a44c17d239c8d9afd19d0ff0bd14ca883fb9e9fbf69aff18c2607ffa6bff378" - }, - "next_version_name": "v15" - }, - { - "name": "v15", - "tag": "v15.2.0", - "height": 8732500, - "recommended_version": "v15.2.0", - "compatible_versions": [ - "v15.2.0", - "v15.1.2", - "v15.0.0" - ], - "cosmos_sdk_version": "0.46.10", - "consensus": { - "type": "tendermint", - "version": "0.34.24" - }, - "cosmwasm_version": "0.30", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-amd64?checksum=sha256:3aab2f2668cb5a713d5770e46a777ef01c433753378702d9ae941aa2d1ee5618", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-arm64?checksum=sha256:e158d30707a0ea51482237f99676223e81ce5a353966a5c83791d2662a930f35" - }, - "next_version_name": "v16" - }, - { - "name": "v16", - "tag": "v16.1.1", - "height": 10517000, - "recommended_version": "v16.1.1", - "compatible_versions": [ - "v16.1.0", - "v16.1.1" - ], - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230703010110-ed4eb883f2a6", - "consensus": { - "type": "tendermint", - "version": "informalsystems/tendermint@0.34.24" - }, - "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], - "binaries": { - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-arm64?checksum=sha256:b96ff1f4c9b4abecb1b38998b1a1f891cfed2cc8078ab64914b151183c0c199b", - "darwin/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-darwin-arm64?checksum=sha256:c743da4d3632a2bc3ea0ce784bbd13383492a4a34d53295eb2c96987bacf8e8c", - "darwin/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-darwin-amd64?checksum=sha256:d856ebda9c31f052d10a78443967a93374f2033292f0afdb6434b82b4ed79790", - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-amd64?checksum=sha256:f838618633c1d42f593dc33d26b25842f5900961e987fc08570bb81a062e311d" - }, - "next_version_name": "v17" - }, - { - "name": "v17", - "tag": "v17.0.0", - "height": 11126100, - "recommended_version": "v17.0.0", - "compatible_versions": [ - "v17.0.0" - ], - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@v0.45.0-rc1.0.20230703010110-ed4eb883f2a6", - "consensus": { - "type": "tendermint", - "version": "informalsystems/tendermint@0.34.24" - }, - "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], - "binaries": { - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-linux-arm64?checksum=sha256:d5eeab6a15e2acd7e24e7caf4fe3336c35367ff376da6299d404defd09ce52f9", - "darwin/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-darwin-arm64?checksum=sha256:5ca1b120a62ba473e7772682d89db949ae67aa10dc9bf4629b0022a95e7ff1df", - "darwin/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-darwin-amd64?checksum=sha256:b5e4deb0d659eeeaee791dab765433bdb8d6a7e37d909628e0f9becb7d1f154b", - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-linux-amd64?checksum=sha256:d7fe62ae33cf2f0b48a17eb8b02644dadd9924f15861ed622cd90cb1a038135b" - }, - "next_version_name": "v18" - }, - { - "name": "v18", - "tag": "v18.0.0", - "height": 11155350, - "recommended_version": "v18.0.0", - "compatible_versions": [ - "v18.0.0" - ], - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@v0.45.0-rc1.0.20230703010110-ed4eb883f2a6", - "consensus": { - "type": "tendermint", - "version": "informalsystems/tendermint@0.34.24" - }, - "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], - "binaries": { - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-arm64?checksum=sha256:4331f9a318f6dd2f012c36f6ef19af8378fd1e9bc85c751e3f56f7018176ed58", - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-amd64?checksum=sha256:9a98a57946e936e7380ae897a205b4e18a188332e91ca84a1f62c21cbb437845" - }, - "next_version_name": "v19" - }, - { - "name": "v19", - "tag": "v19.2.0", - "height": 11317300, - "recommended_version": "v19.2.0", - "compatible_versions": [ - "v19.2.0", - "v19.1.0", - "v19.0.0" - ], - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230927020814-2854ac001f06", - "consensus": { - "type": "tendermint", - "version": "informalsystems/tendermint@0.34.24" - }, - "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v19.2.0/osmosisd-19.2.0-linux-amd64?checksum=sha256:723ff1c5349eb3c039c3dc5f55895bbde2e1499fe7c0a96960cc6fadeec814c4", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v19.2.0/osmosisd-19.2.0-linux-arm64?checksum=sha256:d933b893d537422164a25bf161d7f269a59ea26d37f398cdb7dd575a9ec33ed2" - }, - "next_version_name": "v20" - }, - { - "name": "v20", - "tag": "v20.5.0", - "height": 12028900, - "recommended_version": "v20.5.0", - "compatible_versions": [ - "v20.5.0" - ], - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230922030206-734f99fba785", - "consensus": { - "type": "tendermint", - "version": "0.38.0" - }, - "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", - "cosmwasm_enabled": true, - "ibc_go_version": "4.5.1", - "ics_enabled": [ - "ics20-1" - ], - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-amd64?checksum=sha256:f9ff6176e32499f22b20288c71dbc802556eb5399baef23de164fe6158a55a69", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-arm64?checksum=sha256:99359257ff81d21b55b685924a74473d532cbc5af196a672a784bf13dad06d26" - }, - "next_version_name": "v21" - }, - { - "name": "v21", - "tag": "v21.1.4", - "proposal": 696, - "height": 12834100, - "recommended_version": "v21.1.4", - "compatible_versions": [ - "v21.1.4" - ], - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-osmo-4", - "consensus": { - "type": "cometbft", - "version": "v0.37.2" - }, - "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", - "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v21.1.4/osmosisd-21.1.4-linux-amd64?checksum=sha256:518fd61873622d505640ab08edb788e307e6beb4f52476fab77661dd96860416", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v21.1.4/osmosisd-21.1.4-linux-arm64?checksum=sha256:cdbc163f4f045718e1464a82ada4d9d2511dc8c6c3fea11044cb8e675b6f86f7" - }, - "next_version_name": "v22" - }, - { - "name": "v22", - "tag": "v22.0.1", - "proposal": 714, - "height": 13325950, - "recommended_version": "v22.0.1", - "compatible_versions": [ - "v22.0.0", - "v22.0.1" - ], - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v22-osmo-2", - "consensus": { - "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.2-v21-osmo-1" - }, - "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", - "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v22.0.1/osmosisd-22.0.1-linux-amd64", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v22.0.1/osmosisd-22.0.1-linux-arm64" - }, - "go_version": "1.21", - "next_version_name": "" - } - ] + "go_version": "1.21", + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v24.0.1/osmosisd-24.0.1-linux-amd64", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v24.0.1/osmosisd-24.0.1-linux-arm64" + } }, "images": [ { @@ -603,6 +296,14 @@ { "address": "https://rpc-osmo.kewrnode.com", "provider": "Kewr Node" + }, + { + "address": "https://rpc.osmosis.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://osmosis-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -610,6 +311,10 @@ "address": "https://lcd.osmosis.zone/", "provider": "Osmosis Foundation" }, + { + "address": "https://rest.osmosis.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, { "address": "https://osmosis-lcd.quickapi.com:443", "provider": "Chainlayer" @@ -697,6 +402,10 @@ { "address": "https://rest-osmo.kewrnode.com", "provider": "Kewr Node" + }, + { + "address": "https://osmosis-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -763,15 +472,19 @@ { "address": "https://grpc.osmosis.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "osmosis-grpc.noders.services:10090", + "provider": "[NODERS]TEAM" } ] }, "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": "ezstaking", + "url": "https://ezstaking.app/osmosis", + "tx_page": "https://ezstaking.app/osmosis/txs/${txHash}", + "account_page": "https://ezstaking.app/osmosis/account/${accountAddress}" }, { "kind": "mintscan", @@ -796,12 +509,6 @@ "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", @@ -832,4 +539,4 @@ "keywords": [ "dex" ] -} +} \ No newline at end of file diff --git a/osmosis/images/BRNZ.svg b/osmosis/images/BRNZ.svg new file mode 100644 index 0000000000..9da4416ad7 --- /dev/null +++ b/osmosis/images/BRNZ.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/osmosis/images/CAC.png b/osmosis/images/CAC.png new file mode 100644 index 0000000000..af4c9991e8 Binary files /dev/null and b/osmosis/images/CAC.png differ diff --git a/osmosis/images/LAB.png b/osmosis/images/LAB.png new file mode 100644 index 0000000000..dc0d9abbb9 Binary files /dev/null and b/osmosis/images/LAB.png differ diff --git a/osmosis/images/ashLAB.png b/osmosis/images/ashLAB.png new file mode 100644 index 0000000000..b7b0de2631 Binary files /dev/null and b/osmosis/images/ashLAB.png differ diff --git a/osmosis/images/bOSMO.png b/osmosis/images/bOSMO.png new file mode 100644 index 0000000000..a93752f9ee Binary files /dev/null and b/osmosis/images/bOSMO.png differ diff --git a/osmosis/images/bernese.png b/osmosis/images/bernese.png new file mode 100644 index 0000000000..e9e185e0ec Binary files /dev/null and b/osmosis/images/bernese.png differ diff --git a/osmosis/images/bwh.png b/osmosis/images/bwh.png new file mode 100644 index 0000000000..1ab422d624 Binary files /dev/null and b/osmosis/images/bwh.png differ diff --git a/osmosis/images/dai.pica.png b/osmosis/images/dai.pica.png new file mode 100644 index 0000000000..ca11601fd9 Binary files /dev/null and b/osmosis/images/dai.pica.png differ diff --git a/osmosis/images/dai.pica.svg b/osmosis/images/dai.pica.svg new file mode 100644 index 0000000000..06ebb78c54 --- /dev/null +++ b/osmosis/images/dai.pica.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/dot.pica.png b/osmosis/images/dot.pica.png new file mode 100644 index 0000000000..4a59d34fc5 Binary files /dev/null and b/osmosis/images/dot.pica.png differ diff --git a/osmosis/images/dot.pica.svg b/osmosis/images/dot.pica.svg new file mode 100644 index 0000000000..12d7b99af0 --- /dev/null +++ b/osmosis/images/dot.pica.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/eth.pica.png b/osmosis/images/eth.pica.png new file mode 100644 index 0000000000..d9d232b233 Binary files /dev/null and b/osmosis/images/eth.pica.png differ diff --git a/osmosis/images/eth.pica.svg b/osmosis/images/eth.pica.svg new file mode 100644 index 0000000000..92f558fbf7 --- /dev/null +++ b/osmosis/images/eth.pica.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/frax.pica.png b/osmosis/images/frax.pica.png new file mode 100644 index 0000000000..5f6b8c9fdd Binary files /dev/null and b/osmosis/images/frax.pica.png differ diff --git a/osmosis/images/frax.pica.svg b/osmosis/images/frax.pica.svg new file mode 100644 index 0000000000..de68e81047 --- /dev/null +++ b/osmosis/images/frax.pica.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/frxeth.pica.png b/osmosis/images/frxeth.pica.png new file mode 100644 index 0000000000..02b6566eec Binary files /dev/null and b/osmosis/images/frxeth.pica.png differ diff --git a/osmosis/images/frxeth.pica.svg b/osmosis/images/frxeth.pica.svg new file mode 100644 index 0000000000..e22f84aac1 --- /dev/null +++ b/osmosis/images/frxeth.pica.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/fxs.pica.png b/osmosis/images/fxs.pica.png new file mode 100644 index 0000000000..425664dce4 Binary files /dev/null and b/osmosis/images/fxs.pica.png differ diff --git a/osmosis/images/fxs.pica.svg b/osmosis/images/fxs.pica.svg new file mode 100644 index 0000000000..437003115a --- /dev/null +++ b/osmosis/images/fxs.pica.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/ibc.png b/osmosis/images/ibc.png new file mode 100644 index 0000000000..616da9e0b3 Binary files /dev/null and b/osmosis/images/ibc.png differ diff --git a/osmosis/images/paxg.grv.png b/osmosis/images/paxg.grv.png new file mode 100644 index 0000000000..f98e46354d Binary files /dev/null and b/osmosis/images/paxg.grv.png differ diff --git a/osmosis/images/paxg.grv.svg b/osmosis/images/paxg.grv.svg new file mode 100644 index 0000000000..d895f628a0 --- /dev/null +++ b/osmosis/images/paxg.grv.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/sfrax.pica.png b/osmosis/images/sfrax.pica.png new file mode 100644 index 0000000000..cd47e9ea77 Binary files /dev/null and b/osmosis/images/sfrax.pica.png differ diff --git a/osmosis/images/sfrax.pica.svg b/osmosis/images/sfrax.pica.svg new file mode 100644 index 0000000000..165e6fd01a --- /dev/null +++ b/osmosis/images/sfrax.pica.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/sfrxeth.pica.png b/osmosis/images/sfrxeth.pica.png new file mode 100644 index 0000000000..7e41f4dd0b Binary files /dev/null and b/osmosis/images/sfrxeth.pica.png differ diff --git a/osmosis/images/sfrxeth.pica.svg b/osmosis/images/sfrxeth.pica.svg new file mode 100644 index 0000000000..6b0b86a3cb --- /dev/null +++ b/osmosis/images/sfrxeth.pica.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/toro.svg b/osmosis/images/toro.svg new file mode 100644 index 0000000000..0dd571d81c --- /dev/null +++ b/osmosis/images/toro.svg @@ -0,0 +1,1299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/usdt.pica.png b/osmosis/images/usdt.pica.png new file mode 100644 index 0000000000..807b35bdff Binary files /dev/null and b/osmosis/images/usdt.pica.png differ diff --git a/osmosis/images/usdt.pica.svg b/osmosis/images/usdt.pica.svg new file mode 100644 index 0000000000..19a30b74dc --- /dev/null +++ b/osmosis/images/usdt.pica.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/xrp.core.png b/osmosis/images/xrp.core.png new file mode 100644 index 0000000000..9debf093e5 Binary files /dev/null and b/osmosis/images/xrp.core.png differ diff --git a/osmosis/images/xrp.core.svg b/osmosis/images/xrp.core.svg new file mode 100644 index 0000000000..dd774a490d --- /dev/null +++ b/osmosis/images/xrp.core.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/versions.json b/osmosis/versions.json index 601c5d7dad..4b43e69841 100644 --- a/osmosis/versions.json +++ b/osmosis/versions.json @@ -156,7 +156,233 @@ "darwin/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-darwin-amd64?checksum=sha256:d856ebda9c31f052d10a78443967a93374f2033292f0afdb6434b82b4ed79790", "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-amd64?checksum=sha256:f838618633c1d42f593dc33d26b25842f5900961e987fc08570bb81a062e311d" }, - "previous_version_name": "v15" + "previous_version_name": "v15", + "next_version_name": "v17" + }, + { + "name": "v17", + "tag": "v17.0.0", + "height": 11126100, + "recommended_version": "v17.0.0", + "compatible_versions": [ + "v17.0.0" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@v0.45.0-rc1.0.20230703010110-ed4eb883f2a6", + "consensus": { + "type": "tendermint", + "version": "informalsystems/tendermint@0.34.24" + }, + "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", + "cosmwasm_enabled": true, + "ibc_go_version": "4.3.1", + "ics_enabled": [ + "ics20-1" + ], + "binaries": { + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-linux-arm64?checksum=sha256:d5eeab6a15e2acd7e24e7caf4fe3336c35367ff376da6299d404defd09ce52f9", + "darwin/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-darwin-arm64?checksum=sha256:5ca1b120a62ba473e7772682d89db949ae67aa10dc9bf4629b0022a95e7ff1df", + "darwin/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-darwin-amd64?checksum=sha256:b5e4deb0d659eeeaee791dab765433bdb8d6a7e37d909628e0f9becb7d1f154b", + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-linux-amd64?checksum=sha256:d7fe62ae33cf2f0b48a17eb8b02644dadd9924f15861ed622cd90cb1a038135b" + }, + "previous_version_name": "v16", + "next_version_name": "v18" + }, + { + "name": "v18", + "tag": "v18.0.0", + "height": 11155350, + "recommended_version": "v18.0.0", + "compatible_versions": [ + "v18.0.0" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@v0.45.0-rc1.0.20230703010110-ed4eb883f2a6", + "consensus": { + "type": "tendermint", + "version": "informalsystems/tendermint@0.34.24" + }, + "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", + "cosmwasm_enabled": true, + "ibc_go_version": "4.3.1", + "ics_enabled": [ + "ics20-1" + ], + "binaries": { + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-arm64?checksum=sha256:4331f9a318f6dd2f012c36f6ef19af8378fd1e9bc85c751e3f56f7018176ed58", + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-amd64?checksum=sha256:9a98a57946e936e7380ae897a205b4e18a188332e91ca84a1f62c21cbb437845" + }, + "previous_version_name": "v17", + "next_version_name": "v19" + }, + { + "name": "v19", + "tag": "v19.2.0", + "height": 11317300, + "recommended_version": "v19.2.0", + "compatible_versions": [ + "v19.2.0", + "v19.1.0", + "v19.0.0" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230927020814-2854ac001f06", + "consensus": { + "type": "tendermint", + "version": "informalsystems/tendermint@0.34.24" + }, + "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", + "cosmwasm_enabled": true, + "ibc_go_version": "4.3.1", + "ics_enabled": [ + "ics20-1" + ], + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v19.2.0/osmosisd-19.2.0-linux-amd64?checksum=sha256:723ff1c5349eb3c039c3dc5f55895bbde2e1499fe7c0a96960cc6fadeec814c4", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v19.2.0/osmosisd-19.2.0-linux-arm64?checksum=sha256:d933b893d537422164a25bf161d7f269a59ea26d37f398cdb7dd575a9ec33ed2" + }, + "previous_version_name": "v18", + "next_version_name": "v20" + }, + { + "name": "v20", + "tag": "v20.5.0", + "height": 12028900, + "recommended_version": "v20.5.0", + "compatible_versions": [ + "v20.5.0" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230922030206-734f99fba785", + "consensus": { + "type": "tendermint", + "version": "0.38.0" + }, + "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", + "cosmwasm_enabled": true, + "ibc_go_version": "4.5.1", + "ics_enabled": [ + "ics20-1" + ], + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-amd64?checksum=sha256:f9ff6176e32499f22b20288c71dbc802556eb5399baef23de164fe6158a55a69", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-arm64?checksum=sha256:99359257ff81d21b55b685924a74473d532cbc5af196a672a784bf13dad06d26" + }, + "previous_version_name": "v19", + "next_version_name": "v21" + }, + { + "name": "v21", + "tag": "v21.1.4", + "proposal": 696, + "height": 12834100, + "recommended_version": "v21.1.4", + "compatible_versions": [ + "v21.1.4" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v21-osmo-5", + "consensus": { + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.2-v21-osmo-1" + }, + "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", + "cosmwasm_enabled": true, + "ibc_go_version": "7.3.1", + "ics_enabled": [ + "ics20-1" + ], + "go_version": "1.20", + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v21.1.4/osmosisd-21.1.4-linux-amd64?checksum=sha256:518fd61873622d505640ab08edb788e307e6beb4f52476fab77661dd96860416", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v21.1.4/osmosisd-21.1.4-linux-arm64?checksum=sha256:cdbc163f4f045718e1464a82ada4d9d2511dc8c6c3fea11044cb8e675b6f86f7" + }, + "previous_version_name": "v20", + "next_version_name": "v22" + }, + { + "name": "v22", + "tag": "v22.0.1", + "proposal": 714, + "height": 13325950, + "recommended_version": "v22.0.1", + "compatible_versions": [ + "v22.0.0", + "v22.0.1" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v22-osmo-3", + "consensus": { + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.2-v21-osmo-1" + }, + "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", + "cosmwasm_enabled": true, + "ibc_go_version": "7.3.1", + "ics_enabled": [ + "ics20-1" + ], + "go_version": "1.21", + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v22.0.1/osmosisd-22.0.1-linux-amd64", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v22.0.1/osmosisd-22.0.1-linux-arm64" + }, + "previous_version_name": "v21", + "next_version_name": "v23" + }, + { + "name": "v23", + "tag": "v23.0.8", + "proposal": 730, + "height": 13899375, + "recommended_version": "v23.0.8", + "compatible_versions": [ + "v23.0.8", + "v23.0.6", + "v23.0.3", + "v23.0.0" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v23-osmo-4", + "consensus": { + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.4-v23-osmo-3" + }, + "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ], + "go_version": "1.21", + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v23.0.8/osmosisd-23.0.8-linux-amd64", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v23.0.8/osmosisd-23.0.8-linux-arm64" + }, + "previous_version_name": "v22", + "next_version_name": "v24" + }, + { + "name": "v24", + "tag": "v24.0.1", + "proposal": 763, + "height": 14830300, + "recommended_version": "v24.0.1", + "compatible_versions": [ + "v24.0.1", + "v24.0.0" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v24-osmo-5", + "consensus": { + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.4-v24-osmo-2" + }, + "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ], + "go_version": "1.21", + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v24.0.1/osmosisd-24.0.1-linux-amd64", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v24.0.1/osmosisd-24.0.1-linux-arm64" + }, + "previous_version_name": "v23", + "next_version_name": "" } ] } diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000000..209f09eab7 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,140 @@ +{ + "name": "chain-registry", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "node-fetch": "^3.3.1" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "engines": { + "node": ">= 8" + } + } + }, + "dependencies": { + "data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" + }, + "fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "requires": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + } + }, + "formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "requires": { + "fetch-blob": "^3.1.2" + } + }, + "node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" + }, + "node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "requires": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + } + }, + "web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==" + } + } +} diff --git a/panacea/chain.json b/panacea/chain.json index 793f3e4365..a543f37194 100644 --- a/panacea/chain.json +++ b/panacea/chain.json @@ -134,4 +134,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg" } ] -} +} \ No newline at end of file diff --git a/passage/chain.json b/passage/chain.json index fb9fba51c5..c9b01eccc4 100644 --- a/passage/chain.json +++ b/passage/chain.json @@ -82,7 +82,7 @@ "recommended_version": "v2.4.0", "compatible_versions": [ "v2.4.0" - ], + ], "cosmos_sdk_version": "v0.45.16", "ibc_go_version": "v4.4.2", "consensus": { @@ -380,6 +380,12 @@ "tx_page": "https://www.mintscan.io/passage/transactions/${txHash}", "account_page": "https://www.mintscan.io/passage/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/passage", + "tx_page": "https://ezstaking.app/passage/txs/${txHash}", + "account_page": "https://ezstaking.app/passage/account/${accountAddress}" + }, { "kind": "atomscan", "url": "https://atomscan.com/passage", @@ -401,4 +407,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" } ] -} +} \ No newline at end of file diff --git a/passage1/chain.json b/passage1/chain.json index 076187c37b..31cde2f97f 100644 --- a/passage1/chain.json +++ b/passage1/chain.json @@ -51,6 +51,12 @@ "tx_page": "https://www.mintscan.io/passage/txs/${txHash}", "account_page": "https://www.mintscan.io/passage/account/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/passage", + "tx_page": "https://ezstaking.app/passage/txs/${txHash}", + "account_page": "https://ezstaking.app/passage/account/${accountAddress}" + }, { "kind": "atomscan", "url": "https://atomscan.com/passage", diff --git a/persistence/assetlist.json b/persistence/assetlist.json index a44fba3224..6eed991a69 100644 --- a/persistence/assetlist.json +++ b/persistence/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://persistence.one/", + "website": "https://persistence.one/", "twitter": "https://twitter.com/PersistenceOne" } }, @@ -556,6 +556,136 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg" } ] + }, + { + "description": "PSTAKE Liquid-Staked HUAHUA", + "denom_units": [ + { + "denom": "stk/uhuahua", + "exponent": 0, + "aliases": [] + }, + { + "denom": "stkhuahua", + "exponent": 6, + "aliases": [ + "stk/huahua" + ] + } + ], + "base": "stk/uhuahua", + "name": "PSTAKE staked HUAHUA", + "display": "stkhuahua", + "symbol": "stkHUAHUA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "chihuahua", + "base_denom": "uhuahua" + }, + "provider": "pSTAKE" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkhuahua.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkhuahua.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkhuahua.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkhuahua.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4", + "exponent": 0, + "aliases": [ + "uhuahua" + ] + }, + { + "denom": "huahua", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4", + "name": "Chihuahua", + "display": "huahua", + "symbol": "HUAHUA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "chihuahua", + "base_denom": "uhuahua", + "channel_id": "channel-94" + }, + "chain": { + "channel_id": "channel-203", + "path": "transfer/channel-203/uhuahua" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "chihuahua", + "base_denom": "uhuahua" + }, + "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" + } + ], + "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" + } + }, + { + "description": "PSTAKE Liquid-Staked XPRT", + "denom_units": [ + { + "denom": "stk/uxprt", + "exponent": 0, + "aliases": [] + }, + { + "denom": "stkxprt", + "exponent": 6, + "aliases": [ + "stk/xprt" + ] + } + ], + "base": "stk/uxprt", + "name": "PSTAKE staked XPRT", + "display": "stkxprt", + "symbol": "stkXPRT", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "persistence", + "base_denom": "uxprt" + }, + "provider": "pSTAKE" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkxprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkxprt.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkxprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkxprt.svg" + } + ] } ] } \ No newline at end of file diff --git a/persistence/chain.json b/persistence/chain.json index f8b3f64d1f..4520352067 100644 --- a/persistence/chain.json +++ b/persistence/chain.json @@ -39,25 +39,25 @@ }, "codebase": { "git_repo": "https://github.com/persistenceOne/persistenceCore", - "recommended_version": "v10.4.0", + "recommended_version": "v11.9.0", "compatible_versions": [ - "v10.4.0" + "v11.9.0" ], - "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.3-lsm5", - "ibc_go_version": "persistenceOne/ibc-go/v7 v7.2.0-lsm3", + "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", + "ibc_go_version": "v7.4.0", "ics_enabled": [ "ics20-1", "ics27-1" ], "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.4" }, - "cosmwasm_version": "persistenceOne/wasmd v0.40.2-lsm3", + "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.persistenceCore/wasm", "binaries": { - "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v10.4.0/persistenceCore-v10.4.0-linux-amd64.tar.gz" + "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.9.0/persistenceCore-v11.9.0-linux-amd64.tar.gz" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/persistenceOne/genesisTransactions/master/core-1/final_genesis.json" @@ -197,6 +197,87 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v10.4.0/persistenceCore-v10.4.0-linux-amd64.tar.gz" }, + "next_version_name": "v10.4.1" + }, + { + "name": "v10.4.1", + "tag": "v10.5.0", + "proposal": 76, + "height": 15386200, + "recommended_version": "v10.5.0", + "compatible_versions": [ + "v10.5.0" + ], + "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.3-lsm5", + "ibc_go_version": "persistenceOne/ibc-go/v7 v7.2.0-lsm3", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ], + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmwasm_version": "persistenceOne/wasmd v0.40.2-lsm3", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.persistenceCore/wasm", + "binaries": { + "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v10.5.0/persistenceCore-v10.5.0-linux-amd64.tar.gz" + }, + "next_version_name": "v11" + }, + { + "name": "v11", + "tag": "v11.8.1", + "proposal": 84, + "height": 15860600, + "recommended_version": "v11.8.1", + "compatible_versions": [ + "v11.8.1" + ], + "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.3-lsm5", + "ibc_go_version": "persistenceOne/ibc-go/v7 v7.2.0-lsm3", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ], + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmwasm_version": "persistenceOne/wasmd v0.40.2-lsm3", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.persistenceCore/wasm", + "binaries": { + "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.8.1/persistenceCore-v11.8.1-linux-amd64.tar.gz" + }, + "next_version_name": "v11.9.0" + }, + { + "name": "v11.9.0", + "tag": "v11.9.0", + "proposal": 90, + "height": 16250000, + "recommended_version": "v11.9.0", + "compatible_versions": [ + "v11.9.0" + ], + "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", + "ibc_go_version": "v7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ], + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.persistenceCore/wasm", + "binaries": { + "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.9.0/persistenceCore-v11.9.0-linux-amd64.tar.gz" + }, "next_version_name": "" } ] @@ -227,6 +308,11 @@ "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚡️ Nodes & Staking" }, + { + "id": "ab7fc0b9b3c523dacec0500c9f9f1f7f4699d551", + "address": "persis-m.seed.stavr.tech:4056", + "provider": "🔥STAVR🔥" + }, { "id": "ce9dc9467af943bf35f17f04cfcdf3895914d867", "address": "seed-persistence-01.stakeflow.io:33656", @@ -263,6 +349,11 @@ "id": "ce9dc9467af943bf35f17f04cfcdf3895914d867", "address": "peer-persistence-01.stakeflow.io:33656", "provider": "Stakeflow" + }, + { + "id": "aba2148170161c274d2d786bffbe6a692c535dfe", + "address": "65.108.195.213:53656", + "provider": "StakeTown" } ] }, @@ -276,6 +367,10 @@ "address": "https://rpc-persistent-ia.cosmosia.notional.ventures/", "provider": "Notional" }, + { + "address": "https://persistence.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, { "address": "https://persistence-rpc.polkachu.com", "provider": "Polkachu" @@ -325,7 +420,7 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://persistence-rpc.highstakes.ch:26657/", + "address": "https://persistence-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -339,6 +434,14 @@ { "address": "https://public.stakewolle.com/cosmos/persistence/rpc", "provider": "Stakewolle" + }, + { + "address": "https://xprt-rpc.antrixy.org/", + "provider": "Antrix Validators" + }, + { + "address": "https://persistence-rpc.stake-town.com", + "provider": "StakeTown" } ], "rest": [ @@ -350,6 +453,10 @@ "address": "https://api-persistent-ia.cosmosia.notional.ventures/", "provider": "Notional" }, + { + "address": "https://persistence.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, { "address": "https://persistence-api.polkachu.com", "provider": "Polkachu" @@ -399,7 +506,7 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://persistence-api.highstakes.ch:1317/", + "address": "https://persistence-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -413,6 +520,14 @@ { "address": "https://public.stakewolle.com/cosmos/persistence/rest", "provider": "Stakewolle" + }, + { + "address": "https://xprt-rest.antrixy.org/", + "provider": "Antrix Validators" + }, + { + "address": "https://persistence-api.stake-town.com", + "provider": "StakeTown" } ], "grpc": [ @@ -424,6 +539,10 @@ "address": "grpc-persistent-ia.cosmosia.notional.ventures:443", "provider": "Notional" }, + { + "address": "persistence.grpc.m.stavr.tech:410", + "provider": "🔥STAVR🔥" + }, { "address": "persistence-grpc.polkachu.com:15490", "provider": "Polkachu" @@ -463,6 +582,14 @@ { "address": "grpc.persistence.validatus.com", "provider": "Validatus" + }, + { + "address": "https://xprt-grpc.antrixy.org/", + "provider": "Antrix Validators" + }, + { + "address": "persistence-grpc.stake-town.com:443", + "provider": "StakeTown" } ] }, @@ -473,23 +600,28 @@ "tx_page": "https://www.mintscan.io/persistence/transactions/${txHash}", "account_page": "https://www.mintscan.io/persistence/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/persistence", + "tx_page": "https://ezstaking.app/persistence/txs/${txHash}", + "account_page": "https://ezstaking.app/persistence/account/${accountAddress}" + }, { "kind": "ping.pub", "url": "https://ping.pub/persistence", "tx_page": "https://ping.pub/persistence/tx/${txHash}" }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Persistence-Mainnet", + "tx_page": "https://explorer.stavr.tech/Persistence-Mainnet/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", @@ -502,4 +634,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" } ] -} +} \ No newline at end of file diff --git a/persistence/images/stkhuahua.png b/persistence/images/stkhuahua.png new file mode 100644 index 0000000000..f4df368156 Binary files /dev/null and b/persistence/images/stkhuahua.png differ diff --git a/persistence/images/stkhuahua.svg b/persistence/images/stkhuahua.svg new file mode 100644 index 0000000000..a76ec79bce --- /dev/null +++ b/persistence/images/stkhuahua.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/persistence/images/stkxprt.png b/persistence/images/stkxprt.png new file mode 100644 index 0000000000..dffb6335b0 Binary files /dev/null and b/persistence/images/stkxprt.png differ diff --git a/persistence/images/stkxprt.svg b/persistence/images/stkxprt.svg new file mode 100644 index 0000000000..69e927492b --- /dev/null +++ b/persistence/images/stkxprt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/picasso/images/pica.svg b/picasso/images/pica.svg new file mode 100644 index 0000000000..fc740a710b --- /dev/null +++ b/picasso/images/pica.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/planq/assetlist.json b/planq/assetlist.json index 0ef3db65a9..d91646abfe 100644 --- a/planq/assetlist.json +++ b/planq/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "The native EVM, governance and staking token of the Planq Network", + "extended_description": "Planq is the very first cryptocurrency project to keep mobile platform usability at heart, taking a step away from dependency on desktop services. By focusing on easy accessibility and close integration of other blockchains via easy to use bridges, Planq will push Web 3 adoption in the mobile space to the next level.", "denom_units": [ { "denom": "aplanq", @@ -28,7 +29,11 @@ "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" } - ] + ], + "socials": { + "website": "https://planq.network", + "twitter": "https://twitter.com/planqfoundation" + } }, { "description": "The token of Source Protocol bridged from BSC.", @@ -74,4 +79,4 @@ } } ] -} +} \ No newline at end of file diff --git a/planq/chain.json b/planq/chain.json index cab06f7fa5..33f3514289 100644 --- a/planq/chain.json +++ b/planq/chain.json @@ -119,6 +119,11 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "id": "66b66bd2d97649da2062deb102d4ff195e2f2d39", + "address": "mainnet-seed.konsortech.xyz:10165", + "provider": "KonsorTech" } ], "persistent_peers": [ @@ -166,6 +171,11 @@ "id": "e755cbe005d920e5bca555f14251abae464b6a54", "address": "p2p.planq.safeblock.space:26656", "provider": "Safe Block" + }, + { + "id": "a3b8955aa523285d0aed51c7bfaf19eb20264ef5", + "address": "mainnet-planq.konsortech.xyz:10656", + "provider": "KonsorTech" } ] }, @@ -214,6 +224,18 @@ { "address": "https://planq-rpc.stake-town.com", "provider": "StakeTown" + }, + { + "address": "https://mainnet-planq-rpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://planq_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://rpc-planq.blockval.io", + "provider": "Blockval" } ], "rest": [ @@ -256,6 +278,18 @@ { "address": "https://planq-api.stake-town.com", "provider": "StakeTown" + }, + { + "address": "https://mainnet-planq-api.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://planq_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://api-planq.blockval.io", + "provider": "Blockval" } ], "grpc": [ @@ -310,6 +344,14 @@ { "address": "planq-grpc.stake-town.com:443", "provider": "StakeTown" + }, + { + "address": "mainnet-planq.konsortech.xyz:10090", + "provider": "KonsorTech" + }, + { + "address": "https://grpc-planq.blockval.io", + "provider": "Blockval" } ], "evm-http-jsonrpc": [ @@ -340,6 +382,14 @@ { "address": "https://planq-jsonrpc.stake-town.com", "provider": "StakeTown" + }, + { + "address": "https://mainnet-planq-evmrpc.konsortech.xyz", + "provider": "KonsorTech" + }, + { + "address": "https://planq_mainnet_evm.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ] }, @@ -404,6 +454,16 @@ "kind": "Safe Block", "url": "https://explorer.safeblock.space/planq", "tx_page": "https://explorer.safeblock.space/planq/tx/${txHash}" + }, + { + "kind": "KonsorTech", + "url": "https://explorer.konsortech.xyz/planq", + "tx_page": "https://explorer.konsortech.xyz/planq/tx/${txHash}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/planq", + "tx_page": "https://explorer.whenmoonwhenlambo.money/tx/${txHash}" } ], "images": [ @@ -412,4 +472,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg" } ] -} +} \ No newline at end of file diff --git a/point/chain.json b/point/chain.json index dab6ef83b8..9f3cbaf707 100644 --- a/point/chain.json +++ b/point/chain.json @@ -32,13 +32,6 @@ "compatible_versions": [ "v8.0.0" ], - "binaries": { - "linux/amd64": "", - "linux/arm64": "", - "darwin/amd64": "", - "darwin/arm64": "", - "windows/amd64": "" - }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/pointnetwork/point-chain-config/main/mainnet-1/genesis.json" }, @@ -48,14 +41,7 @@ "recommended_version": "v8.0.0", "compatible_versions": [ "v8.0.0" - ], - "binaries": { - "linux/amd64": "", - "linux/arm64": "", - "darwin/amd64": "", - "darwin/arm64": "", - "windows/amd64": "" - } + ] } ] }, @@ -194,4 +180,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg" } ] -} +} \ No newline at end of file diff --git a/provenance/chain.json b/provenance/chain.json index 931d6324b7..f73b8a5d94 100644 --- a/provenance/chain.json +++ b/provenance/chain.json @@ -349,7 +349,7 @@ "provider": "Inter Blockchain Services" }, { - "address": "https://provenance-rpc.highstakes.ch:26657/", + "address": "https://provenance-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -359,6 +359,10 @@ { "address": "https://provenance-rpc.panthea.eu", "provider": "Panthea EU" + }, + { + "address": "https://provenance_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ @@ -374,6 +378,10 @@ "address": "https://api.provenance.io", "provider": "Figure" }, + { + "address": "https://provenance.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, { "address": "https://api-provenance-ia.cosmosia.notional.ventures/", "provider": "Notional" @@ -383,7 +391,7 @@ "provider": "Inter Blockchain Services" }, { - "address": "https://provenance-api.highstakes.ch:1317/", + "address": "https://provenance-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -393,6 +401,10 @@ { "address": "https://provenance-api.panthea.eu", "provider": "Panthea EU" + }, + { + "address": "https://provenance_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -440,6 +452,18 @@ "tx_page": "https://www.mintscan.io/provenance/transactions/${txHash}", "account_page": "https://www.mintscan.io/provenance/accounts/${accountAddress}" }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Provenance", + "tx_page": "https://explorer.stavr.tech/Provenance/txs/${txHash}", + "account_page": "https://explorer.stavr.tech/Provenance/account/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/provenance", + "tx_page": "https://ezstaking.app/provenance/txs/${txHash}", + "account_page": "https://ezstaking.app/provenance/account/${accountAddress}" + }, { "kind": "atomscan", "url": "https://atomscan.com/provenance", @@ -447,10 +471,10 @@ "account_page": "https://atomscan.com/provenance/accounts/${accountAddress}" }, { - "kind": "bigdipper", - "url": "https://bigdipper.live/provenance", - "tx_page": "https://bigdipper.live/provenance/transactions/${txHash}", - "account_page": "https://bigdipper.live/provenance/accounts/${accountAddress}" + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/provenance", + "tx_page": "https://explorer.whenmoonwhenlambo.money/provenance/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/provenance/account/${accountAddress}" } ], "images": [ diff --git a/pundix/assetlist.json b/pundix/assetlist.json index 2ad009a8e6..e997967c6d 100644 --- a/pundix/assetlist.json +++ b/pundix/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "pundix", "assets": [ { - "description": "Pundi X Token", + "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS. PUNDIX has several core use cases, including:\n- Payment for goods and services from merchants through XPOS\n- Gas Fee on PundiX Chain\n- Listing tokens in the XPOS\n- Merchant payments for loyalty programs and ads", "denom_units": [ { "denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", @@ -14,6 +14,7 @@ "exponent": 18 } ], + "type_asset": "ics20", "base": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", "name": "Pundi X Token", "display": "PUNDIX", @@ -45,10 +46,15 @@ "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" } - ] + ], + "coingecko_id": "pundi-x-2", + "socials": { + "website": "https://pundix.com", + "twitter": "https://twitter.com/PundiXLabs" + } }, { - "description": "PURSE Token", + "description": "Purse is the decentralised loyalty program for physical stores and merchants. PURSE token shall serve as governance token of the PURSE Merchant loyalty point platform, the gas fee as well as the transaction fee on PURSE Merchant platform. To launch any merchant loyalty tokens and do transaction on the merchant platform, users and merchants need Purse tokens.", "denom_units": [ { "denom": "bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", @@ -59,6 +65,7 @@ "exponent": 18 } ], + "type_asset": "sdk.coin", "base": "bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", "name": "PURSE Token", "display": "PURSE", @@ -84,10 +91,15 @@ "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png" } - ] + ], + "coingecko_id": "pundi-x-purse", + "socials": { + "website": "https://purse.land", + "twitter": "https://twitter.com/Purse_Land" + } } ] -} +} \ No newline at end of file diff --git a/pundix/chain.json b/pundix/chain.json index 174bf82c4b..d803808891 100644 --- a/pundix/chain.json +++ b/pundix/chain.json @@ -90,6 +90,7 @@ } ] }, + "description": "Pundi X Chain is a dedicated payment-focused blockchain in the Function X network. It is specially designed to perform high throughput transactions with low latency and low transaction fees. In addition, it provides room for future compliance requirement upgrades, hardware (XPOS) integration, and Point-of-Sales compatibility, with tokenonomics that offer incentives to merchants and payment processors.", "peers": { "seeds": [ { @@ -133,6 +134,11 @@ "id": "47f97d7baf028ddfd3b223baab0fa062eae75310", "address": "pundix-mainnet-node-5.pundix.com:26656", "provider": "Pundi X" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "pundix.rpc.nodeshub.online:26156", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -141,18 +147,30 @@ { "address": "https://px-json.pundix.com", "provider": "Pundi X" + }, + { + "address": "https://pundix.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "rest": [ { "address": "https://px-rest.pundix.com", "provider": "Pundi X" + }, + { + "address": "https://pundix.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ { "address": "https://px-grpc.pundix.com", "provider": "Pundi X" + }, + { + "address": "https://pundix.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, @@ -160,10 +178,14 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.svg" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png" } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png" + "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" }, "explorers": [ { @@ -171,6 +193,12 @@ "url": "https://starscan.io", "tx_page": "https://starscan.io/pundix/tx/${txHash}", "account_page": "https://starscan.io/pundix/address/${accountAddress}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/pundix/", + "tx_page": "https://explorer.nodeshub.online/pundix/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/pundix/accounts/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/pylons/assetlist.json b/pylons/assetlist.json index 32fd960cdc..cf304c3568 100644 --- a/pylons/assetlist.json +++ b/pylons/assetlist.json @@ -27,9 +27,9 @@ } ], "socials": { - "webiste": "https://pylons.tech", + "website": "https://pylons.tech", "twitter": "https://twitter.com/pylonstech" } } ] -} +} \ No newline at end of file diff --git a/pylons/chain.json b/pylons/chain.json index 2a807e2b4b..23885eb3a9 100644 --- a/pylons/chain.json +++ b/pylons/chain.json @@ -74,12 +74,20 @@ { "address": "https://rpc.nodejumper.io:443/pylons", "provider": "Nodejumper.io" + }, + { + "address": "https:/pylons-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ { "address": "https://rest.nodejumper.io/pylons", "provider": "Nodejumper.io" + }, + { + "address": "https://pylons-api.noders.services", + "provider": "[NODERS]TEAM" } ] }, @@ -95,4 +103,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png" } ] -} +} \ No newline at end of file diff --git a/quasar/assetlist.json b/quasar/assetlist.json index d70588a0b9..4b1643856f 100644 --- a/quasar/assetlist.json +++ b/quasar/assetlist.json @@ -31,7 +31,7 @@ } ], "socials": { - "webiste": "https://www.quasar.fi/", + "website": "https://www.quasar.fi/", "twitter": "https://twitter.com/QuasarFi" } }, @@ -176,13 +176,13 @@ "chain_name": "osmosis", "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg" } } ] diff --git a/quasar/chain.json b/quasar/chain.json index 2752521b2d..c5123589bc 100644 --- a/quasar/chain.json +++ b/quasar/chain.json @@ -24,10 +24,10 @@ "fee_tokens": [ { "denom": "uqsr", - "fixed_min_gas_price": 0.01, - "low_gas_price": 0.01, - "average_gas_price": 0.025, - "high_gas_price": 0.03 + "fixed_min_gas_price": 0.1, + "low_gas_price": 0.1, + "average_gas_price": 0.25, + "high_gas_price": 0.3 }, { "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", @@ -212,11 +212,11 @@ { "address": "https://quasar-rpc.stakeandrelax.net", "provider": "Stake&Relax 🦥" - }, + }, { "address": "https://quasar-rpc.genznodes.dev", "provider": "genznodes" - } + } ], "rest": [ { @@ -270,7 +270,7 @@ { "address": "https://quasar-api.genznodes.dev", "provider": "genznodes" - } + } ], "grpc": [ { @@ -319,10 +319,10 @@ "account_page": "https://www.mintscan.io/quasar/accounts/${accountAddress}" }, { - "kind": "bigdipper", - "url": "https://bigdipper.live/quasar", - "tx_page": "https://bigdipper.live/quasar/transactions/${txHash}", - "account_page": "https://bigdipper.live/quasar/accounts/${accountAddress}" + "kind": "ezstaking", + "url": "https://ezstaking.app/quasar", + "tx_page": "https://ezstaking.app/quasar/txs/${txHash}", + "account_page": "https://ezstaking.app/quasar/account/${accountAddress}" } ], "keywords": [ @@ -333,4 +333,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" } ] -} +} \ No newline at end of file diff --git a/quicksilver/assetlist.json b/quicksilver/assetlist.json index 6c36b602c3..8d5cc83b88 100644 --- a/quicksilver/assetlist.json +++ b/quicksilver/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://quicksilver.zone/", + "website": "https://quicksilver.zone/", "twitter": "https://twitter.com/quicksilverzone" } }, diff --git a/quicksilver/chain.json b/quicksilver/chain.json index 3fb7986b6f..e98aee237e 100644 --- a/quicksilver/chain.json +++ b/quicksilver/chain.json @@ -30,21 +30,22 @@ }, "codebase": { "git_repo": "https://github.com/ingenuity-build/quicksilver", - "recommended_version": "v1.5.0", + "recommended_version": "v1.5.5", "compatible_versions": [ - "v1.5.0" + "v1.5.5", + "v1.5.5-hotfix.0" ], "binaries": { - "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.5.0/quicksilverd-v1.5.0-amd64" + "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.5.5/quicksilverd-v1.5.5-amd64" }, "cosmos_sdk_version": "v0.46.16", "consensus": { "type": "cometbft", - "version": "v0.34.31" + "version": "v0.34.32" }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.3.2", + "ibc_go_version": "v5.4.0", "genesis": { "genesis_url": "https://github.com/ingenuity-build/mainnet/raw/main/genesis.json" }, @@ -232,6 +233,92 @@ "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, "ibc_go_version": "v5.3.2", + "next_version_name": "v1.5.1" + }, + { + "name": "v1.5.1", + "proposal": 32, + "height": 6452000, + "recommended_version": "v1.5.2", + "compatible_versions": [ + "v1.5.1", + "v1.5.2" + ], + "binaries": { + "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.5.2/quicksilverd-v1.5.2-amd64" + }, + "cosmos_sdk_version": "v0.46.16", + "consensus": { + "type": "cometbft", + "version": "v0.34.29" + }, + "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "cosmwasm_enabled": true, + "ibc_go_version": "v5.3.2", + "next_version_name": "v1.5.3" + }, + { + "name": "v1.5.3", + "proposal": 34, + "height": 6556300, + "recommended_version": "v1.5.3", + "compatible_versions": [ + "v1.5.3" + ], + "binaries": { + "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.5.3/quicksilverd-v1.5.3-amd64" + }, + "cosmos_sdk_version": "v0.46.16", + "consensus": { + "type": "cometbft", + "version": "v0.34.32" + }, + "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "cosmwasm_enabled": true, + "ibc_go_version": "v5.3.2", + "next_version_name": "v1.5.4" + }, + { + "name": "v1.5.4", + "proposal": 35, + "height": 6673000, + "recommended_version": "v1.5.4", + "compatible_versions": [ + "v1.5.4" + ], + "binaries": { + "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.5.4/quicksilverd-v1.5.4-amd64" + }, + "cosmos_sdk_version": "v0.46.16", + "consensus": { + "type": "cometbft", + "version": "v0.34.32" + }, + "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "cosmwasm_enabled": true, + "ibc_go_version": "v5.3.2", + "next_version_name": "v1.5.5" + }, + { + "name": "v1.5.5", + "proposal": 37, + "height": 6926000, + "recommended_version": "v1.5.5", + "compatible_versions": [ + "v1.5.5", + "v1.5.5-hotfix.0" + ], + "binaries": { + "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.5.5/quicksilverd-v1.5.5-amd64" + }, + "cosmos_sdk_version": "v0.46.16", + "consensus": { + "type": "cometbft", + "version": "v0.34.32" + }, + "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "cosmwasm_enabled": true, + "ibc_go_version": "v5.4.0", "next_version_name": "" } ] @@ -437,6 +524,10 @@ { "address": "https://rpc.quicksilver.validatus.com", "provider": "Validatus" + }, + { + "address": "https://quicksilver-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -515,6 +606,10 @@ { "address": "https://api.quicksilver.validatus.com", "provider": "Validatus" + }, + { + "address": "https://quicksilver-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -597,6 +692,10 @@ { "address": "grpc.quicksilver.validatus.com", "provider": "Validatus" + }, + { + "address": "quicksilver-grpc.noders.services:16090", + "provider": "[NODERS]TEAM" } ] }, @@ -607,6 +706,12 @@ "tx_page": "https://www.mintscan.io/quicksilver/transactions/${txHash}", "account_page": "https://www.mintscan.io/quicksilver/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/quicksilver", + "tx_page": "https://ezstaking.app/quicksilver/txs/${txHash}", + "account_page": "https://ezstaking.app/quicksilver/account/${accountAddress}" + }, { "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 explorer", "url": "https://exp.utsa.tech/quicksilver", @@ -617,12 +722,6 @@ "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", @@ -645,4 +744,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg" } ] -} +} \ No newline at end of file diff --git a/qwoyn/assetlist.json b/qwoyn/assetlist.json index 6aa42b0743..db2a61803b 100644 --- a/qwoyn/assetlist.json +++ b/qwoyn/assetlist.json @@ -3,7 +3,8 @@ "chain_name": "qwoyn", "assets": [ { - "description": "QWOYN is the native governance token for Qwoyn Network", + "description": "The native governance token for Qwoyn Network", + "extended_description": "The Qwoyn Network stands as a cutting-edge gaming hub that embeds Web3 technologies into the core of interactive entertainment. It revolutionizes the gaming industry by ensuring true ownership of in-game assets for players, facilitated through blockchain. This approach not only enhances gameplay but also fosters a unique ecosystem of interoperability and innovation. As a beacon in the gaming world, Qwoyn Network is dedicated to merging the excitement of traditional gaming with the transformative potential of Web3, creating a seamless and enriched gaming experience.", "denom_units": [ { "denom": "uqwoyn", @@ -15,7 +16,7 @@ } ], "base": "uqwoyn", - "name": "Qwoyn Blockchain", + "name": "Qwoyn Network", "display": "qwoyn", "symbol": "QWOYN", "logo_URIs": { @@ -25,7 +26,15 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" } - ] + ], + "coingecko_id": "qwoyn", + "keywords": [ + "gaming" + ], + "socials": { + "website": "https://qwoyn.studio", + "twitter": "https://twitter.com/Qwoyn_Studios" + } } ] } \ No newline at end of file diff --git a/qwoyn/chain.json b/qwoyn/chain.json index 802761e11e..c919329fd7 100644 --- a/qwoyn/chain.json +++ b/qwoyn/chain.json @@ -319,4 +319,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" } ] -} +} \ No newline at end of file diff --git a/realio/chain.json b/realio/chain.json index a2c35b2e10..9924419158 100644 --- a/realio/chain.json +++ b/realio/chain.json @@ -36,24 +36,23 @@ }, "codebase": { "git_repo": "https://github.com/realiotech/realio-network", - "recommended_version": "v0.8.3", + "recommended_version": "v0.9.2", "compatible_versions": [ - "v0.8.2", - "v0.8.3" + "v0.9.2" ], "binaries": { - "linux/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Windows_x86_64.zip" + "linux/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Windows_x86_64.zip" }, - "cosmos_sdk_version": "0.46", + "cosmos_sdk_version": "v0.46.12", "consensus": { "type": "cometbft", - "version": "0.34.27" + "version": "v0.34.27" }, - "ibc_go_version": "6.1.1", + "ibc_go_version": "v6.1.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/realiotech/mainnet/main/realionetwork_3301-1/genesis.json" }, @@ -105,7 +104,31 @@ "darwin/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_x86_64.tar.gz", "darwin/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Windows_x86_64.zip" - } + }, + "next_version_name": "multistaking" + }, + { + "name": "multistaking", + "proposal": 7, + "height": 5989000, + "recommended_version": "v0.9.2", + "compatible_versions": [ + "v0.9.2" + ], + "cosmos_sdk_version": "v0.46.12", + "consensus": { + "type": "cometbft", + "version": "v0.34.27" + }, + "ibc_go_version": "v6.1.1", + "binaries": { + "linux/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Windows_x86_64.zip" + }, + "next_version_name": "" } ] }, @@ -160,6 +183,11 @@ "id": "2b66ae5a5c13e0efd9875c0faf4015e3dcb10c26", "address": "p2p.realio.safeblock.space:26656", "provider": "Safe Block" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "realio.declab.pro:26624", + "provider": "Decloud Nodes Lab" } ] }, @@ -196,6 +224,18 @@ { "address": "https://rpc.realio.safeblock.space", "provider": "Safe Block" + }, + { + "address": "https://realio.declab.pro:26622", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://realio-rpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc-realio.blockval.io", + "provider": "Blockval" } ], "rest": [ @@ -230,6 +270,18 @@ { "address": "https://api.realio.safeblock.space", "provider": "Safe Block" + }, + { + "address": "https://realio.declab.pro:443", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://realio-api.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://api-realio.blockval.io", + "provider": "Blockval" } ], "grpc": [ @@ -264,6 +316,18 @@ { "address": "realio.grpc.skynodejs.net", "provider": "skynodejs" + }, + { + "address": "https://realio.declab.pro:9015", + "provider": "Decloud Nodes Lab" + }, + { + "address": "realio-grpc.noders.services:22090", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://grpc-realio.blockval.io", + "provider": "Blockval" } ], "evm-http-jsonrpc": [ @@ -282,6 +346,10 @@ { "address": "https://evm.realio.safeblock.space", "provider": "Safe Block" + }, + { + "address": "https://realio-jsonrpc.noders.services", + "provider": "[NODERS]TEAM" } ] }, @@ -315,6 +383,12 @@ "url": "https://explorer.safeblock.space/realio", "tx_page": "https://explorer.safeblock.space/realio/tx/${txHash}", "account_page": "https://explorer.safeblock.space/realio/account/${accountAddress}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/realio", + "tx_page": "https://explorer.declab.pro/realio/tx/${txHash}", + "account_page": "https://explorer.declab.pro/realio/account/{$accountAddress}" } ], "images": [ diff --git a/rebus/chain.json b/rebus/chain.json index 75be6398be..f45aa6490a 100644 --- a/rebus/chain.json +++ b/rebus/chain.json @@ -171,6 +171,10 @@ { "address": "https://rebus-rpc.publicnode.com:443", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rebus-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -213,6 +217,10 @@ { "address": "https://rebus-rest.publicnode.com", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https:/rebus-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -251,6 +259,10 @@ { "address": "rebus-grpc.publicnode.com:443", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "rebus-grpc.noders.services:18090", + "provider": "[NODERS]TEAM" } ] }, diff --git a/regen/assetlist.json b/regen/assetlist.json index 37b22f1503..1d7239e3c5 100644 --- a/regen/assetlist.json +++ b/regen/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.regen.network/", + "website": "https://www.regen.network/", "twitter": "https://twitter.com/regen_network" } }, diff --git a/regen/chain.json b/regen/chain.json index 7a10171396..2ab5e9f175 100644 --- a/regen/chain.json +++ b/regen/chain.json @@ -235,6 +235,12 @@ "tx_page": "https://www.mintscan.io/regen/transactions/${txHash}", "account_page": "https://www.mintscan.io/regen/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/regen", + "tx_page": "https://ezstaking.app/regen/txs/${txHash}", + "account_page": "https://ezstaking.app/regen/account/${accountAddress}" + }, { "kind": "🔥STAVR🔥", "url": "https://explorer.stavr.tech/Regen-Mainnet", @@ -245,12 +251,6 @@ "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", @@ -268,4 +268,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg" } ] -} +} \ No newline at end of file diff --git a/rizon/assetlist.json b/rizon/assetlist.json index 950644e2d5..c323bc2e18 100644 --- a/rizon/assetlist.json +++ b/rizon/assetlist.json @@ -28,7 +28,11 @@ "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" } - ] + ], + "socials": { + "website": "https://rizon.world/", + "twitter": "https://twitter.com/hdac_rizon" + } } ] } \ No newline at end of file diff --git a/rizon/chain.json b/rizon/chain.json index c4bf84688e..37b692a918 100644 --- a/rizon/chain.json +++ b/rizon/chain.json @@ -126,6 +126,10 @@ { "address": "https://rizon-rest.publicnode.com", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rizon.api.m.stavr.tech", + "provider": "🔥STAVR🔥" } ], "grpc": [ @@ -141,10 +145,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/rizon", + "tx_page": "https://ezstaking.app/rizon/txs/${txHash}", + "account_page": "https://ezstaking.app/rizon/account/${accountAddress}" }, { "kind": "mintscan", @@ -168,6 +172,12 @@ "url": "https://bigdipper.live/rizon", "tx_page": "https://bigdipper.live/rizon/transactions/${txHash}", "account_page": "https://bigdipper.live/rizon/accounts/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Rizon", + "tx_page": "https://explorer.stavr.tech/Rizon/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Rizon/accounts/${accountAddress}" } ], "images": [ diff --git a/saga/assetlist.json b/saga/assetlist.json new file mode 100644 index 0000000000..3354f4171d --- /dev/null +++ b/saga/assetlist.json @@ -0,0 +1,51 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "saga", + "assets": [ + { + "description": "The native staking and governance token of Saga.", + "extended_description": "Saga is a Layer 1 protocol that allows developers to automatically spin up VM-agnostic, parallelized and interoperable dedicated chains, or “Chainlets,” that provide applications with infinite horizontal scalability. Each Chainlet is a replica of the Saga Mainnet, with the same validator set and security model.\n\nSaga’s mission is to enable the next 1000 chains in gaming and entertainment as part of the growing Saga Multiverse.", + "denom_units": [ + { + "denom": "usaga", + "exponent": 0 + }, + { + "denom": "saga", + "exponent": 6 + } + ], + "base": "usaga", + "name": "Saga", + "display": "saga", + "symbol": "SAGA", + "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" + }, + "coingecko_id": "saga-2", + "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", + "theme": { + "primary_color_hex": "#000000", + "dark_mode": false + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg", + "theme": { + "primary_color_hex": "#FFFFFF", + "dark_mode": true + } + } + ], + "socials": { + "website": "https://www.saga.xyz/", + "twitter": "https://twitter.com/Sagaxyz__" + } + } + ] +} \ No newline at end of file diff --git a/saga/chain.json b/saga/chain.json new file mode 100644 index 0000000000..c16264a640 --- /dev/null +++ b/saga/chain.json @@ -0,0 +1,201 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "saga", + "status": "live", + "network_type": "mainnet", + "website": "https://www.saga.xyz/", + "pretty_name": "Saga", + "chain_id": "ssc-1", + "bech32_prefix": "saga", + "daemon_name": "sscd", + "node_home": "$HOME/.ssc", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "staking": { + "staking_tokens": [ + { + "denom": "usaga" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "fees": { + "fee_tokens": [ + { + "denom": "usaga", + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 + } + ] + }, + "codebase": { + "git_repo": "https://github.com/sagaxyz/ssc", + "genesis": { + "name": "v0.1.5", + "genesis_url": "https://raw.githubusercontent.com/sagaxyz/mainnet/main/genesis/genesis.json" + }, + "recommended_version": "v0.1.5", + "compatible_versions": [ + "v0.1.5" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5", + "consensus": { + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.2" + }, + "cosmwasm_enabled": false, + "ibc_go_version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ], + "go_version": "1.21" + }, + "peers": { + "seeds": [ + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "saga-mainnet-seed.autostake.com:27426", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "persistent_peers": [ + { + "id": "9e22163e2bf159883557ea36d1025ca3468f0d71", + "address": "211.216.47.211:26656", + "provider": "" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "saga-mainnet-peer.autostake.com:27426", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", + "address": "seed.publicnode.com:26656", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "id": "400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc", + "address": "saga.rpc.kjnodes.com:17659", + "provider": "kjnodes" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-saga.keplr.app", + "provider": "chainapsis" + }, + { + "address": "https://saga-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://saga-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rpc.saga.nodestake.org", + "provider": "NodeStake" + }, + { + "address": "https://saga.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://rpc.saga.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://rpc.saga.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://saga-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://saga-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://rest.saga.goldenratiostaking.net", + "provider": "Golden Ratio Staking" + }, + { + "address": "https://api.saga.nodestake.org", + "provider": "NodeStake" + }, + { + "address": "https://saga.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://lcd.saga.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "grpc": [ + { + "address": "saga-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "saga-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "grpc.saga.nodestake.org:443", + "provider": "NodeStake" + }, + { + "address": "saga.grpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "grpc.saga.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ] + }, + "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" + }, + "description": "Saga is a Layer 1 protocol that allows developers to automatically spin up VM-agnostic, parallelized and interoperable dedicated chains, or “Chainlets,” that provide applications with infinite horizontal scalability. Each Chainlet is a replica of the Saga Mainnet, with the same validator set and security model.\n\nSaga’s mission is to enable the next 1000 chains in gaming and entertainment as part of the growing Saga Multiverse. ", + "explorers": [ + { + "kind": "mintscan", + "url": "https://www.mintscan.io/saga", + "tx_page": "https://www.mintscan.io/saga/transactions/${txHash}", + "account_page": "https://www.mintscan.io/saga/accounts/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/saga", + "tx_page": "https://ezstaking.app/saga/txs/${txHash}", + "account_page": "https://ezstaking.app/saga/account/${accountAddress}" + }, + { + "kind": "NodeStake", + "url": "https://explorer.nodestake.org/saga", + "tx_page": "https://explorer.nodestake.org/saga/tx/${txHash}", + "account_page": "https://explorer.nodestake.org/saga/account/${accountAddress}" + } + ], + "keywords": [], + "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" + } + ] +} \ No newline at end of file diff --git a/saga/images/saga_white.png b/saga/images/saga_white.png new file mode 100644 index 0000000000..a1c186582a Binary files /dev/null and b/saga/images/saga_white.png differ diff --git a/saga/images/saga_white.svg b/saga/images/saga_white.svg new file mode 100644 index 0000000000..3547a89e35 --- /dev/null +++ b/saga/images/saga_white.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/scorum/assetlist.json b/scorum/assetlist.json index 18749db356..86321d4100 100644 --- a/scorum/assetlist.json +++ b/scorum/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "The native token of Scorum", + "extended_description": "Scorum is a dynamic Layer-1 blockchain powered by Cosmos, designed to redefine the gaming and entertainment industries. Currently, it supports Aviatrix, a compelling crash game that not only leverages blockchain technology for secure and transparent gaming outcomes but also utilizes it for the integration of Non-Fungible Tokens (NFTs). Central to Scorum’s ecosystem is the SCR token, which supports both Aviatrix and future applications set to expand the platform’s offerings. The adoption of the Inter-Blockchain Communication protocol significantly enhances Scorum’s interoperability and scalability, paving the way for its ongoing expansion and the development of innovative, blockchain-powered entertainment solutions.", "denom_units": [ { "denom": "nscr", @@ -27,7 +28,11 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg" } - ] + ], + "socials": { + "website": "https://scorum.network", + "twitter": "https://twitter.com/scorum_en" + } }, { "description": "Scorum Power used for internal mechanics and staking", diff --git a/scorum/chain.json b/scorum/chain.json index 03f4443dca..87a3aa43fc 100644 --- a/scorum/chain.json +++ b/scorum/chain.json @@ -3,6 +3,7 @@ "chain_name": "scorum", "status": "live", "network_type": "mainnet", + "website": "https://scorum.com/", "pretty_name": "Scorum Network", "chain_id": "scorum-1", "bech32_prefix": "scorum", @@ -112,10 +113,10 @@ }, "explorers": [ { - "kind": "EZ Staking", - "url": "https://app.ezstaking.io/scorum", - "tx_page": "https://app.ezstaking.io/scorum/txs/${txHash}", - "account_page": "https://app.ezstaking.io/scorum/account/${accountAddress}" + "kind": "ezstaking", + "url": "https://ezstaking.app/scorum", + "tx_page": "https://ezstaking.app/scorum/txs/${txHash}", + "account_page": "https://ezstaking.app/scorum/account/${accountAddress}" }, { "kind": "bigdipper", diff --git a/scorum/images/gas.png b/scorum/images/gas.png index d8ca2ee767..aa418a17dc 100644 Binary files a/scorum/images/gas.png and b/scorum/images/gas.png differ diff --git a/scorum/images/gas.svg b/scorum/images/gas.svg index e4b6234389..fa22a26157 100644 --- a/scorum/images/gas.svg +++ b/scorum/images/gas.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/scorum/images/scr.png b/scorum/images/scr.png index e7f9902503..1b21776c14 100644 Binary files a/scorum/images/scr.png and b/scorum/images/scr.png differ diff --git a/scorum/images/scr.svg b/scorum/images/scr.svg index 5b99218973..1b5ddb0333 100644 --- a/scorum/images/scr.svg +++ b/scorum/images/scr.svg @@ -1,15 +1,10 @@ - - - - - - - - + + - - - + + + + diff --git a/scorum/images/sp.png b/scorum/images/sp.png index d8ca2ee767..ecbc4a40fb 100644 Binary files a/scorum/images/sp.png and b/scorum/images/sp.png differ diff --git a/scorum/images/sp.svg b/scorum/images/sp.svg index e4b6234389..fc653ea039 100644 --- a/scorum/images/sp.svg +++ b/scorum/images/sp.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/secretnetwork/assetlist.json b/secretnetwork/assetlist.json index a79bd82fff..b66b210122 100644 --- a/secretnetwork/assetlist.json +++ b/secretnetwork/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://scrt.network/", + "website": "https://scrt.network/", "twitter": "https://twitter.com/SecretNetwork" } }, @@ -203,7 +203,6 @@ "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", @@ -237,7 +236,11 @@ "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" } - ] + ], + "socials": { + "website": "http://alter.network/", + "twitter": "https://twitter.com/AlterDapp" + } }, { "description": "The native token cw20 for Amber on Secret Network", @@ -266,7 +269,11 @@ "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" } - ] + ], + "socials": { + "website": "http://amber.money/", + "twitter": "https://twitter.com/AmberDAO_" + } }, { "description": "The native token cw20 for Shill on Secret Network", @@ -298,4 +305,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/secretnetwork/chain.json b/secretnetwork/chain.json index 5df5370b84..13f9eb8faf 100644 --- a/secretnetwork/chain.json +++ b/secretnetwork/chain.json @@ -234,7 +234,7 @@ "provider": "1RPC - Automata Network" }, { - "address": "https://secretnetwork-rpc.highstakes.ch:26657/", + "address": "https://secretnetwork-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -264,7 +264,7 @@ "provider": "1RPC - Automata Network" }, { - "address": "https://secretnetwork-api.highstakes.ch:1317/", + "address": "https://secretnetwork-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -293,10 +293,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/secretnetwork", + "tx_page": "https://ezstaking.app/secretnetwork/txs/${txHash}", + "account_page": "https://ezstaking.app/secretnetwork/account/${accountAddress}" }, { "kind": "ping.pub", @@ -322,4 +322,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" } ] -} +} \ No newline at end of file diff --git a/seda/assetlist.json b/seda/assetlist.json new file mode 100644 index 0000000000..52e87e109c --- /dev/null +++ b/seda/assetlist.json @@ -0,0 +1,39 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "seda", + "assets": [ + { + "description": "The native token of SEDA Chain.", + "extended_description": "SEDA is a standard for modular data transport and querying. Any data type, for all networks.", + "denom_units": [ + { + "denom": "aseda", + "exponent": 0 + }, + { + "denom": "seda", + "exponent": 18 + } + ], + "base": "aseda", + "name": "Seda", + "display": "seda", + "symbol": "SEDA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg" + }, + "coingecko_id": "seda-2", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg" + } + ], + "socials": { + "website": "https://www.seda.xyz/", + "twitter": "https://twitter.com/sedaprotocol" + } + } + ] +} \ No newline at end of file diff --git a/seda/chain.json b/seda/chain.json new file mode 100644 index 0000000000..d03dc57ffd --- /dev/null +++ b/seda/chain.json @@ -0,0 +1,198 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "seda", + "status": "live", + "network_type": "mainnet", + "website": "https://www.seda.xyz/", + "pretty_name": "SEDA", + "chain_id": "seda-1", + "bech32_prefix": "seda", + "daemon_name": "sedad", + "node_home": "$HOME/.sedad", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "aseda", + "fixed_min_gas_price": 10000000000, + "low_gas_price": 10000000000, + "average_gas_price": 10000000000, + "high_gas_price": 14000000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "aseda" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/sedaprotocol/seda-chain", + "recommended_version": "v0.1.1", + "compatible_versions": [ + "v0.1.1" + ], + "binaries": { + "linux/amd64": "https://github.com/sedaprotocol/seda-chain/releases/download/v0.1.1/sedad-amd64", + "linux/arm64": "https://github.com/sedaprotocol/seda-chain/releases/download/v0.1.1/sedad-arm64" + }, + "cosmos_sdk_version": "v0.50.5", + "consensus": { + "type": "cometbft", + "version": "v0.38.6" + }, + "ibc_go_version": "v8.2.0", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/mainnet/genesis.json" + } + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg" + }, + "description": "SEDA is a standard for modular data transport and querying. Any data type, for all networks.", + "peers": { + "seeds": [ + { + "id": "31f54fbcf445a9d9286426be59a17a811dd63f84", + "address": "18.133.231.208:26656" + }, + { + "id": "ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0", + "address": "seeds.polkachu.com:25856", + "provider": "Polkachu" + }, + { + "id": "cec848e7d4c5a7ae305b27cda133d213435c110f", + "address": "seed-seda.ibs.team:16679", + "provider": "Inter Blockchain Services" + }, + { + "id": "400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc", + "address": "seda.rpc.kjnodes.com:17359", + "provider": "kjnodes" + }, + { + "id": "20e1000e88125698264454a884812746c2eb4807", + "address": "seeds.lavenderfive.com:25856", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "id": "cec848e7d4c5a7ae305b27cda133d213435c110f", + "address": "seed-seda.ibs.team:16679", + "provider": "Inter Blockchain Services" + } + ], + "persistent_peers": [ + { + "id": "31f54fbcf445a9d9286426be59a17a811dd63f84", + "address": "18.133.231.208:26656" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.mainnet.seda.xyz/", + "provider": "SEDA" + }, + { + "address": "https://seda-rpc.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://seda.rpc.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://seda-rpc.synergynodes.com/", + "provider": "Synergy Nodes" + }, + { + "address": "https://seda-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://seda-rpc.kleomedes.network/", + "provider": "Kleomedes" + }, + { + "address": "https://seda-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" + } + ], + "rest": [ + { + "address": "https://lcd.mainnet.seda.xyz/", + "provider": "SEDA" + }, + { + "address": "https://seda-api.polkachu.com/", + "provider": "Polkachu" + }, + { + "address": "https://seda.api.kjnodes.com", + "provider": "kjnodes" + }, + { + "address": "https://seda-api.synergynodes.com/", + "provider": "Synergy Nodes" + }, + { + "address": "https://seda-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://seda-api.kleomedes.network/", + "provider": "Kleomedes" + }, + { + "address": "https://seda-api.ibs.team:443", + "provider": "Inter Blockchain Services" + } + ], + "grpc": [ + { + "address": "seda-grpc.polkachu.com:25890", + "provider": "Polkachu" + }, + { + "address": "https://seda-grpc.synergynodes.com/", + "provider": "Synergy Nodes" + }, + { + "address": "seda.grpc.kjnodes.com:443", + "provider": "kjnodes" + }, + { + "address": "https://seda-grpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + } + ] + }, + "explorers": [ + { + "kind": "sedaexplorer", + "url": "https://explorer.seda.xyz/", + "tx_page": "https://explorer.seda.xyz/txs/${txHash}", + "account_page": "https://explorer.seda.xyz/account/${accountAddress}" + }, + { + "kind": "explorers.guru", + "url": "https://seda.explorers.guru", + "tx_page": "https://seda.explorers.guru/transaction/${txHash}", + "account_page": "https://seda.explorers.guru/account/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg" + } + ] +} \ No newline at end of file diff --git a/seda/images/seda.png b/seda/images/seda.png new file mode 100644 index 0000000000..e2804fa24d Binary files /dev/null and b/seda/images/seda.png differ diff --git a/seda/images/seda.svg b/seda/images/seda.svg new file mode 100644 index 0000000000..80912367c6 --- /dev/null +++ b/seda/images/seda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sei/assetlist.json b/sei/assetlist.json index 1f8f496f95..52ca5e3027 100644 --- a/sei/assetlist.json +++ b/sei/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.sei.io/", + "website": "https://www.sei.io/", "twitter": "https://twitter.com/SeiNetwork" } }, @@ -173,11 +173,11 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png" } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png" } }, { @@ -206,10 +206,12 @@ ] }, { - "description": "The Original Meme Coin on SEI Network", + "description": "The Original Meme Coin of SEI Network", + "type_asset": "cw20", + "address": "sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed", "denom_units": [ { - "denom": "sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed", + "denom": "cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed", "exponent": 0 }, { @@ -217,7 +219,7 @@ "exponent": 6 } ], - "base": "sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed", + "base": "cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed", "name": "SEIYAN", "display": "SEIYAN", "symbol": "SEIYAN", @@ -229,6 +231,55 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png" } ] + }, + { + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "denom_units": [ + { + "denom": "ibc/1FF96B82FDE4B0E38FA0A8EC24A83E1EAC2615F338468A47473BAD3B45E066D2", + "exponent": 0, + "aliases": [ + "uastro" + ] + }, + { + "denom": "astro", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/1FF96B82FDE4B0E38FA0A8EC24A83E1EAC2615F338468A47473BAD3B45E066D2", + "name": "Astroport token", + "display": "astro", + "symbol": "ASTRO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "channel_id": "channel-2016" + }, + "chain": { + "channel_id": "channel-66", + "path": "transfer/channel-177/factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + } } ] -} +} \ No newline at end of file diff --git a/sei/chain.json b/sei/chain.json index ec0bb828b5..ca33f0bd23 100644 --- a/sei/chain.json +++ b/sei/chain.json @@ -33,17 +33,17 @@ }, "codebase": { "git_repo": "https://github.com/sei-protocol/sei-chain", - "recommended_version": "v3.7.0", + "recommended_version": "v3.9.0", "compatible_versions": [ - "v3.7.0" + "v3.9.0" ], "ibc_go_version": "sei-ibc-go/v3 v3.3.0", - "cosmos_sdk_version": "sei-cosmos v0.2.74", + "cosmos_sdk_version": "sei-cosmos v0.2.83", "consensus": { "type": "sei-tendermint", - "version": "v0.2.37" + "version": "v0.2.40" }, - "cosmwasm_version": "sei-wasmd v0.0.4", + "cosmwasm_version": "sei-wasmd v0.1.1", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", "genesis": { @@ -182,6 +182,45 @@ "cosmwasm_version": "sei-wasmd v0.0.4", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", + "next_version_name": "v3.8.0" + }, + { + "name": "v3.8.0", + "proposal": 53, + "height": 64851894, + "recommended_version": "v3.8.2", + "compatible_versions": [ + "v3.8.0", + "v3.8.2" + ], + "ibc_go_version": "sei-ibc-go/v3 v3.3.0", + "cosmos_sdk_version": "sei-cosmos v0.2.77", + "consensus": { + "type": "sei-tendermint", + "version": "v0.2.39" + }, + "cosmwasm_version": "sei-wasmd v0.0.8", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.sei/wasm", + "next_version_name": "v3.9.0" + }, + { + "name": "v3.9.0", + "proposal": 54, + "height": 73290488, + "recommended_version": "v3.9.0", + "compatible_versions": [ + "v3.9.0" + ], + "ibc_go_version": "sei-ibc-go/v3 v3.3.0", + "cosmos_sdk_version": "sei-cosmos v0.2.83", + "consensus": { + "type": "sei-tendermint", + "version": "v0.2.40" + }, + "cosmwasm_version": "sei-wasmd v0.1.1", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.sei/wasm", "next_version_name": "" } ] @@ -338,6 +377,12 @@ "tx_page": "https://www.mintscan.io/sei/transactions/${txHash}", "account_page": "https://www.mintscan.io/sei/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/sei", + "tx_page": "https://ezstaking.app/sei/txs/${txHash}", + "account_page": "https://ezstaking.app/sei/account/${accountAddress}" + }, { "kind": "seiscan", "url": "https://www.seiscan.app/pacific-1", @@ -351,4 +396,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" } ] -} +} \ No newline at end of file diff --git a/sentinel/assetlist.json b/sentinel/assetlist.json index c5e054ee96..f52875d1f8 100644 --- a/sentinel/assetlist.json +++ b/sentinel/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.sentinel.co/", + "website": "https://www.sentinel.co/", "twitter": "https://twitter.com/SentinelVPN" } } diff --git a/sentinel/chain.json b/sentinel/chain.json index 7289d4c81e..380487b201 100644 --- a/sentinel/chain.json +++ b/sentinel/chain.json @@ -257,6 +257,15 @@ { "id": "f7111587af92ebe3c57c6080d68755dd74e13a3b", "address": "104.196.120.61:26656" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "sentinel.declab.pro:26630" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "sentinel.rpc.nodeshub.online:23956", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -313,6 +322,14 @@ { "address": "http://163.197.193.2:26657", "provider": "Tesla Full Node" + }, + { + "address": "https://sentinel.declab.pro:26628", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://sentinel.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "rest": [ @@ -359,6 +376,14 @@ { "address": "http://163.197.193.2:26657", "provider": "Tesla Full Node" + }, + { + "address": "https://sentinel.declab.pro:443", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://sentinel.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ @@ -381,6 +406,14 @@ { "address": "sentinel-rpc.publicnode.com:443", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://sentinel.declab.pro:9019", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://sentinel.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, @@ -391,6 +424,12 @@ "tx_page": "https://www.mintscan.io/sentinel/transactions/${txHash}", "account_page": "https://www.mintscan.io/sentinel/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/sentinel", + "tx_page": "https://ezstaking.app/sentinel/txs/${txHash}", + "account_page": "https://ezstaking.app/sentinel/account/${accountAddress}" + }, { "kind": "atomscan", "url": "https://atomscan.com/sentinel", @@ -407,6 +446,17 @@ "kind": "ValidatorNode", "url": "https://explorer.validatornode.com/sentinel", "tx_page": "https://explorer.validatornode.com/sentinel/tx/${txHash}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Sentinel", + "tx_page": "https://explorer.declab.pro/Sentinel/tx/${txHash}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/sentinel/", + "tx_page": "https://explorer.nodeshub.online/sentinel/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/sentinel/accounts/${accountAddress}" } ], "images": [ @@ -415,4 +465,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg" } ] -} +} \ No newline at end of file diff --git a/sge/assetlist.json b/sge/assetlist.json index 3a2d9d6ceb..1bebcb128f 100644 --- a/sge/assetlist.json +++ b/sge/assetlist.json @@ -31,4 +31,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/sge/chain.json b/sge/chain.json index f09a9a309c..94759b4b48 100644 --- a/sge/chain.json +++ b/sge/chain.json @@ -32,11 +32,11 @@ }, "codebase": { "git_repo": "https://github.com/sge-network/sge", - "recommended_version": "v1.3.1", + "recommended_version": "v1.5.3", "compatible_versions": [ - "v1.3.1" + "v1.5.3" ], - "cosmos_sdk_version": "v0.46.17-0.20231114190313-b9164dd660b6", + "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240223100624-2a2661276cb4", "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", @@ -122,6 +122,38 @@ "type": "cometbft", "version": "v0.34.29" }, + "next_version_name": "V1.5.2" + }, + { + "name": "v1.5.2", + "recommended_version": "v1.5.2", + "compatible_versions": [ + "v1.5.2" + ], + "proposal": 6, + "height": 2867354, + "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240223100624-2a2661276cb4", + "ibc_go_version": "v5.3.1", + "consensus": { + "type": "cometbft", + "version": "v0.34.29" + }, + "next_version_name": "v1.5.3" + }, + { + "name": "v1.5.3", + "recommended_version": "v1.5.3", + "compatible_versions": [ + "v1.5.3" + ], + "proposal": 7, + "height": 2973740, + "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240223100624-2a2661276cb4", + "ibc_go_version": "v5.3.1", + "consensus": { + "type": "cometbft", + "version": "v0.34.29" + }, "next_version_name": "" } ] @@ -279,6 +311,10 @@ { "address": "https://sge-rpc.genznodes.dev", "provider": "genznodes" + }, + { + "address": "https://sge_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ @@ -333,6 +369,10 @@ { "address": "https://api.sge.roomit.xyz/", "provider": "RoomIT" + }, + { + "address": "https://sge_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -423,6 +463,12 @@ "url": "https://explorer.tendermint.roomit.xyz/sge-mainnet", "tx_page": "https://explorer.tendermint.roomit.xyz/sge-mainnet/tx/${txHash}", "account_page": "https://explorer.tendermint.roomit.xyz/sge-mainnet/account/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/sge", + "tx_page": "https://explorer.whenmoonwhenlambo.money/sge/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/sge/account/${accountAddress}" } ], "images": [ @@ -431,4 +477,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" } ] -} +} \ No newline at end of file diff --git a/shentu/chain.json b/shentu/chain.json index d538ddbd3d..e08e185988 100644 --- a/shentu/chain.json +++ b/shentu/chain.json @@ -209,7 +209,7 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://shentu-rpc.highstakes.ch:26657/", + "address": "https://shentu-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -251,7 +251,7 @@ "provider": "Allnodes ⚡️ Nodes & Staking" }, { - "address": "https://shentu-api.highstakes.ch:1317/", + "address": "https://shentu-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -296,10 +296,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/shentu", + "tx_page": "https://ezstaking.app/shentu/txs/${txHash}", + "account_page": "https://ezstaking.app/shentu/account/${accountAddress}" }, { "kind": "🔥STAVR🔥", @@ -347,4 +347,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg" } ] -} +} \ No newline at end of file diff --git a/shido/assetlist.json b/shido/assetlist.json new file mode 100644 index 0000000000..750f8765e9 --- /dev/null +++ b/shido/assetlist.json @@ -0,0 +1,38 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "shido", + "assets": [ + { + "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", + "denom_units": [ + { + "denom": "shido", + "exponent": 0 + }, + { + "denom": "SHIDO", + "exponent": 18 + } + ], + "base": "shido", + "name": "Shido", + "display": "SHIDO", + "symbol": "SHIDO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" + }, + "coingecko_id": "shido-2", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" + } + ], + "socials": { + "website": "https://shido.io/", + "twitter": "https://twitter.com/ShidoGlobal" + } + } + ] +} \ No newline at end of file diff --git a/shido/chain.json b/shido/chain.json new file mode 100644 index 0000000000..460a7319af --- /dev/null +++ b/shido/chain.json @@ -0,0 +1,194 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "shido", + "status": "live", + "network_type": "mainnet", + "website": "https://shido.io/", + "pretty_name": "Shido", + "chain_id": "shido_9008-1", + "bech32_prefix": "shido", + "node_home": "$HOME/.shidod", + "daemon_name": "shidod", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "shido", + "fixed_min_gas_price": 250000000, + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "shido" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/ShidoGlobal/shidochain", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "cosmos_sdk_version": "v0.47.4", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.0", + "binaries": { + "linux/amd64": "https://github.com/ShidoGlobal/mainnetShidoNodeSync/releases/download/v1.0.0/ubuntu_22.04.tar.gz" + }, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/ShidoGlobal/mainnetShidoNodeSync/main/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "tag": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "cosmos_sdk_version": "v0.47.4", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "ibc_go_version": "v7.3.0", + "binaries": { + "linux/amd64": "https://github.com/ShidoGlobal/mainnetShidoNodeSync/releases/download/v1.0.0/ubuntu_22.04.tar.gz" + } + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" + }, + "description": "Developers use Shido as the Ethereum and Wasm Chain to deploy applications of the future. Get all the functionalities of Ethereum and Wasm with the power of IBC and Interchain composability.", + "peers": { + "seeds": [ + { + "id": "181fcc5672fee87751eb369491744e85ba0651f5", + "address": "18.153.233.126:26656", + "provider": "SHIDO" + }, + { + "id": "8d46e292347951d651486611abac77825a0c83f8", + "address": "18.199.25.117:26656", + "provider": "SHIDO" + }, + { + "id": "cdf19a7234ee8ec12519f6ad066408f09e1b73e0", + "address": "15.157.50.94:26656", + "provider": "SHIDO" + }, + { + "id": "8793ad6de6efdb6919d31e74e61a1be57a6d6d32", + "address": "3.97.121.236:26656", + "provider": "SHIDO" + } + ], + "persistent_peers": [ + { + "id": "181fcc5672fee87751eb369491744e85ba0651f5", + "address": "18.153.233.126:26656", + "provider": "SHIDO" + }, + { + "id": "8d46e292347951d651486611abac77825a0c83f8", + "address": "18.199.25.117:26656", + "provider": "SHIDO" + }, + { + "id": "cdf19a7234ee8ec12519f6ad066408f09e1b73e0", + "address": "15.157.50.94:26656", + "provider": "SHIDO" + }, + { + "id": "8793ad6de6efdb6919d31e74e61a1be57a6d6d32", + "address": "3.97.121.236:26656", + "provider": "SHIDO" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://tendermint.shidoscan.com", + "provider": "Shido" + }, + { + "address": "https://shidochain_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + } + ], + "rest": [ + { + "address": "https://swagger.shidoscan.com", + "provider": "Shido" + }, + { + "address": "https://shidochain_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + } + ], + "grpc": [ + { + "address": "https://grpc.shidoscan.com", + "provider": "shido.io" + }, + { + "address": "https://grpc-web.shidoscan.com", + "provider": "shido.io" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://rpc-nodes.shidoscan.com", + "provider": "Shido" + }, + { + "address": "https://rpc-delta-nodes.shidoscan.com", + "provider": "Shido" + }, + { + "address": "https://shidochain_mainnet_evm.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + } + ] + }, + "explorers": [ + { + "kind": "shido", + "url": "https://shidoscan.com", + "tx_page": "https://shidoscan.com/tx/${txHash}", + "account_page": "https://shidoscan.com/address/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/shido", + "tx_page": "https://explorer.whenmoonwhenlambo.money/shido/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/shido/account/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" + } + ] +} \ No newline at end of file diff --git a/shido/images/shido.png b/shido/images/shido.png new file mode 100644 index 0000000000..b8b708158c Binary files /dev/null and b/shido/images/shido.png differ diff --git a/shido/images/shido.svg b/shido/images/shido.svg new file mode 100644 index 0000000000..bdbc16e0a7 --- /dev/null +++ b/shido/images/shido.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sifchain/chain.json b/sifchain/chain.json index 4fc91c0c7d..a2bef132a4 100644 --- a/sifchain/chain.json +++ b/sifchain/chain.json @@ -158,6 +158,10 @@ { "address": "https://sifchain-rest.publicnode.com", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://sifchain.api.m.stavr.tech", + "provider": "🔥STAVR🔥" } ], "grpc": [ @@ -186,6 +190,12 @@ "url": "https://atomscan.com/sifchain", "tx_page": "https://atomscan.com/sifchain/transactions/${txHash}", "account_page": "https://atomscan.com/sifchain/accounts/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Sifchain", + "tx_page": "https://explorer.stavr.tech/Sifchain/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Sifchain/accounts/${accountAddress}" } ], "images": [ @@ -194,4 +204,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg" } ] -} +} \ No newline at end of file diff --git a/sommelier/assetlist.json b/sommelier/assetlist.json index c9b5e9e1b9..750c891d31 100644 --- a/sommelier/assetlist.json +++ b/sommelier/assetlist.json @@ -40,7 +40,7 @@ } ], "socials": { - "webiste": "https://www.sommelier.finance/", + "website": "https://www.sommelier.finance/", "twitter": "https://twitter.com/sommfinance" } } diff --git a/sommelier/chain.json b/sommelier/chain.json index a4df0dc734..0ac34f5cbc 100644 --- a/sommelier/chain.json +++ b/sommelier/chain.json @@ -90,7 +90,7 @@ "recommended_version": "v7.0.1", "compatible_versions": [ "v7.0.0", - "v7.0.1" + "v7.0.1" ], "binaries": { "linux/amd64": "https://github.com/PeggyJV/sommelier/releases/download/v7.0.1/sommelier_7.0.1_linux_amd64.tar.gz", @@ -264,6 +264,12 @@ "tx_page": "https://www.mintscan.io/sommelier/transactions/${txHash}", "account_page": "https://www.mintscan.io/sommelier/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/sommelier", + "tx_page": "https://ezstaking.app/sommelier/txs/${txHash}", + "account_page": "https://ezstaking.app/sommelier/account/${accountAddress}" + }, { "kind": "🔥STAVR🔥", "url": "https://explorer.stavr.tech/Sommelier-Mainnet", @@ -289,4 +295,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg" } ] -} +} \ No newline at end of file diff --git a/source/assetlist.json b/source/assetlist.json index ae327d1ac5..f493b3c1fe 100644 --- a/source/assetlist.json +++ b/source/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "The native token of SOURCE Chain", + "extended_description": "Enterprises, developers, and individuals are empowered to use SOURCE's sustainable and value backed network to easily access, build, and integrate web3 applications and services.", "denom_units": [ { "denom": "usource", @@ -28,7 +29,11 @@ "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" } - ] + ], + "socials": { + "website": "https://www.sourceprotocol.io/", + "twitter": "https://twitter.com/sourceprotocol_" + } }, { "description": "Source Protocol's SRCX Token Bridged from BNB Through Planq", @@ -78,4 +83,4 @@ } } ] -} +} \ No newline at end of file diff --git a/source/chain.json b/source/chain.json index 842b24c80c..b01e6dc4be 100644 --- a/source/chain.json +++ b/source/chain.json @@ -82,7 +82,7 @@ "provider": "NodeStake" }, { - "id": "6f6a3a908634b79b6fe7c4988efec2553f188234", + "id": "637077d431f618181597706810a65c826524fd74", "address": "source.rpc.nodeshub.online:15856", "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" }, @@ -146,6 +146,11 @@ "id": "47b858cda8717aef908f2567b05ef312d18bb6f3", "address": "p2p-pve01.roomit.xyz:16602", "provider": "RoomIT" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "source.declab.pro:26606", + "provider": "Decloud Nodes Lab" } ] }, @@ -206,6 +211,18 @@ { "address": "https://rpc.source.posthuman.digital", "provider": "posthuman" + }, + { + "address": "https://source.declab.pro:26604", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://rpc.source.stakeup.tech", + "provider": "StakeUp" + }, + { + "address": "https://source_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ @@ -267,7 +284,19 @@ }, { "address": "http://source.api.staking-explorer.com", - "provider": "Daily $SOURCE DROP 💰" + "provider": "Daily DROP | 2% Fee" + }, + { + "address": "https://source.declab.pro:443", + "provider": "Decloud Nodes Lab" + }, + { + "address": "https://api.source.stakeup.tech", + "provider": "StakeUp" + }, + { + "address": "https://source_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -314,6 +343,10 @@ { "address": "grpc.source.roomit.xyz:8443", "provider": "RoomIT" + }, + { + "address": "https://source.declab.pro:9003", + "provider": "Decloud Nodes Lab" } ] }, @@ -368,6 +401,24 @@ "url": "https://explorer.posthuman.digital/source", "tx_page": "https://explorer.posthuman.digital/source/tx/${txHash}", "account_page": "https://explorer.posthuman.digital/source/account/${accountAddress}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Source", + "tx_page": "https://explorer.declab.pro/Source/tx/${txHash}", + "account_page": "https://explorer.declab.pro/Source/account/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/source", + "tx_page": "https://explorer.whenmoonwhenlambo.money/source/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/source/account/${accountAddress}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/source/", + "tx_page": "https://explorer.nodeshub.online/source/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/source/accounts/${accountAddress}" } ], "images": [ @@ -380,4 +431,4 @@ "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" } -} +} \ No newline at end of file diff --git a/stafihub/chain.json b/stafihub/chain.json index 975d11483a..f6b6bf1279 100644 --- a/stafihub/chain.json +++ b/stafihub/chain.json @@ -181,6 +181,12 @@ "tx_page": "https://www.mintscan.io/stafi/transactions/${txHash}", "account_page": "https://www.mintscan.io/stafi/accounts/${accountAddress}" }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/stafihub", + "tx_page": "https://ezstaking.app/stafihub/txs/${txHash}", + "account_page": "https://ezstaking.app/stafihub/account/${accountAddress}" + }, { "kind": "ping-pub", "url": "https://ping.pub/stafihub", @@ -204,4 +210,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png" } ] -} +} \ No newline at end of file diff --git a/stargaze/assetlist.json b/stargaze/assetlist.json index 788f06bdfa..2fc901c5e3 100644 --- a/stargaze/assetlist.json +++ b/stargaze/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.stargaze.zone/", + "website": "https://www.stargaze.zone/", "twitter": "https://twitter.com/StargazeZone" } }, @@ -173,6 +173,51 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg" } ] + }, + { + "description": "LAB - Everything is an Experiment", + "extended_description": "LAB - Everything is an Experiment\n\nUse 10 $LAB tokens to mint 1 Mad Scientist NFT on Backbone Labs Osmosis Launchpad. You will then be able to trade your NFTs on the marketplace. You can also choose to hold onto your $LAB tokens as unrevealed NFTs and trade it.\n\n Fair Launch: The event was marked by the absence of whitelists (WLs), no bots and no lock, ensuring an equitable opportunity for all interested parties.\n\nPreparation for the Launch: Participants were given a 52.91-hour window to deposit $OSMO into a pool on Streamswap.\n\nThe Swap Process: After the initial deposit period, $OSMO was converted into $LAB tokens over an additional hour, allowing for a smooth transition and fair distribution.", + "denom_units": [ + { + "denom": "ibc/93B1AE0AD5E88242745B245064A2A51DDA1319C18176A966D5F8F9E02ED5373E", + "exponent": 0 + }, + { + "denom": "LAB", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/93B1AE0AD5E88242745B245064A2A51DDA1319C18176A966D5F8F9E02ED5373E", + "name": "LAB", + "display": "LAB", + "symbol": "LAB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "channel_id": "channel-75" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB" + } + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", + "image_sync": { + "chain_name": "osmosis", + "base_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB" + } + } + ] } ] -} +} \ No newline at end of file diff --git a/stargaze/chain.json b/stargaze/chain.json index 323fb33a9c..068b4b3dbf 100644 --- a/stargaze/chain.json +++ b/stargaze/chain.json @@ -30,10 +30,18 @@ }, "codebase": { "git_repo": "https://github.com/public-awesome/stargaze", - "recommended_version": "v12.0.0", + "recommended_version": "v13.0.0", "compatible_versions": [ - "v12.0.0" + "v13.0.0" ], + "cosmos_sdk_version": "v0.47.10", + "ibc_go_version": "v7.3.2", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, "genesis": { "genesis_url": "https://raw.githubusercontent.com/public-awesome/mainnet/main/stargaze-1/genesis.tar.gz" }, @@ -70,6 +78,24 @@ "compatible_versions": [ "v12.0.0" ], + "next_version_name": "v13" + }, + { + "name": "v13", + "proposal": 260, + "height": 12801683, + "recommended_version": "v13.0.0", + "compatible_versions": [ + "v13.0.0" + ], + "cosmos_sdk_version": "v0.47.10", + "ibc_go_version": "v7.3.2", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, "next_version_name": "" } ] @@ -358,10 +384,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/stargaze", + "tx_page": "https://ezstaking.app/stargaze/txs/${txHash}", + "account_page": "https://ezstaking.app/stargaze/account/${accountAddress}" }, { "kind": "mintscan", @@ -393,4 +419,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } ] -} +} \ No newline at end of file diff --git a/starname/assetlist.json b/starname/assetlist.json index 5aeac89496..30d62644c3 100644 --- a/starname/assetlist.json +++ b/starname/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://app.starname.me/", + "website": "https://app.starname.me/", "twitter": "https://twitter.com/starname_me" } } diff --git a/stratos/chain.json b/stratos/chain.json index 3c013d4127..5efd0c64d4 100644 --- a/stratos/chain.json +++ b/stratos/chain.json @@ -88,6 +88,10 @@ { "address": "https://rpc-stratos.whispernode.com:443", "provider": "WhisperNode 🤐" + }, + { + "address": "https://stratos-rpc.noders.services:443", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -98,6 +102,10 @@ { "address": "https://lcd-stratos.whispernode.com:443", "provider": "WhisperNode 🤐" + }, + { + "address": "https://stratos-api.noders.services:443", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -112,6 +120,10 @@ { "address": "stratos.grpc.nodersteam.com:9090", "provider": "[NODERS]TEAM" + }, + { + "address": "stratos-grpc.noders.services:29090", + "provider": "[NODERS]TEAM" } ], "evm-http-jsonrpc": [ @@ -122,6 +134,10 @@ { "address": "https://jsonrpc.stratos.nodestake.top", "provider": "NodeStake" + }, + { + "address": "https://stratos-jsonrpc.noders.services", + "provider": "[NODERS]TEAM" } ] }, diff --git a/stride/assetlist.json b/stride/assetlist.json index 0aab0391e0..6584249ac5 100644 --- a/stride/assetlist.json +++ b/stride/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://stride.zone/", + "website": "https://stride.zone/", "twitter": "https://twitter.com/stride_zone" } }, @@ -512,6 +512,43 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg" } ] + }, + { + "description": "Stride's liquid staked SAGA", + "denom_units": [ + { + "denom": "stusaga", + "exponent": 0 + }, + { + "denom": "stSAGA", + "exponent": 6 + } + ], + "base": "stusaga", + "name": "Stride Staked SAGA", + "display": "stSAGA", + "symbol": "stSAGA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "saga", + "base_denom": "usaga" + }, + "provider": "Stride" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg" + } + ] } ] } \ No newline at end of file diff --git a/stride/chain.json b/stride/chain.json index 7044bd29c6..7ea9f5d1f0 100644 --- a/stride/chain.json +++ b/stride/chain.json @@ -105,6 +105,13 @@ "low_gas_price": 15000000000, "average_gas_price": 15000000000, "high_gas_price": 20000000000 + }, + { + "denom": "stusaga", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.015, + "high_gas_price": 0.03 } ] }, @@ -117,11 +124,11 @@ }, "codebase": { "git_repo": "https://github.com/Stride-Labs/stride", - "recommended_version": "v19.0.0", + "recommended_version": "v21.0.0", "compatible_versions": [ - "v19.0.0" + "v21.0.0" ], - "cosmos_sdk_version": "Stride-Labs/cosmos-sdk v0.47.5-stride-distribution-fix-0", + "cosmos_sdk_version": "Stride-Labs/cosmos-sdk v0.47.10-stride-distribution-fix-0", "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -310,7 +317,41 @@ "version": "v0.37.2" }, "ibc_go_version": "7.3.1", - "next_version_name": "v19" + "next_version_name": "v20" + }, + { + "name": "v20", + "tag": "v20.0.0", + "recommended_version": "v20.0.0", + "compatible_versions": [ + "v20.0.0" + ], + "proposal": 235, + "height": 8269628, + "cosmos_sdk_version": "Stride-Labs/cosmos-sdk v0.47.10-stride-distribution-fix-0", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "ibc_go_version": "7.3.1", + "next_version_name": "v21" + }, + { + "name": "v21", + "tag": "v21.0.0", + "recommended_version": "v21.0.0", + "compatible_versions": [ + "v21.0.0" + ], + "proposal": 236, + "height": 8370738, + "cosmos_sdk_version": "Stride-Labs/cosmos-sdk v0.47.10-stride-distribution-fix-0", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "ibc_go_version": "7.3.1", + "next_version_name": "" } ] }, @@ -602,10 +643,10 @@ "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": "ezstaking", + "url": "https://ezstaking.app/stride", + "tx_page": "https://ezstaking.app/stride/txs/${txHash}", + "account_page": "https://ezstaking.app/stride/account/${accountAddress}" }, { "kind": "Apollo", @@ -631,12 +672,6 @@ "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", @@ -665,4 +700,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } ] -} +} \ No newline at end of file diff --git a/stride/images/stsaga.png b/stride/images/stsaga.png new file mode 100644 index 0000000000..da47885012 Binary files /dev/null and b/stride/images/stsaga.png differ diff --git a/stride/images/stsaga.svg b/stride/images/stsaga.svg new file mode 100644 index 0000000000..2199cff637 --- /dev/null +++ b/stride/images/stsaga.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/sunrise/assetlist.json b/sunrise/assetlist.json new file mode 100644 index 0000000000..aed5cd7fb7 --- /dev/null +++ b/sunrise/assetlist.json @@ -0,0 +1,40 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "sunrise", + "assets": [ + { + "description": "The native token of the Sunrise blockchain.", + "denom_units": [ + { + "denom": "usr", + "exponent": 0, + "aliases": [ + "microsr" + ] + }, + { + "denom": "sr", + "exponent": 6 + } + ], + "base": "usr", + "name": "Sunrise", + "display": "sr", + "symbol": "SR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png" + } + ], + "socials": { + "website": "https://sunriselayer.io/", + "twitter": "https://twitter.com/SunriseLayer" + } + } + ] +} \ No newline at end of file diff --git a/sunrise/chain.json b/sunrise/chain.json new file mode 100644 index 0000000000..106997969c --- /dev/null +++ b/sunrise/chain.json @@ -0,0 +1,94 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "sunrise", + "status": "live", + "network_type": "mainnet", + "website": "https://sunriselayer.io/", + "pretty_name": "Sunrise", + "chain_id": "sunrise-1", + "bech32_prefix": "sunrise", + "daemon_name": "sunrised", + "node_home": "$HOME/.sunrise", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "usr", + "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": "usr" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "codebase": { + "git_repo": "https://github.com/sunriselayer/sunrise", + "recommended_version": "v0.0.7", + "compatible_versions": [ + "v0.0.7" + ], + "binaries": { + "linux/amd64": "https://github.com/sunriselayer/sunrise/releases/download/v0.0.7/sunrised" + }, + "cosmos_sdk_version": "0.50.2", + "consensus": { + "type": "cometbft", + "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + }, + "ibc_go_version": "8.0.0", + "versions": [ + { + "name": "v0.0.7", + "recommended_version": "v0.0.7", + "compatible_versions": [ + "v0.0.7" + ], + "binaries": { + "linux/amd64": "https://github.com/sunriselayer/sunrise/releases/download/v0.0.7/sunrised" + }, + "cosmos_sdk_version": "0.50.2", + "consensus": { + "type": "cometbft", + "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + }, + "ibc_go_version": "8.0.0", + "ics_enabled": [ + "ics20-1" + ] + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg" + }, + "peers": { + "seeds": [], + "persistent_peers": [] + }, + "apis": { + "rpc": [], + "rest": [], + "grpc": [] + }, + "explorers": [], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png" + } + ] +} \ No newline at end of file diff --git a/sunrise/images/sunrise.png b/sunrise/images/sunrise.png new file mode 100644 index 0000000000..e1c5c21926 Binary files /dev/null and b/sunrise/images/sunrise.png differ diff --git a/sunrise/images/sunrise.svg b/sunrise/images/sunrise.svg new file mode 100644 index 0000000000..12a4867e4e --- /dev/null +++ b/sunrise/images/sunrise.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/tenet/chain.json b/tenet/chain.json index d09855cc1e..7b14095355 100644 --- a/tenet/chain.json +++ b/tenet/chain.json @@ -143,6 +143,10 @@ { "address": "https://tenet-rpc.publicnode.com:443", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://tenet_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "rest": [ @@ -153,6 +157,10 @@ { "address": "https://tenet-rest.publicnode.com", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://tenet_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" } ], "grpc": [ @@ -192,6 +200,12 @@ "url": "https://explorer.tcnetwork.io/tenet", "tx_page": "https://explorer.tcnetwork.io/tenet/transaction/${txHash}", "account_page": "https://explorer.tcnetwork.io/tenet/account/${accountAddress}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/tenet", + "tx_page": "https://explorer.whenmoonwhenlambo.money/tenet/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/tenet/account/${accountAddress}" } ], "images": [ diff --git a/teritori/assetlist.json b/teritori/assetlist.json index 021817e704..849ae97644 100644 --- a/teritori/assetlist.json +++ b/teritori/assetlist.json @@ -25,10 +25,6 @@ "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" } @@ -138,7 +134,10 @@ "denom_units": [ { "denom": "ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E", - "exponent": 0 + "exponent": 0, + "aliases": [ + "ukuji" + ] }, { "denom": "kuji", @@ -146,7 +145,7 @@ } ], "type_asset": "ics20", - "base": "ukuji", + "base": "ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E", "name": "Kujira", "display": "kuji", "symbol": "KUJI", @@ -183,17 +182,17 @@ { "description": "USD Coin", "denom_units": [ - { - "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", - "exponent": 0 - }, - { - "denom": "usdc", - "exponent": 6 - } + { + "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 6 + } ], "type_asset": "ics20", - "base": "uusdc", + "base": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", "display": "usdc", "name": "USD Coin", "symbol": "USDC", @@ -239,7 +238,7 @@ } ], "type_asset": "ics20", - "base": "uscrt", + "base": "ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9", "name": "Secret Network", "display": "scrt", "symbol": "SCRT", @@ -273,4 +272,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/teritori/chain.json b/teritori/chain.json index 2c33c160d2..b682196eb1 100644 --- a/teritori/chain.json +++ b/teritori/chain.json @@ -314,10 +314,10 @@ }, "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": "ezstaking", + "url": "https://ezstaking.app/teritori", + "tx_page": "https://ezstaking.app/teritori/txs/${txHash}", + "account_page": "https://ezstaking.app/teritori/account/${accountAddress}" }, { "kind": "ping.pub", diff --git a/terpnetwork/chain.json b/terpnetwork/chain.json index 6d5fda24b7..55663f87a8 100644 --- a/terpnetwork/chain.json +++ b/terpnetwork/chain.json @@ -192,6 +192,10 @@ { "address": " https://terp.api.nodex.one:443", "provider": "nodex.one" + }, + { + "address": "https://terp.api.m.stavr.tech", + "provider": "🔥STAVR🔥" } ], "grpc": [ @@ -222,17 +226,17 @@ "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}" + }, + { + "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}" } ], "images": [ diff --git a/terra/assetlist.json b/terra/assetlist.json index 0ddf3e8970..33cd833c15 100644 --- a/terra/assetlist.json +++ b/terra/assetlist.json @@ -117,7 +117,6 @@ "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", @@ -2606,14 +2605,28 @@ "name": "Astroport Token", "display": "astro", "symbol": "ASTRO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" - }, + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "terra2", + "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" + }, + "provider": "Astroport" + } + ], "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg" } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg" + } }, { "denom_units": [ @@ -2622,7 +2635,7 @@ "exponent": 0 }, { - "denom": "xastro", + "denom": "xastro.cw20", "exponent": 6 } ], @@ -2630,14 +2643,14 @@ "address": "terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7", "base": "cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7", "name": "Staked Astroport Token", - "display": "xastro", - "symbol": "xASTRO", + "display": "xastro.cw20", + "symbol": "xASTRO.cw20", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro-cw20.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro-cw20.svg" } ] }, @@ -2779,7 +2792,7 @@ }, { "denom": "alot", - "exponent": 0 + "exponent": 6 } ], "type_asset": "cw20", @@ -4431,7 +4444,7 @@ }, { "denom": "lctfancard", - "exponent": 0 + "exponent": 6 } ], "type_asset": "cw20", @@ -4561,7 +4574,7 @@ }, { "denom": "cstfancard", - "exponent": 0 + "exponent": 6 } ], "type_asset": "cw20", @@ -5716,6 +5729,87 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/trit.png" } ] + }, + { + "description": "Rakoff Token is the Meme Token for Terra Classic", + "type_asset": "cw20", + "address": "terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", + "denom_units": [ + { + "denom": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", + "exponent": 0 + }, + { + "denom": "rakoff", + "exponent": 6 + } + ], + "base": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", + "name": "Rakoff Token", + "display": "rakoff", + "symbol": "RAKOFF", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png" + } + ] + }, + { + "description": "Tadpole Frogztrik Token meme", + "type_asset": "cw20", + "address": "terra19gzvkw5hft3ulp8n6ws3p9yradhc802axqal59lzxau6rqxktj9q0dwf9c", + "display": "tadf", + "denom_units": [ + { + "denom": "cw20:terra19gzvkw5hft3ulp8n6ws3p9yradhc802axqal59lzxau6rqxktj9q0dwf9c", + "exponent": 0 + }, + { + "denom": "tadf", + "exponent": 6 + } + ], + "base": "cw20:terra19gzvkw5hft3ulp8n6ws3p9yradhc802axqal59lzxau6rqxktj9q0dwf9c", + "name": "Tadpole Frogztrik Token", + "symbol": "TADF", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tadf.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tadf.png" + } + }, + { + "description": "Frogztrik NFT Token", + "type_asset": "cw20", + "address": "terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9", + "display": "frog", + "denom_units": [ + { + "denom": "cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9", + "exponent": 0 + }, + { + "denom": "frog", + "exponent": 6 + } + ], + "base": "cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9", + "name": "Frogztrik NFT Token", + "symbol": "FROG", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/FROG.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/FROG.png" + } } ] -} +} \ No newline at end of file diff --git a/terra/chain.json b/terra/chain.json index 336af096ed..0517702359 100644 --- a/terra/chain.json +++ b/terra/chain.json @@ -327,6 +327,12 @@ ] }, "explorers": [ + { + "kind": "ezstaking", + "url": "https://ezstaking.app/terra", + "tx_page": "https://ezstaking.app/terra/txs/${txHash}", + "account_page": "https://ezstaking.app/terra/account/${accountAddress}" + }, { "kind": "ping.pub", "url": "https://ping.pub/terra-luna", diff --git a/terra/images/FROG.png b/terra/images/FROG.png new file mode 100644 index 0000000000..3339d7b199 Binary files /dev/null and b/terra/images/FROG.png differ diff --git a/terra/images/rakoff.png b/terra/images/rakoff.png new file mode 100644 index 0000000000..0a8358f314 Binary files /dev/null and b/terra/images/rakoff.png differ diff --git a/terra/images/tadf.png b/terra/images/tadf.png new file mode 100644 index 0000000000..1398262809 Binary files /dev/null and b/terra/images/tadf.png differ diff --git a/terra2/assetlist.json b/terra2/assetlist.json index da6ed0026e..44076bf96c 100644 --- a/terra2/assetlist.json +++ b/terra2/assetlist.json @@ -30,7 +30,7 @@ } ], "socials": { - "webiste": "https://www.terra.money/", + "website": "https://www.terra.money/", "twitter": "https://twitter.com/terra_money" } }, @@ -42,47 +42,94 @@ "exponent": 0 }, { - "denom": "astro", + "denom": "astro.cw20", "exponent": 6 } ], "type_asset": "cw20", "address": "terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", "base": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "name": "Astroport", - "display": "astro", - "symbol": "ASTRO", + "name": "Astroport CW20 Token", + "display": "astro.cw20", + "symbol": "ASTRO.cw20", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg" }, - "coingecko_id": "astroport-fi", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg" } ], "socials": { - "webiste": "https://astroport.finance/", + "website": "https://astroport.fi/", "twitter": "https://twitter.com/astroport_fi" } }, { - "description": "Dinheiros is the reserve currency of dioalma.protocol, an undivisible and rare token.", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", "denom_units": [ { - "denom": "cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", - "exponent": 0 + "denom": "ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995", + "exponent": 0, + "aliases": [ + "uastro" + ] }, { - "denom": "Dinheiros", - "exponent": 0 + "denom": "astro", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995", + "name": "Astroport token", + "display": "astro", + "symbol": "ASTRO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995", + "channel_id": "channel-25" + }, + "chain": { + "channel_id": "channel-229", + "path": "transfer/channel-229/factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg" + } + }, + { + "description": "Dinheiros is the reserve currency of dioalma.protocol, an undivisible and rare token.", + "denom_units": [ + { + "denom": "cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", + "exponent": 0, + "aliases": [ + "Dinheiros" + ] } ], "type_asset": "cw20", "address": "terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", "base": "cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", "name": "dinheiro", - "display": "Dinheiros", + "display": "cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", "symbol": "DINHEIROS", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Dinheiros.png" @@ -310,7 +357,7 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png" } ] - }, + }, { "description": "Liquidity token, NFT, HARVEST FOR VALUE", "type_asset": "cw20", @@ -366,7 +413,7 @@ ] }, { - "description": "The GraveDigger is the Liquid Staking Product of BackBone Labs. It will have its own platform. Its liquid staking derivative (LSD) is boneLUNA.", + "description": "BackBone Labs Liquid Staked LUNA", "type_asset": "cw20", "address": "terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", "denom_units": [ @@ -375,22 +422,23 @@ "exponent": 0 }, { - "denom": "bluna", + "denom": "bLUNA", "exponent": 6 } ], "base": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", - "name": "boneLuna", - "display": "bluna", + "name": "BackBone Labs Liquid Staked LUNA", + "display": "bLUNA", "symbol": "bLUNA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png" } - ] + ], + "coingecko_id": "backbone-labs-staked-luna" }, { "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.", @@ -751,7 +799,12 @@ "symbol": "DROGO", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/drogo.png" - } + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/drogo.png" + } + ] }, { "description": "ado the flower of night", @@ -773,7 +826,12 @@ "symbol": "ADO", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ADO.png" - } + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ADO.png" + } + ] }, { "description": "The first memecoin on osmosis.", @@ -812,11 +870,11 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png" } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png" } }, { @@ -845,7 +903,7 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/DNA.png" } ] - } , + }, { "description": "Bitmos opens doors for BRC20 tokens to thrive alongside established players in the Cosmos Network, revolutionizing decentralized finance (DeFi) for all.", "type_asset": "cw20", @@ -872,6 +930,177 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png" } ] + }, + { + "description": "", + "type_asset": "cw20", + "address": "terra1eh8eq60cjy997w5dc3a6exfzanlaurupav8klx7m9u9ddfgh25mqjwl5vj", + "denom_units": [ + { + "denom": "cw20:terra1eh8eq60cjy997w5dc3a6exfzanlaurupav8klx7m9u9ddfgh25mqjwl5vj", + "exponent": 0 + }, + { + "denom": "lads", + "exponent": 6 + } + ], + "base": "cw20:terra1eh8eq60cjy997w5dc3a6exfzanlaurupav8klx7m9u9ddfgh25mqjwl5vj", + "name": "LADS", + "display": "lads", + "symbol": "LADS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/LADS.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/LADS.png" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/F709DF4969CD26174C1A53AA95F3D98BE643C1A52C9981487766F96A1811F6A4", + "exponent": 0, + "aliases": [ + "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + ] + }, + { + "denom": "rstk", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/F709DF4969CD26174C1A53AA95F3D98BE643C1A52C9981487766F96A1811F6A4", + "name": "Restake DAO Token", + "display": "rstk", + "symbol": "RSTK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-86", + "path": "transfer/channel-86/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg" + } + }, + { + "description": "ClonEliteFund invests in Cosmos ecosystem projects, focusing on scalability, security, and interoperability to maximize returns.", + "type_asset": "cw20", + "address": "terra164ssz60yvsxey0ku9mtcaegdeyxwzuwwqyrp238nvflwqve0pvxsra7fa2", + "denom_units": [ + { + "denom": "cw20:terra164ssz60yvsxey0ku9mtcaegdeyxwzuwwqyrp238nvflwqve0pvxsra7fa2", + "exponent": 0 + }, + { + "denom": "CLON", + "exponent": 6 + } + ], + "base": "cw20:terra164ssz60yvsxey0ku9mtcaegdeyxwzuwwqyrp238nvflwqve0pvxsra7fa2", + "name": "CLON", + "display": "CLON", + "symbol": "CLON", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/clon1.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/clon1.png" + } + ] + }, + { + "description": "ERIS Liquid Alliance Staked ampROAR", + "denom_units": [ + { + "denom": "factory/terra1dndhtdr2v7ca8rrn67chlqw3cl3xhm3m2uxls62vghcg3fsh5tpss5xmcu/MOAR", + "exponent": 0 + }, + { + "denom": "MOAR", + "exponent": 6 + } + ], + "base": "factory/terra1dndhtdr2v7ca8rrn67chlqw3cl3xhm3m2uxls62vghcg3fsh5tpss5xmcu/MOAR", + "name": "ERIS MOAR", + "display": "MOAR", + "symbol": "MOAR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/moar.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/moar.png" + } + ] + }, + { + "description": "Tether USDt on Terra", + "denom_units": [ + { + "denom": "ibc/9B19062D46CAB50361CE9B0A3E6D0A7A53AC9E7CB361F32A73CC733144A9A9E5", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/9B19062D46CAB50361CE9B0A3E6D0A7A53AC9E7CB361F32A73CC733144A9A9E5", + "name": "Tether USDt", + "display": "usdt", + "symbol": "USDt", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-138" + }, + "chain": { + "channel_id": "channel-272", + "path": "transfer/channel-272/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" + } } ] -} +} \ No newline at end of file diff --git a/terra2/chain.json b/terra2/chain.json index bc9b7a31c9..003f8b28eb 100644 --- a/terra2/chain.json +++ b/terra2/chain.json @@ -30,13 +30,13 @@ }, "codebase": { "git_repo": "https://github.com/terra-money/core/", - "recommended_version": "v2.10.2", + "recommended_version": "v2.11.1", "compatible_versions": [ - "v2.10.2" + "v2.11.1" ], "binaries": { - "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.10.2/terra_2.10.2_Linux_arm64.tar.gz", - "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.10.2/terra_2.10.2_Linux_x86_64.tar.gz" + "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.11.1/terra_2.11.1_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.11.1/terra_2.11.1_Linux_x86_64.tar.gz" }, "genesis": { "name": "v2.0", @@ -216,10 +216,11 @@ }, { "name": "v2.10", - "tag": "v2.10.2", - "recommended_version": "v2.10.2", + "tag": "v2.10.4", + "recommended_version": "v2.10.5", "compatible_versions": [ - "v2.10.2" + "v2.10.4", + "v2.10.5" ], "proposal": 4805, "height": 9444000, @@ -232,8 +233,31 @@ "version": "v0.37.2" }, "binaries": { - "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.10.2/terra_2.10.2_Linux_arm64.tar.gz", - "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.10.2/terra_2.10.2_Linux_x86_64.tar.gz" + "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.10.5/terra_2.10.5_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.10.5/terra_2.10.5_Linux_x86_64.tar.gz" + }, + "next_version_name": "v2.11" + }, + { + "name": "v2.11", + "tag": "v2.11.1", + "recommended_version": "v2.11.1", + "compatible_versions": [ + "v2.11.1" + ], + "proposal": 4807, + "height": 10136000, + "cosmos_sdk_version": "terra-money/cosmos-sdk v0.47.6-terra.0", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.45.0", + "ibc_go_version": "terra-money/ibc-go/v7 v7.3.1-terra.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "binaries": { + "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.11.0/terra_2.11.1_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.11.0/terra_2.11.1_Linux_x86_64.tar.gz" }, "next_version_name": "" } @@ -337,7 +361,7 @@ "provider": "Cosmos Spaces" }, { - "address": "https://terra-phoenix-rpc.highstakes.ch:26657/", + "address": "https://terra-phoenix-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -379,7 +403,7 @@ "provider": "Stakeflow" }, { - "address": "https://terra-phoenix-api.highstakes.ch:1317/", + "address": "https://terra-phoenix-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { @@ -457,4 +481,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } ] -} +} \ No newline at end of file diff --git a/terra2/images/LADS.png b/terra2/images/LADS.png new file mode 100644 index 0000000000..bb0c901aea Binary files /dev/null and b/terra2/images/LADS.png differ diff --git a/terra2/images/astro-cw20.svg b/terra2/images/astro-cw20.svg new file mode 100644 index 0000000000..015d0f4272 --- /dev/null +++ b/terra2/images/astro-cw20.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/terra2/images/bLUNA.png b/terra2/images/bLUNA.png new file mode 100644 index 0000000000..230d9f4367 Binary files /dev/null and b/terra2/images/bLUNA.png differ diff --git a/terra2/images/boneluna.png b/terra2/images/boneluna.png deleted file mode 100644 index 1bff981671..0000000000 Binary files a/terra2/images/boneluna.png and /dev/null differ diff --git a/terra2/images/clon1.png b/terra2/images/clon1.png new file mode 100644 index 0000000000..5d52ec98b8 Binary files /dev/null and b/terra2/images/clon1.png differ diff --git a/terra2/images/moar.png b/terra2/images/moar.png new file mode 100644 index 0000000000..4f13f44c41 Binary files /dev/null and b/terra2/images/moar.png differ diff --git a/terra2/images/xastro-cw20.svg b/terra2/images/xastro-cw20.svg new file mode 100644 index 0000000000..5402a0dbc6 --- /dev/null +++ b/terra2/images/xastro-cw20.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testnets/_IBC/axelartestnet-lavatestnet2.json b/testnets/_IBC/axelartestnet-lavatestnet.json similarity index 94% rename from testnets/_IBC/axelartestnet-lavatestnet2.json rename to testnets/_IBC/axelartestnet-lavatestnet.json index 7a5aadc367..78d58f255c 100644 --- a/testnets/_IBC/axelartestnet-lavatestnet2.json +++ b/testnets/_IBC/axelartestnet-lavatestnet.json @@ -6,7 +6,7 @@ "connection_id": "connection-659" }, "chain_2": { - "chain_name": "lavatestnet2", + "chain_name": "lavatestnet", "client_id": "07-tendermint-10", "connection_id": "connection-10" }, @@ -29,4 +29,4 @@ } ] } - \ No newline at end of file + diff --git a/testnets/_IBC/axelartestnet-xiontestnet.json b/testnets/_IBC/axelartestnet-xiontestnet.json index 876967bb98..b88d14c8a0 100644 --- a/testnets/_IBC/axelartestnet-xiontestnet.json +++ b/testnets/_IBC/axelartestnet-xiontestnet.json @@ -2,22 +2,22 @@ "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "axelartestnet", - "client_id": "07-tendermint-585", - "connection_id": "connection-402" + "client_id": "07-tendermint-895", + "connection_id": "connection-685" }, "chain_2": { "chain_name": "xiontestnet", - "client_id": "07-tendermint-10", - "connection_id": "connection-5" + "client_id": "07-tendermint-118", + "connection_id": "connection-54" }, "channels": [ { "chain_1": { - "channel_id": "channel-283", + "channel_id": "channel-462", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-5", + "channel_id": "channel-486", "port_id": "transfer" }, "ordering": "unordered", diff --git a/testnets/_IBC/chain4energytestnet-osmosistestnet.json b/testnets/_IBC/chain4energytestnet-osmosistestnet.json index 909558d194..115cb174fe 100644 --- a/testnets/_IBC/chain4energytestnet-osmosistestnet.json +++ b/testnets/_IBC/chain4energytestnet-osmosistestnet.json @@ -2,22 +2,22 @@ "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "chain4energytestnet", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" + "client_id": "07-tendermint-18", + "connection_id": "connection-5" }, "chain_2": { "chain_name": "osmosistestnet", - "client_id": "07-tendermint-104", - "connection_id": "connection-122" + "client_id": "07-tendermint-3393", + "connection_id": "connection-2989" }, "channels": [ { "chain_1": { - "channel_id": "channel-0", + "channel_id": "channel-5", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-111", + "channel_id": "channel-7735", "port_id": "transfer" }, "ordering": "unordered", @@ -30,4 +30,3 @@ } ] } - \ No newline at end of file diff --git a/testnets/_IBC/cosmoshubtestnet-kujiratestnet.json b/testnets/_IBC/cosmoshubtestnet-kujiratestnet.json new file mode 100644 index 0000000000..03dec57460 --- /dev/null +++ b/testnets/_IBC/cosmoshubtestnet-kujiratestnet.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "7-tendermint-3407", + "connection_id": "connection-3519" + }, + "chain_2": { + "chain_name": "kujiratestnet", + "client_id": "07-tendermint-72", + "connection_id": "connection-47" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4004", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-51", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/testnets/_IBC/injectivetestnet-xiontestnet.json b/testnets/_IBC/injectivetestnet-xiontestnet.json index 57e238a731..5a45fb068a 100644 --- a/testnets/_IBC/injectivetestnet-xiontestnet.json +++ b/testnets/_IBC/injectivetestnet-xiontestnet.json @@ -2,22 +2,22 @@ "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "injectivetestnet", - "client_id": "07-tendermint-228", - "connection_id": "connection-211" + "client_id": "07-tendermint-239", + "connection_id": "connection-220" }, "chain_2": { "chain_name": "xiontestnet", - "client_id": "07-tendermint-105", - "connection_id": "connection-43" + "client_id": "07-tendermint-119", + "connection_id": "connection-55" }, "channels": [ { "chain_1": { - "channel_id": "channel-324", + "channel_id": "channel-489", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-215", + "channel_id": "channel-487", "port_id": "transfer" }, "ordering": "unordered", diff --git a/testnets/_IBC/kujiratestnet-terra2testnet.json b/testnets/_IBC/kujiratestnet-terra2testnet.json new file mode 100644 index 0000000000..04cf29b672 --- /dev/null +++ b/testnets/_IBC/kujiratestnet-terra2testnet.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujiratestnet", + "client_id": "07-tendermint-73", + "connection_id": "connection-48" + }, + "chain_2": { + "chain_name": "terra2testnet", + "client_id": "7-tendermint-568", + "connection_id": "connection-508" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-73", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-541", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/testnets/_IBC/lavatestnet2-osmosistestnet.json b/testnets/_IBC/lavatestnet-osmosistestnet.json similarity index 94% rename from testnets/_IBC/lavatestnet2-osmosistestnet.json rename to testnets/_IBC/lavatestnet-osmosistestnet.json index 128c92316d..bee1258dc2 100644 --- a/testnets/_IBC/lavatestnet2-osmosistestnet.json +++ b/testnets/_IBC/lavatestnet-osmosistestnet.json @@ -1,7 +1,7 @@ { "$schema": "../../ibc_data.schema.json", "chain_1": { - "chain_name": "lavatestnet2", + "chain_name": "lavatestnet", "client_id": "07-tendermint-11", "connection_id": "connection-11" }, @@ -29,4 +29,4 @@ } ] } - \ No newline at end of file + diff --git a/testnets/_IBC/nobletestnet-xiontestnet.json b/testnets/_IBC/nobletestnet-xiontestnet.json index 0972835109..9dc164f672 100644 --- a/testnets/_IBC/nobletestnet-xiontestnet.json +++ b/testnets/_IBC/nobletestnet-xiontestnet.json @@ -2,22 +2,22 @@ "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "nobletestnet", - "client_id": "07-tendermint-25", - "connection_id": "connection-24" + "client_id": "07-tendermint-224", + "connection_id": "connection-176" }, "chain_2": { "chain_name": "xiontestnet", - "client_id": "07-tendermint-17", - "connection_id": "connection-9" + "client_id": "07-tendermint-120", + "connection_id": "connection-56" }, "channels": [ { "chain_1": { - "channel_id": "channel-17", + "channel_id": "channel-147", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-9", + "channel_id": "channel-489", "port_id": "transfer" }, "ordering": "unordered", diff --git a/testnets/_IBC/osmosistestnet-xiontestnet.json b/testnets/_IBC/osmosistestnet-xiontestnet.json index b2b1760e1e..66b54bc011 100644 --- a/testnets/_IBC/osmosistestnet-xiontestnet.json +++ b/testnets/_IBC/osmosistestnet-xiontestnet.json @@ -2,22 +2,22 @@ "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "osmosistestnet", - "client_id": "07-tendermint-1474", - "connection_id": "connection-1380" + "client_id": "07-tendermint-3125", + "connection_id": "connection-2826" }, "chain_2": { "chain_name": "xiontestnet", - "client_id": "07-tendermint-22", - "connection_id": "connection-12" + "client_id": "07-tendermint-121", + "connection_id": "connection-57" }, "channels": [ { "chain_1": { - "channel_id": "channel-4410", + "channel_id": "channel-6668", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-12", + "channel_id": "channel-490", "port_id": "transfer" }, "ordering": "unordered", diff --git a/testnets/_non-cosmos/avalanchetestnet/assetlist.json b/testnets/_non-cosmos/avalanchetestnet/assetlist.json index cd2f318d92..b09e547d5d 100644 --- a/testnets/_non-cosmos/avalanchetestnet/assetlist.json +++ b/testnets/_non-cosmos/avalanchetestnet/assetlist.json @@ -156,4 +156,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/akashtestnet/chain.json b/testnets/akashtestnet/chain.json index 9e26378ee4..2a5989f2dc 100644 --- a/testnets/akashtestnet/chain.json +++ b/testnets/akashtestnet/chain.json @@ -29,7 +29,7 @@ ] }, "codebase": { - "git_repo": "github.com/ovrclk/akash", + "git_repo": "https://github.com/akash-network/node", "recommended_version": "v0.22.0", "compatible_versions": [ "v0.22.0" diff --git a/testnets/arkeonetworktestnet/assetlist.json b/testnets/arkeonetworktestnet/assetlist.json index 9c6f515884..34ffa92dcd 100644 --- a/testnets/arkeonetworktestnet/assetlist.json +++ b/testnets/arkeonetworktestnet/assetlist.json @@ -7,6 +7,10 @@ "denom_units": [ { "denom": "uarkeo", + "exponent": 0 + }, + { + "denom": "arkeo", "exponent": 6 } ], diff --git a/testnets/auratestnet/chain.json b/testnets/auratestnet/chain.json index 74615fb64a..168527b6ef 100644 --- a/testnets/auratestnet/chain.json +++ b/testnets/auratestnet/chain.json @@ -5,7 +5,7 @@ "network_type": "testnet", "website": "https://aura.network/", "pretty_name": "Aura Euphoria Network", - "chain_id": "euphoria-2", + "chain_id": "aura_6321-3", "bech32_prefix": "aura", "daemon_name": "aurad", "node_home": "$HOME/.aura", @@ -36,37 +36,35 @@ }, "codebase": { "git_repo": "https://github.com/aura-nw/aura", - "recommended_version": "v0.7.2-euphoria", + "recommended_version": "v0.8.0-euphoria", "compatible_versions": [ - "v0.7.2-euphoria" + "v0.8.0-euphoria" ], - "cosmos_sdk_version": "0.47.4", - "ibc_go_version": "v7.2.0", + "cosmos_sdk_version": "v0.47.8", + "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", - "version": "0.37.2" + "version": "0.37.4" }, - "cosmwasm_version": "0.41.0", + "cosmwasm_version": "0.42.0", "cosmwasm_enabled": true, "genesis": { - "genesis_url": "https://github.com/aura-nw/testnets/raw/main/euphoria-2/euphoria-2-genesis.tar.gz" + "genesis_url": "https://images.aura.network/aura_6321-3-genesis.tar.gz" }, "versions": [ { - "name": "v0.7.2-euphoria", - "proposal": 25, - "height": 7655365, - "recommended_version": "v0.7.2-euphoria", + "name": "v0.8.0-euphoria", + "recommended_version": "v0.8.0-euphoria", "compatible_versions": [ - "v0.7.2-euphoria" + "v0.8.0-euphoria" ], - "cosmos_sdk_version": "0.47.4", - "ibc_go_version": "v7.2.0", + "cosmos_sdk_version": "v0.47.8", + "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", - "version": "0.37.2" + "version": "0.37.4" }, - "cosmwasm_version": "0.41.0", + "cosmwasm_version": "0.42.0", "cosmwasm_enabled": true, "next_version_name": "" } @@ -109,8 +107,8 @@ { "kind": "aurascan", "url": "https://euphoria.aurascan.io", - "tx_page": "https://euphoria.aurascan.io/transaction/${txHash}", - "account_page": "https://euphoria.aurascan.io/account/${accountAddress}" + "tx_page": "https://euphoria.aurascan.io/tx/${txHash}", + "account_page": "https://euphoria.aurascan.io/address/${accountAddress}" } ], "images": [ @@ -119,4 +117,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/axelartestnet/chain.json b/testnets/axelartestnet/chain.json index 3bf9894069..bf777814d1 100644 --- a/testnets/axelartestnet/chain.json +++ b/testnets/axelartestnet/chain.json @@ -42,6 +42,10 @@ { "address": "https://axelartest-rpc.quickapi.com/", "provider": "Quickapi" + }, + { + "address": "https://axelar-testnet-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "rest": [ @@ -52,6 +56,19 @@ { "address": "https://axelartest-lcd.quickapi.com/", "provider": "Quickapi" + }, + { + "address": "https://axelar-testnet-api.ibs.team:443", + "provider": "Inter Blockchain Services" + } + ] + }, + "peers": { + "seeds": [ + { + "id": "496ac0ba20188f70f41e0a814dfd4d9a617338f8", + "address": "axelar-testnet-seed.ibs.team:16654", + "provider": "Inter Blockchain Services" } ] }, diff --git a/testnets/babylontestnet/assetlist.json b/testnets/babylontestnet/assetlist.json index 7772c78109..f7d43af84b 100644 --- a/testnets/babylontestnet/assetlist.json +++ b/testnets/babylontestnet/assetlist.json @@ -14,7 +14,7 @@ "exponent": 6 } ], - "base": "uatom", + "base": "ubbn", "name": "Babylon BBN", "display": "bbn", "symbol": "BBN", diff --git a/testnets/babylontestnet/chain.json b/testnets/babylontestnet/chain.json index 7dbf20077c..1df75fca7a 100644 --- a/testnets/babylontestnet/chain.json +++ b/testnets/babylontestnet/chain.json @@ -10,7 +10,9 @@ "bech32_prefix": "bbn", "daemon_name": "babylond", "node_home": "$HOME/.babylond", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "fees": { "fee_tokens": [ { @@ -28,7 +30,9 @@ "codebase": { "git_repo": "https://github.com/babylonchain/babylon", "recommended_version": "v0.8.4", - "compatible_versions": ["v0.8.4"], + "compatible_versions": [ + "v0.8.4" + ], "genesis": { "genesis_url": "https://github.com/babylonchain/networks/raw/main/bbn-test3/genesis.tar.bz2" }, @@ -36,7 +40,9 @@ { "name": "v0.8.4", "recommended_version": "v0.8.4", - "compatible_versions": ["v0.8.4"] + "compatible_versions": [ + "v0.8.4" + ] } ] }, @@ -102,12 +108,12 @@ "address": "104.196.182.128:26656", "provider": "DoraFactory" }, - { + { "id": "fad3a0485745a49a6f95a9d61cda0615dcc6beff", "address": "89.58.62.213:26501", "provider": "EquinoxDAO" }, - { + { "id": "a25c37941e272b5ed0ea40e8f39e95c0d9c55083", "address": "178.63.105.185:26656", "provider": "Everstake" @@ -160,4 +166,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/babylontestnet/images/logo.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/babylontestnet1/assetlist.json b/testnets/babylontestnet1/assetlist.json index ee1583f660..bc622ec163 100644 --- a/testnets/babylontestnet1/assetlist.json +++ b/testnets/babylontestnet1/assetlist.json @@ -14,7 +14,7 @@ "exponent": 6 } ], - "base": "uatom", + "base": "ubbn", "name": "Babylon BBN", "display": "bbn", "symbol": "BBN", diff --git a/testnets/bitcannadevnet/chain.json b/testnets/bitcannadevnet/chain.json index 4543b71bca..a9188be2df 100644 --- a/testnets/bitcannadevnet/chain.json +++ b/testnets/bitcannadevnet/chain.json @@ -64,6 +64,11 @@ { "id": "471341f9befeab582e845d5e9987b7a4889c202f", "address": "144.91.89.66:26656" + }, + { + "id": "496ac0ba20188f70f41e0a814dfd4d9a617338f8", + "address": "bcnadev-seed.ibs.team:16656", + "provider": "Inter Blockchain Services" } ], "persistent_peers": [ @@ -102,6 +107,10 @@ { "address": "https://bitcanna-testnet.nodejumper.io:443", "provider": "NODEJUMPER" + }, + { + "address": "https://bcna-testnet-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "rest": [ @@ -128,6 +137,10 @@ { "address": "https://bitcanna-testnet.nodejumper.io:1317", "provider": "NODEJUMPER" + }, + { + "address": "https://bcna-testnet-api.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "grpc": [ diff --git a/testnets/celestiatestnet3/chain.json b/testnets/celestiatestnet3/chain.json index 51c52f81ab..52add1e592 100644 --- a/testnets/celestiatestnet3/chain.json +++ b/testnets/celestiatestnet3/chain.json @@ -52,6 +52,11 @@ "id": "8c780fa4df00621926a9b20e80410895548cb0d9", "address": "mocha-full.avril14th.org:26656", "provider": "Avril 14th" + }, + { + "id": "5d0bf034d6e6a8b5ee31a2f42f753f1107b3a00e", + "address": "celestia-testnet-seed.itrocket.net:11656", + "provider": "🚀ITRocket🚀" } ] }, @@ -68,6 +73,10 @@ { "address": "https://rpc-mocha-full.avril14th.org", "provider": "Avril 14th" + }, + { + "address": "https://celestia-testnet-rpc.itrocket.net", + "provider": "🚀ITRocket🚀" } ], "rest": [ @@ -82,6 +91,10 @@ { "address": "https://api-mocha-full.avril14th.org", "provider": "Avril 14th" + }, + { + "address": "https://celestia-testnet-api.itrocket.net", + "provider": "🚀ITRocket🚀" } ], "grpc": [ @@ -92,6 +105,10 @@ { "address": "grpc-mocha-full.avril14th.org", "provider": "Avril 14th" + }, + { + "address": "celestia-testnet-grpc.itrocket.net:11090", + "provider": "🚀ITRocket🚀" } ] }, @@ -100,6 +117,12 @@ "kind": "Mintscan", "url": "https://testnet.mintscan.io/celestia-testnet", "tx_page": "https://testnet.mintscan.io/celestia-testnet/txs/${txHash}" + }, + { + "kind": "🚀ITRocket🚀", + "url": "https://testnet.itrocket.net/celestia", + "tx_page": "https://testnet.itrocket.net/celestia/tx/${txHash}", + "account_page": "https://testnet.itrocket.net/celestia/account/${accountAddress}" } ] } diff --git a/testnets/chimbatestnet/chain.json b/testnets/chimbatestnet/chain.json index 8af678ace3..c857b35c9f 100644 --- a/testnets/chimbatestnet/chain.json +++ b/testnets/chimbatestnet/chain.json @@ -23,7 +23,7 @@ "staking": { "staking_tokens": [ { - "denom": "chimba" + "denom": "ucmba" } ] }, diff --git a/testnets/coreumtestnet/chain.json b/testnets/coreumtestnet/chain.json index 039787e734..57a4677a99 100644 --- a/testnets/coreumtestnet/chain.json +++ b/testnets/coreumtestnet/chain.json @@ -100,6 +100,11 @@ "id": "53f2367d8f8291af8e3b6ca60efded0675ff6314", "address": "seed-antares.mainnet-1.coreum.dev:26656", "provider": "Coreum Foundation" + }, + { + "id": "496ac0ba20188f70f41e0a814dfd4d9a617338f8", + "address": "coreum-testnet-seed.ibs.team:16660", + "provider": "Inter Blockchain Services" } ] }, @@ -112,6 +117,10 @@ { "address": "https://full-node-eris.testnet-1.coreum.dev:26657", "provider": "Coreum Foundation" + }, + { + "address": "https://coreum-testnet-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "grpc": [ @@ -128,6 +137,10 @@ { "address": "https://full-node.testnet-1.coreum.dev:1317", "provider": "Coreum" + }, + { + "address": "https://coreum-testnet-api.ibs.team:443", + "provider": "Inter Blockchain Services" } ] }, @@ -146,4 +159,4 @@ "assets", "nft" ] -} +} \ No newline at end of file diff --git a/testnets/deardogetestnet/assetlist.json b/testnets/deardogetestnet/assetlist.json index b154352df1..ed0a0055e9 100644 --- a/testnets/deardogetestnet/assetlist.json +++ b/testnets/deardogetestnet/assetlist.json @@ -28,4 +28,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/doravotatestnet2/assetlist.json b/testnets/doravotatestnet2/assetlist.json index 87cbaffbea..f9f8172f7c 100644 --- a/testnets/doravotatestnet2/assetlist.json +++ b/testnets/doravotatestnet2/assetlist.json @@ -28,4 +28,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/dydxtestnet/assetlist.json b/testnets/dydxtestnet/assetlist.json index 68da9e0b45..aa24a901ec 100644 --- a/testnets/dydxtestnet/assetlist.json +++ b/testnets/dydxtestnet/assetlist.json @@ -46,4 +46,4 @@ } } ] -} +} \ No newline at end of file diff --git a/testnets/dydxtestnet/chain.json b/testnets/dydxtestnet/chain.json index 471c7d88c0..34d70267ad 100644 --- a/testnets/dydxtestnet/chain.json +++ b/testnets/dydxtestnet/chain.json @@ -74,7 +74,7 @@ { "id": "65b740ee326c9260c30af1f044e9cda63c73f7c1", "address": "80a1a6cd086634c34008c6457d3f7441cfc05c47@seeds.kingnodes.com:27056", - "provider": "KingNodes" + "provider": "kingnodes 👑" }, { "id": "20e1000e88125698264454a884812746c2eb4807", @@ -99,8 +99,8 @@ "provider": "Lavender Five" }, { - "address": "https://test-dydx.kingnodes.com", - "provider": "KingNodes" + "address": "https://test-dydx-rpc.kingnodes.com", + "provider": "kingnodes 👑" }, { "address": "https://dydx-testnet-rpc.polkachu.com", @@ -165,4 +165,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/elystestnet/assetlist.json b/testnets/elystestnet/assetlist.json index ef48b41a06..e9289eca54 100644 --- a/testnets/elystestnet/assetlist.json +++ b/testnets/elystestnet/assetlist.json @@ -8,12 +8,16 @@ { "denom": "uelys", "exponent": 0, - "aliases": ["microelys"] + "aliases": [ + "microelys" + ] }, { "denom": "melys", "exponent": 3, - "aliases": ["millielys"] + "aliases": [ + "millielys" + ] }, { "denom": "elys", @@ -41,12 +45,16 @@ { "denom": "ueden", "exponent": 0, - "aliases": ["microeden"] + "aliases": [ + "microeden" + ] }, { "denom": "meden", "exponent": 3, - "aliases": ["millieden"] + "aliases": [ + "millieden" + ] }, { "denom": "eden", @@ -159,4 +167,4 @@ } } ] -} +} \ No newline at end of file diff --git a/testnets/elystestnet/chain.json b/testnets/elystestnet/chain.json index ca24f0ceac..5286c04f12 100644 --- a/testnets/elystestnet/chain.json +++ b/testnets/elystestnet/chain.json @@ -24,21 +24,24 @@ "fee_tokens": [ { "denom": "uelys", - "low_gas_price": 10000, - "average_gas_price": 25000, - "high_gas_price": 30000 + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 }, { "denom": "ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65", - "low_gas_price": 10000, - "average_gas_price": 25000, - "high_gas_price": 30000 + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 }, { "denom": "ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4", - "low_gas_price": 10000, - "average_gas_price": 25000, - "high_gas_price": 30000 + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, @@ -247,6 +250,10 @@ { "address": "https://elys-testnet-rpc.itrocket.net:443", "provider": "itrocket" + }, + { + "address": "https://elys-rpc.kleomedes.network:443", + "provider": "Kleomedes" } ], "rest": [ @@ -265,6 +272,10 @@ { "address": "https://elys-testnet-api.itrocket.net", "provider": "itrocket" + }, + { + "address": "https://elys-api.kleomedes.network:443", + "provider": "Kleomedes" } ], "grpc": [ diff --git a/testnets/entrypointtestnet/assetlist.json b/testnets/entrypointtestnet/assetlist.json index bfccd3aa68..3cac8d2da8 100644 --- a/testnets/entrypointtestnet/assetlist.json +++ b/testnets/entrypointtestnet/assetlist.json @@ -48,7 +48,7 @@ "exponent": 6 } ], - "base": "ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C", + "base": "ibc/8A138BC76D0FB2665F8937EC2BF01B9F6A714F6127221A0E155106A45E09BCC5", "name": "Cosmos", "display": "atom", "symbol": "ATOM", diff --git a/testnets/entrypointtestnet/chain.json b/testnets/entrypointtestnet/chain.json index 75d91b3f35..9a9523147a 100644 --- a/testnets/entrypointtestnet/chain.json +++ b/testnets/entrypointtestnet/chain.json @@ -121,4 +121,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/fetchhubtestnet/assetlist.json b/testnets/fetchhubtestnet/assetlist.json index 99a4f82ed5..f6294d5f29 100644 --- a/testnets/fetchhubtestnet/assetlist.json +++ b/testnets/fetchhubtestnet/assetlist.json @@ -16,7 +16,7 @@ ], "base": "atestfet", "name": "fetch-ai", - "display": "fet", + "display": "testfet", "symbol": "FET", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", diff --git a/testnets/finschiatestnet/assetlist.json b/testnets/finschiatestnet/assetlist.json index e3322f53a2..8f4ce797b0 100644 --- a/testnets/finschiatestnet/assetlist.json +++ b/testnets/finschiatestnet/assetlist.json @@ -29,7 +29,9 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg" } ], - "keywords": ["staking"] + "keywords": [ + "staking" + ] } ] -} +} \ No newline at end of file diff --git a/testnets/finschiatestnet/chain.json b/testnets/finschiatestnet/chain.json index 7aa42630fc..41b499792b 100644 --- a/testnets/finschiatestnet/chain.json +++ b/testnets/finschiatestnet/chain.json @@ -9,7 +9,9 @@ "bech32_prefix": "tlink", "daemon_name": "fnsad", "node_home": "$HOME/.finschia", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 438, "fees": { "fee_tokens": [ @@ -35,7 +37,10 @@ "codebase": { "git_repo": "https://github.com/finschia/finschia", "recommended_version": "v2.0.1", - "compatible_versions": ["v2.0.0", "v2.0.1"], + "compatible_versions": [ + "v2.0.0", + "v2.0.1" + ], "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-amd64", @@ -48,7 +53,9 @@ "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", "ibc_go_version": "v4.3.1", - "ics_enabled": ["ics20-1"], + "ics_enabled": [ + "ics20-1" + ], "genesis": { "name": "v2", "genesis_url": "https://vos.line-scdn.net/finschia-2-fileshare/ebony-prod-2/genesis-file.tgz" @@ -59,7 +66,9 @@ "tag": "v1.1.1", "height": 36305907, "recommended_version": "v1.1.1", - "compatible_versions": ["v1.1.1"], + "compatible_versions": [ + "v1.1.1" + ], "go_version": "1.18", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v1.1.1/finschia-v1.1.1-linux-amd64.tgz", @@ -72,7 +81,9 @@ "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", "ibc_go_version": "v3.3.3", - "ics_enabled": ["ics20-1"], + "ics_enabled": [ + "ics20-1" + ], "next_version_name": "v2" }, { @@ -81,7 +92,10 @@ "proposal": 1, "height": 40154246, "recommended_version": "v2.0.1", - "compatible_versions": ["v2.0.0", "v2.0.1"], + "compatible_versions": [ + "v2.0.0", + "v2.0.1" + ], "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-amd64", @@ -94,7 +108,9 @@ "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", "ibc_go_version": "v4.3.1", - "ics_enabled": ["ics20-1"], + "ics_enabled": [ + "ics20-1" + ], "previous_version_name": "v1", "next_version_name": "v3" } @@ -152,4 +168,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg" } -} +} \ No newline at end of file diff --git a/testnets/galacticatestnet/assetlist.json b/testnets/galacticatestnet/assetlist.json new file mode 100644 index 0000000000..1a0a81a1b2 --- /dev/null +++ b/testnets/galacticatestnet/assetlist.json @@ -0,0 +1,34 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "galacticatestnet", + "assets": [ + { + "description": "The native token of Galactica Protocol Testnet", + "denom_units": [ + { + "denom": "agnet", + "exponent": 0 + }, + { + "denom": "gnet", + "exponent": 18 + } + ], + "base": "agnet", + "name": "Gnet", + "display": "gnet", + "symbol": "GNET", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galactica/images/galactica.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galactica/images/galactica.png" + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galactica/images/galactica.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/testnets/galacticatestnet/chain.json b/testnets/galacticatestnet/chain.json new file mode 100644 index 0000000000..db66c1daa5 --- /dev/null +++ b/testnets/galacticatestnet/chain.json @@ -0,0 +1,131 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "galacticatestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Galactica Protocol Testnet", + "chain_id": "galactica_9302-1", + "bech32_prefix": "gala", + "daemon_name": "galacticad", + "node_home": "$HOME/.galactica", + "key_algos": [ + "ethsecp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "agnet", + "fixed_min_gas_price": 10, + "low_gas_price": 10, + "average_gas_price": 10, + "high_gas_price": 20 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "agnet" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/Galactica-corp/galactica", + "recommended_version": "v0.1.1", + "compatible_versions": [ + "v0.1.1" + ], + "cosmos_sdk_version": "0.46", + "consensus": { + "type": "cometbft", + "version": "0.37" + }, + "cosmwasm_enabled": false, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/Galactica-corp/networks/main/galactica_9301-1/genesis.json" + }, + "versions": [ + { + "name": "v0.1.1", + "recommended_version": "v0.1.1", + "compatible_versions": [ + "v0.1.1" + ], + "cosmos_sdk_version": "0.46", + "consensus": { + "type": "cometbft", + "version": "0.37" + }, + "cosmwasm_enabled": false + } + ] + }, + "peers": { + "seeds": [ + { + "id": "2b590732225bca0f3f55db543861063c705bcd40", + "address": "seed01-reticulum.galactica.com:26656", + "provider": "Galactica" + }, + { + "id": "fe758700e25b59b6ba6e2784badcb6024ba1b760", + "address": "seed02-reticulum.galactica.com:26656", + "provider": "Galactica" + }, + { + "id": "028d8c875660f0e3fb1d893acd0b2220c619625f", + "address": "seed03-reticulum.galactica.com:26656", + "provider": "Galactica" + } + ], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.galactica.test.pfc.zone/", + "provider": "PFC" + }, + { + "address": "https://galactica-testnet-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" + } + ], + "rest": [ + { + "address": "https://api.galactica.test.pfc.zone/", + "provider": "PFC" + }, + { + "address": "https://galactica-testnet-api.ibs.team:443", + "provider": "Inter Blockchain Services" + } + ], + "grpc": [ + { + "address": "https://grpc.galactica.test.pfc.zone/", + "provider": "PFC" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galactica/images/galactica.png" + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://ping.pfc.zone/galactica-testnet", + "tx_page": "https://ping.pfc.zone/galactica-testnet/tx/${txHash}", + "account_page": "https://ping.pfc.zone/galactica-testnet/account/${accountAddress}" + } + ], + "keywords": [ + "testnet" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galactica/images/galactica.png" + } + ] +} \ No newline at end of file diff --git a/testnets/hedgetestnet/assetlist.json b/testnets/hedgetestnet/assetlist.json index c73539b5c0..0392ea78bc 100644 --- a/testnets/hedgetestnet/assetlist.json +++ b/testnets/hedgetestnet/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/hedgetestnet/chain.json b/testnets/hedgetestnet/chain.json index 849a0fdcbe..161c08165b 100644 --- a/testnets/hedgetestnet/chain.json +++ b/testnets/hedgetestnet/chain.json @@ -9,7 +9,9 @@ "bech32_prefix": "hedge", "daemon_name": "hedged", "node_home": "$HOME/.hedge", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -62,4 +64,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hedgetestnet/images/hedge.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/injectivetestnet/chain.json b/testnets/injectivetestnet/chain.json index 35c31ad522..b2b2b03da7 100644 --- a/testnets/injectivetestnet/chain.json +++ b/testnets/injectivetestnet/chain.json @@ -123,7 +123,7 @@ "provider": "Polkachu" }, { - "address": "https://k8s.testnet.tm.injective.network:443", + "address": "https://testnet.sentry.tm.injective.network:443", "provider": "injectiveLabs" }, { @@ -141,11 +141,11 @@ "provider": "Polkachu" }, { - "address": "https://k8s.testnet.lcd.injective.network", + "address": "https://testnet.sentry.lcd.injective.network:443", "provider": "injectiveLabs" }, { - "address": "https://testnet.grpc.injective.network", + "address": "https://testnet.lcd.injective.network", "provider": "injectiveLabs" }, { @@ -159,7 +159,7 @@ "provider": "Polkachu" }, { - "address": "k8s.testnet.chain.grpc.injective.network:443", + "address": "testnet.sentry.chain.grpc.injective.network:443", "provider": "injectiveLabs" }, { diff --git a/testnets/junotestnet/assetlist.json b/testnets/junotestnet/assetlist.json index aa295a69e6..ebdc0a962b 100644 --- a/testnets/junotestnet/assetlist.json +++ b/testnets/junotestnet/assetlist.json @@ -84,19 +84,15 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg" }, "images": [ { - "image_sync": { - "chain_name": "juno", - "base_denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png" } ] } ] -} +} \ No newline at end of file diff --git a/testnets/junotestnet/chain.json b/testnets/junotestnet/chain.json index 77a8366c04..df4ddbd532 100644 --- a/testnets/junotestnet/chain.json +++ b/testnets/junotestnet/chain.json @@ -98,24 +98,12 @@ }, "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" @@ -123,10 +111,6 @@ { "address": "https://juno.api.t.stavr.tech", "provider": "🔥STAVR🔥" - }, - { - "address": "https://uni-api.reece.sh", - "provider": "Reecepbcups" } ], "grpc": [ @@ -137,27 +121,11 @@ ] }, "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}" } ] } diff --git a/testnets/kyvedevnet/assetlist.json b/testnets/kyvedevnet/assetlist.json index 18de8c8688..20a9be29e3 100644 --- a/testnets/kyvedevnet/assetlist.json +++ b/testnets/kyvedevnet/assetlist.json @@ -44,4 +44,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/kyvetestnet/assetlist.json b/testnets/kyvetestnet/assetlist.json index 7e0b3ebaee..a55f3ce7c5 100644 --- a/testnets/kyvetestnet/assetlist.json +++ b/testnets/kyvetestnet/assetlist.json @@ -44,4 +44,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/kyvetestnet/chain.json b/testnets/kyvetestnet/chain.json index abbea2f360..292b65b82a 100644 --- a/testnets/kyvetestnet/chain.json +++ b/testnets/kyvetestnet/chain.json @@ -79,6 +79,13 @@ "id": "bc8b5fbb40a1b82dfba591035cb137278a21c57d", "address": "52.59.65.9:26656" } + ], + "seeds": [ + { + "id": "496ac0ba20188f70f41e0a814dfd4d9a617338f8", + "address": "kyve-testnet-seed.ibs.team:16659", + "provider": "Inter Blockchain Services" + } ] }, "apis": { @@ -90,6 +97,10 @@ { "address": "https://rpc-kyve-test.ecostake.com", "provider": "ecostake" + }, + { + "address": "https://kyve-testnet-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "rest": [ @@ -100,6 +111,10 @@ { "address": "https://rest-kyve-test.ecostake.com", "provider": "ecostake" + }, + { + "address": "https://kyve-testnet-api.ibs.team:443", + "provider": "Inter Blockchain Services" } ] }, diff --git a/testnets/lavatestnet/chain.json b/testnets/lavatestnet/chain.json index d725ac6322..51d357c3dd 100644 --- a/testnets/lavatestnet/chain.json +++ b/testnets/lavatestnet/chain.json @@ -2,9 +2,10 @@ "$schema": "../../chain.schema.json", "chain_name": "lavatestnet", "status": "live", + "pre_fork_chain_name": "lavatestnet1", "network_type": "testnet", "website": "https://www.lavanet.xyz/", - "pretty_name": "Lava", + "pretty_name": "Lava Testnet", "chain_id": "lava-testnet-2", "bech32_prefix": "lava@", "daemon_name": "lavad", @@ -17,10 +18,10 @@ "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 + "fixed_min_gas_price": 0.000001, + "low_gas_price": 0.000001, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, @@ -36,41 +37,125 @@ }, "codebase": { "git_repo": "https://github.com/lavanet/lava", - "recommended_version": "v0.21.1.2", + "recommended_version": "v1.0.1", "compatible_versions": [ - "v0.21.1.2" + "v1.0.1" ], "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.21.1.2/lavad-v0.21.1.2-linux-amd64" + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v1.0.1/lavad-v1.0.1-linux-amd64" }, - "cosmos_sdk_version": "0.47", + "cosmos_sdk_version": "0.47.7", "consensus": { "type": "tendermint", - "version": "0.34" + "version": "0.37" }, "cosmwasm_version": "0.30", "cosmwasm_enabled": false, - "ibc_go_version": "v7.2.0", + "ibc_go_version": "7.2.0", "ics_enabled": [ "ics20-1" ], "genesis": { - "name": "v0.3.0", + "name": "v0.21.1.2", "genesis_url": "https://raw.githubusercontent.com/lavanet/lava-config/main/testnet-2/genesis_json/genesis.json" }, "versions": [ { "name": "v0.21.1.2", "tag": "v0.21.1.2", - "height": 340778, - "recommended_version": "v0.21.1.2", + "height": 345000, + "next_version_name": "v0.22.0" + }, + { + "name": "v0.22.0", + "tag": "v0.22.0", + "height": 396595, + "next_version_name": "v0.23.5" + }, + { + "name": "v0.23.5", + "tag": "v0.23.5", + "height": 435889, + "next_version_name": "v0.24.0" + }, + { + "name": "v0.24.0", + "tag": "v0.24.0", + "height": 472310, + "next_version_name": "v0.25.2" + }, + { + "name": "v0.25.2", + "tag": "v0.25.2", + "height": 514533, + "next_version_name": "v0.26.1" + }, + { + "name": "v0.26.1", + "tag": "v0.26.1", + "height": 554249, + "next_version_name": "v0.27.0" + }, + { + "name": "v0.27.0", + "tag": "v0.27.0", + "height": 590764, + "next_version_name": "v0.30.1" + }, + { + "name": "v0.30.1", + "tag": "v0.30.1", + "height": 633177, + "next_version_name": "v0.30.2" + }, + { + "name": "v0.30.2", + "tag": "v0.30.2", + "height": 636006, + "next_version_name": "v0.31.1" + }, + { + "name": "v0.31.1", + "tag": "v0.31.1", + "height": 675100, + "next_version_name": "v0.32.0" + }, + { + "name": "v0.32.0", + "tag": "v0.32.0", + "height": 711251, + "next_version_name": "v0.33.0" + }, + { + "name": "v0.33.0", + "tag": "v0.33.0", + "height": 764400, + "next_version_name": "v0.34.0" + }, + { + "name": "v0.34.0", + "tag": "v0.34.0", + "height": 809250, + "next_version_name": "v0.35.0" + }, + { + "name": "v0.35.0", + "tag": "v0.35.0", + "height": 845700, + "next_version_name": "v1.0.1" + }, + { + "name": "v1.0.1", + "tag": "v1.0.1", + "height": 927794, + "recommended_version": "v1.0.1", "compatible_versions": [ - "v0.21.1.2" + "v1.0.1" ], - "cosmos_sdk_version": "0.47", + "cosmos_sdk_version": "0.47.7", "consensus": { "type": "tendermint", - "version": "0.34" + "version": "0.37" }, "cosmwasm_enabled": false, "ibc_go_version": "3.0.1", @@ -78,7 +163,7 @@ "ics20-1" ], "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.21.1.2/lavad-v0.21.1.2-linux-amd64" + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v1.0.1/lavad-v1.0.1-linux-amd64" } } ] @@ -114,28 +199,49 @@ "id": "ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0", "address": "testnet-seeds.polkachu.com:19956", "provider": "Polkachu" + }, + { + "id": "eb7832932626c1c636d16e0beb49e0e4498fbd5e", + "address": "lava-testnet-seed.itrocket.net:20656", + "provider": "🚀ITRocket🚀" } ] }, "apis": { "rpc": [ { - "address": "https://https://public-rpc-testnet2.lavanet.xyz/", + "address": "https://public-rpc-testnet2.lavanet.xyz:443/rpc/", "provider": "Lava" }, { "address": "http://lava.rpc.t.stavr.tech:198", "provider": "🔥STAVR🔥" + }, + { + "address": "https://lava-testnet-rpc.itrocket.net:443", + "provider": "🚀ITRocket🚀" + }, + { + "address": "https://lava-testnet-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "rest": [ { - "address": "https://public-rpc-testnet2.lavanet.xyz/rest/", + "address": "https://public-rpc-testnet2.lavanet.xyz:443/rest/", "provider": "Lava" }, { "address": "https://lava.api.t.stavr.tech", "provider": "🔥STAVR🔥" + }, + { + "address": "https://lava-testnet-api.itrocket.net", + "provider": "🚀ITRocket🚀" + }, + { + "address": "https://lava-testnet-api.ibs.team:443", + "provider": "Inter Blockchain Services" } ] }, @@ -157,10 +263,18 @@ "url": "https://explorer.nodestake.org/lava-testnet", "tx_page": "https://explorer.nodestake.org/lava-testnet/tx/${txHash}", "account_page": "https://explorer.nodestake.org/lava-testnet/account/${accountAddress}" + }, + { + "kind": "🚀ITRocket🚀", + "url": "https://testnet.itrocket.net/lava", + "tx_page": "https://testnet.itrocket.net/lava/tx/${txHash}", + "account_page": "https://testnet.itrocket.net/lava/account/${accountAddress}" } ], "keywords": [ "rpc", - "api" + "api", + "modular", + "data" ] -} +} \ No newline at end of file diff --git a/testnets/lavatestnet2/assetlist.json b/testnets/lavatestnet1/assetlist.json similarity index 96% rename from testnets/lavatestnet2/assetlist.json rename to testnets/lavatestnet1/assetlist.json index 4f14ae39cd..d90866443b 100644 --- a/testnets/lavatestnet2/assetlist.json +++ b/testnets/lavatestnet1/assetlist.json @@ -1,6 +1,6 @@ { "$schema": "../../assetlist.schema.json", - "chain_name": "lavatestnet2", + "chain_name": "lavatestnet1", "assets": [ { "description": "The native token of Lava", diff --git a/testnets/lavatestnet2/chain.json b/testnets/lavatestnet1/chain.json similarity index 52% rename from testnets/lavatestnet2/chain.json rename to testnets/lavatestnet1/chain.json index 317a2b8908..7da604ac89 100644 --- a/testnets/lavatestnet2/chain.json +++ b/testnets/lavatestnet1/chain.json @@ -1,11 +1,11 @@ { "$schema": "../../chain.schema.json", - "chain_name": "lavatestnet2", - "status": "live", + "chain_name": "lavatestnet1", + "status": "killed", "network_type": "testnet", "website": "https://www.lavanet.xyz/", - "pretty_name": "Lava Testnet", - "chain_id": "lava-testnet-2", + "pretty_name": "Lava", + "chain_id": "lava-testnet-1", "bech32_prefix": "lava@", "daemon_name": "lavad", "node_home": "$HOME/.lava", @@ -17,8 +17,8 @@ "fee_tokens": [ { "denom": "ulava", - "fixed_min_gas_price": 0.000001, - "low_gas_price": 0.000001, + "fixed_min_gas_price": 0.0025, + "low_gas_price": 0.0025, "average_gas_price": 0.025, "high_gas_price": 0.04 } @@ -36,110 +36,107 @@ }, "codebase": { "git_repo": "https://github.com/lavanet/lava", - "recommended_version": "v0.32.0", + "recommended_version": "v0.12.1", "compatible_versions": [ - "v0.32.0" + "v0.12.1" ], - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.32.0/lavad-v0.32.0-linux-amd64" - }, - "cosmos_sdk_version": "0.47.6", + "cosmos_sdk_version": "0.45", "consensus": { "type": "tendermint", - "version": "0.37" + "version": "0.34" }, "cosmwasm_version": "0.30", "cosmwasm_enabled": false, - "ibc_go_version": "3.0.1", + "ibc_go_version": "v7.2.0", "ics_enabled": [ "ics20-1" ], "genesis": { - "name": "v0.21.1.2", - "genesis_url": "https://raw.githubusercontent.com/lavanet/lava-config/main/testnet-2/genesis_json/genesis.json" + "name": "v0.3.0", + "genesis_url": "https://raw.githubusercontent.com/lavanet/lava-config/main/testnet-1/genesis_json/genesis.json" }, "versions": [ - { - "name": "v0.21.1.2", - "tag": "v0.21.1.2", - "height": 345000, - "next_version_name": "v0.22.0" + { + "name": "v0.4.0", + "tag": "v0.4.0", + "height": 838, + "next_version_name": "v0.4.3" }, { - "name": "v0.22.0", - "tag": "v0.22.0", - "height": 396595, - "next_version_name": "v0.23.5" + "name": "v0.4.3", + "tag": "v0.4.3", + "height": 22300, + "next_version_name": "v0.4.4" }, { - "name": "v0.23.5", - "tag": "v0.23.5", - "height": 435889, - "next_version_name": "v0.24.0" + "name": "v0.4.4", + "tag": "v0.4.4", + "height": 41735, + "next_version_name": "v0.5.2" }, { - "name": "v0.24.0", - "tag": "v0.24.0", - "height": 472310, - "next_version_name": "v0.25.2" + "name": "v0.5.2", + "tag": "v0.5.2", + "height": 63760, + "next_version_name": "v0.6.0-RC3" }, { - "name": "v0.25.2", - "tag": "v0.25.2", - "height": 514533, - "next_version_name": "v0.26.1" + "name": "v0.6.0-RC3", + "tag": "v0.6.0-RC3", + "height": 82570, + "next_version_name": "v0.7.0" }, { - "name": "v0.26.1", - "tag": "v0.26.1", - "height": 554249, - "next_version_name": "v0.27.0" + "name": "v0.7.0", + "tag": "v0.7.0", + "height": 102800, + "next_version_name": "v0.8.1" }, { - "name": "v0.27.0", - "tag": "v0.27.0", - "height": 590764, - "next_version_name": "v0.30.1" + "name": "v0.8.1", + "tag": "v0.8.1", + "height": 133100, + "next_version_name": "v0.9.8" }, { - "name": "v0.30.1", - "tag": "v0.30.1", - "height": 633177, - "next_version_name": "v0.30.2" + "name": "v0.9.8", + "tag": "v0.9.8", + "height": 163960, + "next_version_name": "v0.10.1" }, { - "name": "v0.30.2", - "tag": "v0.30.2", - "height": 636006, - "next_version_name": "v0.31.1" + "name": "v0.10.1", + "tag": "v0.10.1", + "height": 184620, + "next_version_name": "v0.11.2" }, { - "name": "v0.31.1", - "tag": "v0.31.1", - "height": 675100, - "next_version_name": "" + "name": "v0.11.2", + "tag": "v0.11.2", + "height": 208115, + "next_version_name": "v0.12.1", + "binaries": { + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.11.2/lavad-v0.11.2-linux-amd64" + } }, { - "name": "v0.32.0", - "tag": "v0.32.0", - "height": 711251, - "recommended_version": "v0.32.0", + "name": "v0.12.1", + "tag": "v0.12.1", + "height": 227130, + "recommended_version": "v0.12.1", "compatible_versions": [ - "v0.32.0" + "v0.12.1" ], - "cosmos_sdk_version": "0.47.6", + "cosmos_sdk_version": "0.45", "consensus": { "type": "tendermint", - "version": "0.37" + "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "3.0.1", + "ibc_go_version": "v7.2.0", "ics_enabled": [ "ics20-1" - ], - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.32.0/lavad-v0.32.0-linux-amd64" - } + ] } ] }, @@ -180,14 +177,22 @@ "apis": { "rpc": [ { - "address": "https://public-rpc.lavanet.xyz:443", + "address": "https://public-rpc-testnet2.lavanet.xyz/", "provider": "Lava" + }, + { + "address": "http://lava.rpc.t.stavr.tech:198", + "provider": "🔥STAVR🔥" } ], "rest": [ { - "address": "https://public-rpc.lavanet.xyz/rest/", + "address": "https://public-rpc-testnet2.lavanet.xyz/rest/", "provider": "Lava" + }, + { + "address": "https://lava.api.t.stavr.tech", + "provider": "🔥STAVR🔥" } ] }, @@ -197,12 +202,22 @@ "url": "https://lava.explorers.guru/", "tx_page": "https://lava.explorers.guru//transaction/${txHash}", "account_page": "https://lava.explorers.guru//account/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Lava-Testnet", + "tx_page": "https://explorer.stavr.tech/Lava-Testnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Lava-Testnet/account/${accountAddress}" + }, + { + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.org/lava-testnet", + "tx_page": "https://explorer.nodestake.org/lava-testnet/tx/${txHash}", + "account_page": "https://explorer.nodestake.org/lava-testnet/account/${accountAddress}" } ], "keywords": [ "rpc", - "api", - "modular", - "data" + "api" ] -} +} \ No newline at end of file diff --git a/testnets/mantrachaintestnet/assetlist.json b/testnets/mantrachaintestnet/assetlist.json index 86939df42d..6ab8902eee 100644 --- a/testnets/mantrachaintestnet/assetlist.json +++ b/testnets/mantrachaintestnet/assetlist.json @@ -1,25 +1,25 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "mantrachaintestnet", "assets": [ { - "description": "The native token of MANTRA Chain", + "description": "The native token of MANTRA", "denom_units": [ { - "denom": "uaum", + "denom": "uom", "exponent": 0, "aliases": [] }, { - "denom": "aum", + "denom": "om", "exponent": 6, "aliases": [] } ], - "base": "uaum", + "base": "uom", "name": "MANTRA Chain", - "display": "aum", - "symbol": "AUM", + "display": "om", + "symbol": "OM", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg" diff --git a/testnets/mantrachaintestnet/chain.json b/testnets/mantrachaintestnet/chain.json index c657fe2825..d033315e4e 100644 --- a/testnets/mantrachaintestnet/chain.json +++ b/testnets/mantrachaintestnet/chain.json @@ -1,11 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "mantrachaintestnet", "status": "live", "network_type": "testnet", - "pretty_name": "MANTRA Chain", - "chain_id": "mantrachain-testnet-1", - "bech32_prefix": "uaum", + "pretty_name": "MANTRA Hongbai Testnet", + "chain_id": "mantra-hongbai-1", + "bech32_prefix": "uom", "daemon_name": "mantrachaind", "node_home": "$HOME/.mantrachain", "key_algos": [ @@ -15,7 +15,7 @@ "fees": { "fee_tokens": [ { - "denom": "uaum", + "denom": "uom", "fixed_min_gas_price": 0, "low_gas_price": 0.001, "average_gas_price": 0.002, @@ -26,15 +26,15 @@ "staking": { "staking_tokens": [ { - "denom": "uaum" + "denom": "uom" } ] }, "codebase": { "git_repo": "https://github.com/MANTRA-Finance", - "recommended_version": "1.0.0", + "recommended_version": "3.0.0", "compatible_versions": [ - "1.0.0" + "3.0.0" ], "cosmos_sdk_version": "0.47.3", "consensus": { @@ -43,9 +43,6 @@ }, "cosmwasm_version": "0.41", "cosmwasm_enabled": true, - "genesis": { - "genesis_url": "" - }, "versions": [ { "name": "1.0.0", @@ -66,20 +63,20 @@ "peers": { "seeds": [ { - "id": "69fa5f7927f2b013f152b6dfc56324156feb1973", - "address": "34.172.80.207:26656", + "id": "d6016af7cb20cf1905bd61468f6a61decb3fd7c0", + "address": "seed.hongbai.mantrachain.io:26656", "provider": "MANTRACHAIN" } ], "persistent_peers": [ { - "id": "182a37a556ff0b6733fe58020e7746de3292492d", - "address": "5.222.198.102:26656", + "id": "da061f404690c5b6b19dd85d40fefde1fecf406c", + "address": "34.68.19.19:26656", "provider": "MANTRACHAIN" }, { - "id": "64691a4202c1ad29a416b21ce21bfc9659783406", - "address": "34.136.169.18:26656", + "id": "20db08acbcac9b7114839e63539da2802b848982", + "address": "34.72.148.3:26656", "provider": "MANTRACHAIN" } ] @@ -87,19 +84,19 @@ "apis": { "rpc": [ { - "address": "https://rpc.testnet.mantrachain.io", + "address": "https://rpc.hongbai.mantrachain.io", "provider": "MANTRACHAIN" } ], "rest": [ { - "address": "https://api.testnet.mantrachain.io", + "address": "https://api.hongbai.mantrachain.io", "provider": "MANTRACHAIN" } ], "grpc": [ { - "address": "https://grpc.testnet.mantrachain.io", + "address": "https://grpc.hongbai.mantrachain.io", "provider": "MANTRACHAIN" } ] diff --git a/testnets/migalootestnet/chain.json b/testnets/migalootestnet/chain.json index 73245c6df9..187258f0c5 100644 --- a/testnets/migalootestnet/chain.json +++ b/testnets/migalootestnet/chain.json @@ -100,4 +100,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/nibirudevnet/assetlist.json b/testnets/nibirudevnet/assetlist.json new file mode 100644 index 0000000000..04f35fa43a --- /dev/null +++ b/testnets/nibirudevnet/assetlist.json @@ -0,0 +1,33 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "nibirudevnet", + "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" + }, + "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" + } + ] + } + ] +} diff --git a/testnets/nibirudevnet/chain.json b/testnets/nibirudevnet/chain.json new file mode 100644 index 0000000000..f7852a1643 --- /dev/null +++ b/testnets/nibirudevnet/chain.json @@ -0,0 +1,142 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "nibirudevnet", + "status": "live", + "network_type": "devnet", + "website": "https://nibiru.fi/", + "pretty_name": "Nibiru", + "chain_id": "nibiru-devnet-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": { + "git_repo": "https://github.com/NibiruChain/nibiru", + "recommended_version": "v1.0.1", + "compatible_versions": ["v1.0.1"], + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-devnet-1/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": ["v1.0.0"], + "tag": "v1.0.0", + "height": 1, + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmos_sdk_version": "v0.45.5", + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "cosmwasm_path": "$HOME/.nibid/data/wasm", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" + }, + "next_version_name": "v1.0.1" + }, + { + "name": "v1.0.1", + "recommended_version": "v1.0.1", + "compatible_versions": ["v1.0.1"], + "tag": "v1.0.1", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "proposal": 2, + "height": 2753803, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + }, + "description": "A Web3 hub ushering in the next era of money", + "apis": { + "rpc": [ + { + "address": "https://rpc.devnet-1.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "rest": [ + { + "address": "https://lcd.devnet-1.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "grpc": [ + { + "address": "grpc.devnet-1.nibiru.fi:443", + "provider": "Nibiru Foundation" + } + ] + }, + "explorers": [ + { + "kind": "Nibiru Foundation", + "url": "https://explorer.nibiru.fi/nibiru-devnet-1", + "tx_page": "https://explorer.nibiru.fi/nibiru-devnet-1/tx/${txHash}", + "account_page": "https://explorer.nibiru.fi/nibiru-devnet-1/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" + } + ] +} diff --git a/testnets/nibirudevnet2/assetlist.json b/testnets/nibirudevnet2/assetlist.json new file mode 100644 index 0000000000..640dd97432 --- /dev/null +++ b/testnets/nibirudevnet2/assetlist.json @@ -0,0 +1,33 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "nibirudevnet2", + "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" + }, + "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" + } + ] + } + ] +} diff --git a/testnets/nibirudevnet2/chain.json b/testnets/nibirudevnet2/chain.json new file mode 100644 index 0000000000..7670f1ec8c --- /dev/null +++ b/testnets/nibirudevnet2/chain.json @@ -0,0 +1,142 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "nibirudevnet2", + "status": "live", + "network_type": "devnet", + "website": "https://nibiru.fi/", + "pretty_name": "Nibiru", + "chain_id": "nibiru-devnet-2", + "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": { + "git_repo": "https://github.com/NibiruChain/nibiru", + "recommended_version": "v1.0.1", + "compatible_versions": ["v1.0.1"], + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-devnet-2/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": ["v1.0.0"], + "tag": "v1.0.0", + "height": 1, + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmos_sdk_version": "v0.45.5", + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "cosmwasm_path": "$HOME/.nibid/data/wasm", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" + }, + "next_version_name": "v1.0.1" + }, + { + "name": "v1.0.1", + "recommended_version": "v1.0.1", + "compatible_versions": ["v1.0.1"], + "tag": "v1.0.1", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "proposal": 2, + "height": 2753803, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + }, + "description": "A Web3 hub ushering in the next era of money", + "apis": { + "rpc": [ + { + "address": "https://rpc.devnet-2.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "rest": [ + { + "address": "https://lcd.devnet-2.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "grpc": [ + { + "address": "grpc.devnet-2.nibiru.fi:443", + "provider": "Nibiru Foundation" + } + ] + }, + "explorers": [ + { + "kind": "Nibiru Foundation", + "url": "https://explorer.nibiru.fi/nibiru-devnet-2", + "tx_page": "https://explorer.nibiru.fi/nibiru-devnet-2/tx/${txHash}", + "account_page": "https://explorer.nibiru.fi/nibiru-devnet-2/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" + } + ] +} diff --git a/testnets/nibirutestnet/assetlist.json b/testnets/nibirutestnet/assetlist.json new file mode 100644 index 0000000000..19b90bc514 --- /dev/null +++ b/testnets/nibirutestnet/assetlist.json @@ -0,0 +1,33 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "nibirutestnet", + "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" + }, + "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" + } + ] + } + ] +} diff --git a/testnets/nibirutestnet/chain.json b/testnets/nibirutestnet/chain.json new file mode 100644 index 0000000000..f6c2a185e0 --- /dev/null +++ b/testnets/nibirutestnet/chain.json @@ -0,0 +1,142 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "nibirutestnet", + "status": "live", + "network_type": "testnet", + "website": "https://nibiru.fi/", + "pretty_name": "Nibiru", + "chain_id": "nibiru-testnet-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": { + "git_repo": "https://github.com/NibiruChain/nibiru", + "recommended_version": "v1.0.1", + "compatible_versions": ["v1.0.1"], + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-testnet-1/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": ["v1.0.0"], + "tag": "v1.0.0", + "height": 1, + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmos_sdk_version": "v0.45.5", + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "cosmwasm_path": "$HOME/.nibid/data/wasm", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" + }, + "next_version_name": "v1.0.1" + }, + { + "name": "v1.0.1", + "recommended_version": "v1.0.1", + "compatible_versions": ["v1.0.1"], + "tag": "v1.0.1", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "proposal": 2, + "height": 2753803, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + }, + "description": "A Web3 hub ushering in the next era of money", + "apis": { + "rpc": [ + { + "address": "https://rpc.testnet-1.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "rest": [ + { + "address": "https://lcd.testnet-1.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "grpc": [ + { + "address": "grpc.testnet-1.nibiru.fi:443", + "provider": "Nibiru Foundation" + } + ] + }, + "explorers": [ + { + "kind": "Nibiru Foundation", + "url": "https://explorer.nibiru.fi/nibiru-testnet-1", + "tx_page": "https://explorer.nibiru.fi/nibiru-tesnet-1/tx/${txHash}", + "account_page": "https://explorer.nibiru.fi/nibiru-testnet-1/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" + } + ] +} diff --git a/testnets/nibirutestnet2/assetlist.json b/testnets/nibirutestnet2/assetlist.json new file mode 100644 index 0000000000..dfbb5f852c --- /dev/null +++ b/testnets/nibirutestnet2/assetlist.json @@ -0,0 +1,33 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "nibirutestnet2", + "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" + }, + "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" + } + ] + } + ] +} diff --git a/testnets/nibirutestnet2/chain.json b/testnets/nibirutestnet2/chain.json new file mode 100644 index 0000000000..9f1cc7b50f --- /dev/null +++ b/testnets/nibirutestnet2/chain.json @@ -0,0 +1,142 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "nibirutestnet2", + "status": "live", + "network_type": "testnet", + "website": "https://nibiru.fi/", + "pretty_name": "Nibiru", + "chain_id": "nibiru-testnet-2", + "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": { + "git_repo": "https://github.com/NibiruChain/nibiru", + "recommended_version": "v1.0.1", + "compatible_versions": ["v1.0.1"], + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-testnet-2/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": ["v1.0.0"], + "tag": "v1.0.0", + "height": 1, + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmos_sdk_version": "v0.45.5", + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "cosmwasm_path": "$HOME/.nibid/data/wasm", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" + }, + "next_version_name": "v1.0.1" + }, + { + "name": "v1.0.1", + "recommended_version": "v1.0.1", + "compatible_versions": ["v1.0.1"], + "tag": "v1.0.1", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "proposal": 2, + "height": 2753803, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + }, + "description": "A Web3 hub ushering in the next era of money", + "apis": { + "rpc": [ + { + "address": "https://rpc.testnet-2.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "rest": [ + { + "address": "https://lcd.testnet-2.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "grpc": [ + { + "address": "grpc.testnet-2.nibiru.fi:443", + "provider": "Nibiru Foundation" + } + ] + }, + "explorers": [ + { + "kind": "Nibiru Foundation", + "url": "https://explorer.nibiru.fi/nibiru-testnet-2", + "tx_page": "https://explorer.nibiru.fi/nibiru-tesnet-2/tx/${txHash}", + "account_page": "https://explorer.nibiru.fi/nibiru-testnet-2/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" + } + ] +} diff --git a/testnets/nobletestnet/chain.json b/testnets/nobletestnet/chain.json index c2a29eb8c8..063f74e1c4 100644 --- a/testnets/nobletestnet/chain.json +++ b/testnets/nobletestnet/chain.json @@ -184,8 +184,8 @@ "explorers": [ { "kind": "mintscan", - "url": "https://testnet.mintscan.io/noble-testnet", - "tx_page": "https://testnet.mintscan.io/noble-testnet/txs/${txHash}" + "url": "https://mintscan.io/noble-testnet", + "tx_page": "https://mintscan.io/noble-testnet/txs/${txHash}" }, { "kind": "ping.pub", diff --git a/testnets/nyxtestnet/assetlist.json b/testnets/nyxtestnet/assetlist.json new file mode 100644 index 0000000000..496208030c --- /dev/null +++ b/testnets/nyxtestnet/assetlist.json @@ -0,0 +1,72 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "nyxtestnet", + "assets": [ + { + "description": "NYX Token (NYX) is the Nym Network's native staking and governance 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/nyxtestnet/images/nyx.png" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/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/nyxtestnet/images/nym_token_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.svg" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.svg", + "theme": { + "dark_mode": false, + "circle": true + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_dark.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_dark.svg", + "theme": { + "dark_mode": true, + "circle": true + } + } + ] + } + ] +} \ No newline at end of file diff --git a/testnets/nyxtestnet/chain.json b/testnets/nyxtestnet/chain.json new file mode 100644 index 0000000000..2dd887abde --- /dev/null +++ b/testnets/nyxtestnet/chain.json @@ -0,0 +1,140 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "nyxtestnet", + "status": "live", + "network_type": "testnet", + "website": "https://nymtech.net/", + "pretty_name": "Nym", + "chain_id": "sandbox", + "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": "432000s" + } + }, + "codebase": { + "git_repo": "https://github.com/nymtech/nyxd", + "recommended_version": "v0.43.0", + "compatible_versions": [ + "v0.43.0" + ], + "binaries": { + "linux/amd64": "https://github.com/nymtech/nyxd/releases/tag/v0.43.0" + }, + "genesis": { + "genesis_url": "https://rpc.sandbox.nymtech.net/genesis" + }, + "cosmwasm_enabled": true, + "versions": [ + { + "name": "v0.43.0", + "tag": "v0.43.0", + "height": 1933203, + "recommended_version": "v0.43.0", + "compatible_versions": [ + "v0.43.0" + ], + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/nymtech/nyxd/releases/tag/v0.43.0" + } + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.svg" + }, + "peers": { + "seeds": [ + { + "id": "245a4b3cf7d56697067705d519b6feddef46a3cb", + "address": "3.255.31.244:26656" + } + ], + "persistent_peers": [ + { + "id": "26f7782aff699457c8e6dd9a845e5054c9b0707e", + "address": "3.72.19.120:26656" + }, + { + "id": "82df98b4aeb7175ef60f38ef4d0c02f6317657bf", + "address": "54.78.98.91:26656" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.sandbox.nymtech.net", + "provider": "Nym" + } + ], + "rest": [ + { + "address": "https://api.sandbox.nymtech.net", + "provider": "Nym" + } + ], + "grpc": [ + { + "address": "grpc.sandbox.nymtech.net:443", + "provider": "Nym" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://sandbox-blocks.nymtech.net/sandbox", + "tx_page": "https://sandbox-blocks.nymtech.net/sandbox/tx/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.svg", + "theme": { + "dark_mode": false, + "circle": true + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_dark.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_dark.svg", + "theme": { + "dark_mode": true, + "circle": true + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.png" + } + ] +} \ No newline at end of file diff --git a/testnets/nyxtestnet/images/nym.png b/testnets/nyxtestnet/images/nym.png new file mode 100644 index 0000000000..553b25562b Binary files /dev/null and b/testnets/nyxtestnet/images/nym.png differ diff --git a/testnets/nyxtestnet/images/nym_token_dark.png b/testnets/nyxtestnet/images/nym_token_dark.png new file mode 100644 index 0000000000..d7dea7c016 Binary files /dev/null and b/testnets/nyxtestnet/images/nym_token_dark.png differ diff --git a/testnets/nyxtestnet/images/nym_token_dark.svg b/testnets/nyxtestnet/images/nym_token_dark.svg new file mode 100644 index 0000000000..8ea2dff639 --- /dev/null +++ b/testnets/nyxtestnet/images/nym_token_dark.svg @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/testnets/nyxtestnet/images/nym_token_light.png b/testnets/nyxtestnet/images/nym_token_light.png new file mode 100644 index 0000000000..f66101ce3d Binary files /dev/null and b/testnets/nyxtestnet/images/nym_token_light.png differ diff --git a/testnets/nyxtestnet/images/nym_token_light.svg b/testnets/nyxtestnet/images/nym_token_light.svg new file mode 100644 index 0000000000..244cefa38a --- /dev/null +++ b/testnets/nyxtestnet/images/nym_token_light.svg @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/testnets/nyxtestnet/images/nyx.png b/testnets/nyxtestnet/images/nyx.png new file mode 100644 index 0000000000..ee3a14acc8 Binary files /dev/null and b/testnets/nyxtestnet/images/nyx.png differ diff --git a/testnets/okp4testnet/chain.json b/testnets/okp4testnet/chain.json index d915c6d2be..1b58ec1682 100644 --- a/testnets/okp4testnet/chain.json +++ b/testnets/okp4testnet/chain.json @@ -168,4 +168,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" } ] -} +} \ No newline at end of file diff --git a/testnets/osmosistestnet/assetlist.json b/testnets/osmosistestnet/assetlist.json index e5db97b40a..7a1487dd43 100644 --- a/testnets/osmosistestnet/assetlist.json +++ b/testnets/osmosistestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../../assetlist.schema.json", + "$schema": "../assetlist.schema.json", "chain_name": "osmosistestnet", "assets": [ { @@ -16,24 +16,25 @@ "aliases": [] } ], + "type_asset": "sdk.coin", "base": "uosmo", - "name": "Osmosis", + "name": "Osmosis Testnet", "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" } + ], + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" ] }, { @@ -47,6 +48,7 @@ "exponent": 6 } ], + "type_asset": "sdk.coin", "base": "uion", "name": "Ion", "display": "ion", @@ -55,154 +57,812 @@ "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" }, + "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" + } + ], "coingecko_id": "ion", "keywords": [ "memecoin" + ] + }, + { + "description": "The native staking and governance token of the Theta testnet version of the Cosmos Hub.", + "denom_units": [ + { + "denom": "ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C", + "name": "Cosmos Hub Public Testnet", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshubtestnet", + "base_denom": "uatom", + "channel_id": "channel-3306" + }, + "chain": { + "channel_id": "channel-4156", + "path": "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/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] }, { + "description": "Circle's stablecoin on Axelar", "denom_units": [ { - "denom": "factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz", + "denom": "ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0", "exponent": 0 }, { - "denom": "willyz", + "denom": "ausdc", "exponent": 6 } ], - "base": "factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz", - "name": "Willyz", - "display": "willyz", - "symbol": "WILLYZ", + "type_asset": "ics20", + "base": "ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0", + "name": "USD Coin (Axelar)", + "display": "ausdc", + "symbol": "aUSDC.axl", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Circle" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" + }, + "provider": "Axelar" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uausdc", + "channel_id": "channel-339" + }, + "chain": { + "channel_id": "channel-4170", + "path": "transfer/channel-4170/uausdc" + } + } + ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - "keywords": [ - "memecoin" - ], "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg" + "image_sync": { + "chain_name": "ethereumtestnet", + "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, { - "description": "The native EVM, governance and staking token of the Titan Chain", + "description": "Wrapped Ether on Axelar", "denom_units": [ { - "denom": "ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6", + "denom": "ibc/1F42AC9631DBE03009219ECCFE151786F53A038DE9F7A07C709158514F1D5942", "exponent": 0, "aliases": [ - "atkx" + "eth-wei" ] }, { - "denom": "utkx", - "exponent": 12, + "denom": "weth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/1F42AC9631DBE03009219ECCFE151786F53A038DE9F7A07C709158514F1D5942", + "name": "Wrapped Ether (Axelar)", + "display": "weth", + "symbol": "ETH", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "wei" + }, + "provider": "Ethereum" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" + }, + "provider": "Axelar" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "eth-wei", + "channel_id": "channel-339" + }, + "chain": { + "channel_id": "channel-4170", + "path": "transfer/channel-4170/eth-wei" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereumtestnet", + "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + } + ] + }, + { + "description": "The native token of JUNO Chain", + "denom_units": [ + { + "denom": "ibc/31D220286E6C224C0F72D890D0EB75A228D388089EF5C4D77212344F9EAF0183", + "exponent": 0, "aliases": [ - "microtkx" + "ujunox" ] }, { - "denom": "mtkx", - "exponent": 15, + "denom": "junox", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/31D220286E6C224C0F72D890D0EB75A228D388089EF5C4D77212344F9EAF0183", + "name": "Juno Testnet", + "display": "junox", + "symbol": "JUNOX", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "junotestnet", + "base_denom": "ujunox", + "channel_id": "channel-889" + }, + "chain": { + "channel_id": "channel-5498", + "path": "transfer/channel-5498/ujunox" + } + } + ], + "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" + }, + "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 Mars Protocol", + "denom_units": [ + { + "denom": "ibc/66A7ADA623D33D0B66C6890FE3E1AF3D638D56CE2B56F8BDA210B2AA62016216", + "exponent": 0, "aliases": [ - "millitkx" + "umars" ] }, { - "denom": "tkx", - "exponent": 18 + "denom": "mars", + "exponent": 6 } ], "type_asset": "ics20", - "base": "ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6", - "name": "tkx", - "display": "tkx", - "symbol": "TKX", + "base": "ibc/66A7ADA623D33D0B66C6890FE3E1AF3D638D56CE2B56F8BDA210B2AA62016216", + "name": "Mars Hub Testnet", + "display": "mars", + "symbol": "MARS", "traces": [ { "type": "ibc", "counterparty": { - "chain_name": "titan", - "base_denom": "atkx", - "channel_id": "channel-2" + "chain_name": "marstestnet", + "base_denom": "umars", + "channel_id": "channel-28" }, "chain": { - "channel_id": "channel-5969", - "path": "transfer/channel-5969/atkx" + "channel_id": "channel-5499", + "path": "transfer/channel-5499/umars" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png" + "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/testnets/titantestnet/images/tkx.png" + "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" } ] }, { - "description": "Circle's stablecoin on Axelar", + "description": "USD Coin", "denom_units": [ { - "denom": "ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0", - "exponent": 0 + "denom": "ibc/DE6792CF9E521F6AD6E9A4BDF6225C9571A3B74ACC0A529F92BC5122A39D2E58", + "exponent": 0, + "aliases": [ + "microusdc", + "uusdc" + ] }, { - "denom": "ausdc", + "denom": "usdc", "exponent": 6 } ], "type_asset": "ics20", - "base": "ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0", - "name": "USD Coin (Axelar)", - "display": "ausdc", - "symbol": "aUSDC.axl", + "base": "ibc/DE6792CF9E521F6AD6E9A4BDF6225C9571A3B74ACC0A529F92BC5122A39D2E58", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", "traces": [ { - "type": "bridge", + "type": "synthetic", "counterparty": { - "chain_name": "ethereumtestnet", - "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" + "chain_name": "forex", + "base_denom": "USD" }, - "provider": "Axelar" + "provider": "Circle" + }, + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Circle" + }, + { + "type": "test-mintage", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "provider": "Circle" }, { "type": "ibc", "counterparty": { - "chain_name": "axelartestnet", - "base_denom": "uausdc", - "channel_id": "channel-339" + "chain_name": "nobletestnet", + "base_denom": "uusdc", + "channel_id": "channel-22" }, "chain": { - "channel_id": "channel-4170", - "path": "transfer/channel-4170/uausdc" + "channel_id": "channel-4280", + "path": "transfer/channel-4280/uusdc" } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, "images": [ { - "image_sync": { - "chain_name": "ethereumtestnet", - "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" - }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } + ] + }, + { + "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "denom_units": [ + { + "denom": "ibc/AD59D59CFB0E628E73C798415F823AB5B6257C2FE4BF67DBB5D6A677B2686E82", + "exponent": 0, + "aliases": [ + "uakt" + ] + }, + { + "denom": "akt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/AD59D59CFB0E628E73C798415F823AB5B6257C2FE4BF67DBB5D6A677B2686E82", + "name": "Sandbox", + "display": "akt", + "symbol": "AKT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "akashtestnet", + "base_denom": "uakt", + "channel_id": "channel-6" + }, + "chain": { + "channel_id": "channel-4171", + "path": "transfer/channel-4171/uakt" + } + } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" + }, + "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": "The native utility token of the Kaon testnet version of KYVE.", + "denom_units": [ + { + "denom": "ibc/AB8AF05799E299FB5C5C80781DA35887F53E029745D20E5641233DB4E6B28515", + "exponent": 0, + "aliases": [ + "tkyve" + ] + }, + { + "denom": "kyve", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/AB8AF05799E299FB5C5C80781DA35887F53E029745D20E5641233DB4E6B28515", + "name": "KYVE Kaon", + "display": "kyve", + "symbol": "KYVE", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "kyve", + "base_denom": "ukyve" + }, + "provider": "Kyve" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "kyvetestnet", + "base_denom": "tkyve", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-10", + "path": "transfer/channel-10/tkyve" + } + } + ], + "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" + }, + "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", + "image_sync": { + "chain_name": "kyve", + "base_denom": "ukyve" + } + } + ] + }, + { + "description": "QCK - native token of Quicksilver", + "denom_units": [ + { + "denom": "ibc/F37CF69589DE12342758382F8770C0852CD8D2E4519F55166EBDAF472AD667C9", + "exponent": 0, + "aliases": [ + "uqck" + ] + }, + { + "denom": "qck", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/F37CF69589DE12342758382F8770C0852CD8D2E4519F55166EBDAF472AD667C9", + "name": "Quicksilver Testnet", + "display": "qck", + "symbol": "QCK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "quicksilvertestnet", + "base_denom": "uqck", + "channel_id": "channel-20" + }, + "chain": { + "channel_id": "channel-13", + "path": "transfer/channel-13/uqck" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" + } + ] + }, + { + "description": "The native token of Chain4Energy", + "denom_units": [ + { + "denom": "ibc/E3D323CB6F427C49E56F913C853A416F6B71BAA9B0164625AD0203266F92B3ED", + "exponent": 0, + "aliases": [ + "uc4e" + ] + }, + { + "denom": "c4e", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/E3D323CB6F427C49E56F913C853A416F6B71BAA9B0164625AD0203266F92B3ED", + "name": "Chain4Energy Testnet", + "display": "c4e", + "symbol": "C4E", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "chain4energytestnet", + "base_denom": "uc4e", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-111", + "path": "transfer/channel-111/uc4e" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" + } + ] + }, + { + "description": "The XPRT token is primarily a governance token for the Persistence chain.", + "denom_units": [ + { + "denom": "ibc/754C8533F8A418B03AD5F2C6AA19D4703CF78BBAB9E2E4DDD6212AAC2E502CA6", + "exponent": 0, + "aliases": [ + "uxprt" + ] + }, + { + "denom": "xprt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/754C8533F8A418B03AD5F2C6AA19D4703CF78BBAB9E2E4DDD6212AAC2E502CA6", + "name": "Persistence Testnet", + "display": "xprt", + "symbol": "XPRT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "persistencetestnet2", + "base_denom": "uxprt", + "channel_id": "channel-7" + }, + "chain": { + "channel_id": "channel-1037", + "path": "transfer/channel-1037/uxprt" + } + } + ], + "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" + }, + "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": "The native staking token of the Xion network.", + "denom_units": [ + { + "denom": "ibc/3642669AD14386D3E38F43F30CFCA859B3E8A05BF6BD6A23DEBD2115AD1325E9", + "exponent": 0, + "aliases": [ + "microxion", + "uxion" + ] + }, + { + "denom": "XION", + "exponent": 6, + "aliases": [ + "xion" + ] + } + ], + "type_asset": "ics20", + "base": "ibc/3642669AD14386D3E38F43F30CFCA859B3E8A05BF6BD6A23DEBD2115AD1325E9", + "name": "Xion Testnet", + "display": "XION", + "symbol": "XION", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "xiontestnet", + "base_denom": "uxion", + "channel_id": "channel-12" + }, + "chain": { + "channel_id": "channel-4410", + "path": "transfer/channel-4410/uxion" + } + } + ], + "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" + } + ] + }, + { + "description": "The native token of Saga Testnet", + "denom_units": [ + { + "denom": "ibc/48384130079A5987378F5776775F8C29A02505273E777BBB99361F2BB5B577C9", + "exponent": 0, + "aliases": [ + "utsaga" + ] + }, + { + "denom": "tsaga", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/48384130079A5987378F5776775F8C29A02505273E777BBB99361F2BB5B577C9", + "name": "Saga Testnet", + "display": "tsaga", + "symbol": "TSAGA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "sagatestnet", + "base_denom": "utsaga", + "channel_id": "channel-20" + }, + "chain": { + "channel_id": "channel-4946", + "path": "transfer/channel-4946/utsaga" + } + } + ], + "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" + } + ] + }, + { + "description": "The native token of IXO Chain", + "denom_units": [ + { + "denom": "ibc/88C815D69587CF0F05E96E5E2731EA56194D73C9A02A500095294D3A5DE68F16", + "exponent": 0, + "aliases": [ + "uixo" + ] + }, + { + "denom": "ixo", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/88C815D69587CF0F05E96E5E2731EA56194D73C9A02A500095294D3A5DE68F16", + "name": "ixo", + "display": "ixo", + "symbol": "IXO", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "impacthub", + "base_denom": "uixo" + }, + "provider": "impacthub" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "impacthubtestnet", + "base_denom": "uixo", + "channel_id": "channel-10" + }, + "chain": { + "channel_id": "channel-1637", + "path": "transfer/channel-1637/uixo" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" + }, + "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" + } + ] + }, + { + "denom_units": [ + { + "denom": "factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz", + "exponent": 0 + }, + { + "denom": "willyz", + "exponent": 6 + } + ], + "base": "factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz", + "name": "Willyz", + "display": "willyz", + "symbol": "WILLYZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg" + }, + "keywords": [ + "memecoin" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg" + } + ] + }, + { + "description": "The native EVM, governance and staking token of the Titan Chain", + "denom_units": [ + { + "denom": "ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6", + "exponent": 0, + "aliases": [ + "atkx" + ] + }, + { + "denom": "utkx", + "exponent": 12, + "aliases": [ + "microtkx" + ] + }, + { + "denom": "mtkx", + "exponent": 15, + "aliases": [ + "millitkx" + ] + }, + { + "denom": "tkx", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6", + "name": "tkx", + "display": "tkx", + "symbol": "TKX", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "titan", + "base_denom": "atkx", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-5969", + "path": "transfer/channel-5969/atkx" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png" + } + ] } ] -} +} \ No newline at end of file diff --git a/testnets/osmosistestnet/chain.json b/testnets/osmosistestnet/chain.json index 69d0c6a3bf..507c3d4b8b 100644 --- a/testnets/osmosistestnet/chain.json +++ b/testnets/osmosistestnet/chain.json @@ -122,10 +122,6 @@ { "address": "https://rpc.osmotest5.osmosis.zone/", "provider": "Osmosis" - }, - { - "address": "https://rpc.testnet.osl.zone/", - "provider": "OSL" } ], "rest": [ diff --git a/testnets/permtestnet/chain.json b/testnets/permtestnet/chain.json index ed8713a856..ae9ea5eb69 100644 --- a/testnets/permtestnet/chain.json +++ b/testnets/permtestnet/chain.json @@ -4,7 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Perm Testnet", - "chain_id": "testnet-1", + "chain_id": "INVALID-ID-permtestnet-testnet-1", "bech32_prefix": "perm", "daemon_name": "permd", "node_home": "$HOME/.perm", diff --git a/testnets/persistencetestnet/chain.json b/testnets/persistencetestnet/chain.json index 90120e7fc4..2017139717 100644 --- a/testnets/persistencetestnet/chain.json +++ b/testnets/persistencetestnet/chain.json @@ -108,6 +108,10 @@ { "address": "https://persistence-testnet-rpc.polkachu.com/", "provider": "Polkachu" + }, + { + "address": "https://xprt-trpc.antrixy.org/", + "provider": "Antrix Validators" } ], "rest": [ @@ -130,12 +134,20 @@ { "address": "https://persistence-testnet-api.polkachu.com/", "provider": "Polkachu" + }, + { + "address": "https://xprt-trest.antrixy.org/", + "provider": "Antrix Validators" } ], "grpc": [ { "address": "persistence-testnet-grpc.polkachu.com:15490", "provider": "Polkachu" + }, + { + "address": "https://xprt-tgrpc.antrixy.org/", + "provider": "Antrix Validators" } ] }, diff --git a/testnets/planqtestnet/assetlist.json b/testnets/planqtestnet/assetlist.json new file mode 100644 index 0000000000..271e0ba908 --- /dev/null +++ b/testnets/planqtestnet/assetlist.json @@ -0,0 +1,33 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "planqtestnet", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Planq Network", + "denom_units": [ + { + "denom": "atplanq", + "exponent": 0 + }, + { + "denom": "tplanq", + "exponent": 18 + } + ], + "base": "atplanq", + "name": "Planq Atlas Testnet", + "display": "tplanq", + "symbol": "tPLQ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/testnets/planqtestnet/chain.json b/testnets/planqtestnet/chain.json new file mode 100644 index 0000000000..3bfd2fbdeb --- /dev/null +++ b/testnets/planqtestnet/chain.json @@ -0,0 +1,157 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "planqtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Planq Atlas Testnet", + "chain_id": "planq_7077-1", + "bech32_prefix": "plq", + "daemon_name": "planqd", + "node_home": "$HOME/.planqd", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "atplanq", + "fixed_min_gas_price": 20000000000, + "low_gas_price": 30000000000, + "average_gas_price": 35000000000, + "high_gas_price": 40000000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "atplanq" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/planq-network/planq", + "recommended_version": "v1.1.2", + "compatible_versions": [ + "v1.1.2" + ], + "binaries": { + "linux/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_windows_amd64.zip" + }, + "cosmos_sdk_version": "v0.46.3", + "consensus": { + "type": "cometbft", + "version": "0.34.33" + }, + "ibc_go_version": "5.0.2", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/planq-network/networks/main/atlas-testnet/genesis.json" + }, + "versions": [ + { + "name": "v1.1.2", + "recommended_version": "v1.1.2", + "compatible_versions": [ + "v1.1.2" + ], + "cosmos_sdk_version": "v0.46.3", + "consensus": { + "type": "cometbft", + "version": "0.34.33" + }, + "ibc_go_version": "5.0.2", + "binaries": { + "linux/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_windows_amd64.zip" + }, + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg" + }, + "peers": { + "seeds": [ + { + "id": "9bea353c3ebfcba081c45aa4c2a8929809437859", + "address": "54.37.78.240:26656", + "provider": "Planq Network" + } + ], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-atlas.planq.network", + "provider": "Planq Network" + }, + { + "address": "https://planq_testnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + } + ], + "rest": [ + { + "address": "https://rest-atlas.planq.network", + "provider": "Planq Network" + }, + { + "address": "https://planq_testnet_api.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + } + ], + "grpc": [ + { + "address": "https://grpc-atlas.planq.network", + "provider": "Planq Network" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://evm-rpc-atlas.planq.network", + "provider": "Planq Network" + }, + { + "address": "https://planq_testnet_evm.chain.whenmoonwhenlambo.money", + "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + } + ] + }, + "explorers": [ + { + "kind": "EVM", + "url": "https://evm-atlas.planq.network", + "tx_page": "https://evm-atlas.planq.network/tx/${txHash}" + }, + { + "kind": "Konsortech", + "url": "https://testnet-explorer.konsortech.xyz/planq", + "tx_page": "https://testnet-explorer.konsortech.xyz/planq/tx/${txHash}" + }, + { + "kind": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥", + "url": "https://explorer.whenmoonwhenlambo.money/planq-testnet", + "tx_page": "https://explorer.whenmoonwhenlambo.money/planq-testnet/tx/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg" + } + ] +} \ No newline at end of file diff --git a/testnets/planqtestnet/images/planq.png b/testnets/planqtestnet/images/planq.png new file mode 100644 index 0000000000..40f5b90589 Binary files /dev/null and b/testnets/planqtestnet/images/planq.png differ diff --git a/testnets/planqtestnet/images/planq.svg b/testnets/planqtestnet/images/planq.svg new file mode 100644 index 0000000000..a95f941866 --- /dev/null +++ b/testnets/planqtestnet/images/planq.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/testnets/pryzmtestnet/chain.json b/testnets/pryzmtestnet/chain.json index 15624cc27a..40ef2a18fc 100644 --- a/testnets/pryzmtestnet/chain.json +++ b/testnets/pryzmtestnet/chain.json @@ -132,4 +132,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/quasartestnet/assetlist.json b/testnets/quasartestnet/assetlist.json index 2f6988c911..742fd166b2 100644 --- a/testnets/quasartestnet/assetlist.json +++ b/testnets/quasartestnet/assetlist.json @@ -31,7 +31,7 @@ "exponent": 6 } ], - "base": "uay", + "base": "uayy", "name": "AYY", "display": "ayy", "symbol": "AYY" @@ -46,7 +46,7 @@ "exponent": 6 } ], - "base": "oro", + "base": "uoro", "name": "oro", "display": "oro", "symbol": "ORO" diff --git a/testnets/quasartestnet/chain.json b/testnets/quasartestnet/chain.json index a02496d0d8..6b6c0f68f7 100644 --- a/testnets/quasartestnet/chain.json +++ b/testnets/quasartestnet/chain.json @@ -157,7 +157,7 @@ { "address": "https://quasar-testnet-rpc.stakeandrelax.net/", "provider": "Stake and Relax" - } + } ], "rest": [ { @@ -167,7 +167,7 @@ { "address": "https://quasar-testnet-api.stakeandrelax.net/", "provider": "Stake and Relax" - } + } ], "grpc": [ { @@ -189,4 +189,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/quicksilvertestnet/chain.json b/testnets/quicksilvertestnet/chain.json index a6da0d41cb..d7d4f618ab 100644 --- a/testnets/quicksilvertestnet/chain.json +++ b/testnets/quicksilvertestnet/chain.json @@ -73,6 +73,11 @@ "id": "ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0", "address": "testnet-seeds.polkachu.com:11156", "provider": "Polkachu" + }, + { + "id": "496ac0ba20188f70f41e0a814dfd4d9a617338f8", + "address": "quicksilver-testnet-seed.ibs.team:16652", + "provider": "Inter Blockchain Services" } ], "persistent_peers": [ @@ -103,6 +108,10 @@ { "address": "https://quicksilver-testnet-rpc.polkachu.com/", "provider": "polkachu" + }, + { + "address": "https://quicksilver-testnet-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "rest": [ @@ -113,6 +122,10 @@ { "address": "https://quicksilver-testnet-api.polkachu.com/", "provider": "polkachu" + }, + { + "address": "https://quicksilver-testnet-api.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "grpc": [ @@ -144,4 +157,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/seitestnet2/chain.json b/testnets/seitestnet2/chain.json index 713915b25c..fa30121a1f 100644 --- a/testnets/seitestnet2/chain.json +++ b/testnets/seitestnet2/chain.json @@ -16,7 +16,7 @@ "fee_tokens": [ { "denom": "usei", - "fixed_min_gas_price": 0 + "fixed_min_gas_price": 0.08 } ] }, diff --git a/testnets/sgetestnet/assetlist.json b/testnets/sgetestnet/assetlist.json index 0fc112252b..078d4cb341 100644 --- a/testnets/sgetestnet/assetlist.json +++ b/testnets/sgetestnet/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/sgetestnet/chain.json b/testnets/sgetestnet/chain.json index df2afcd5b6..47f1a088d2 100644 --- a/testnets/sgetestnet/chain.json +++ b/testnets/sgetestnet/chain.json @@ -5,7 +5,7 @@ "pretty_name": "SGE Testnet", "status": "live", "network_type": "testnet", - "website": "sgenetwork.io", + "website": "https://sgenetwork.io", "bech32_prefix": "sge", "daemon_name": "usge", "node_home": "$HOME/.sged", @@ -147,4 +147,4 @@ "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" } -} +} \ No newline at end of file diff --git a/testnets/sgetestnet4/assetlist.json b/testnets/sgetestnet4/assetlist.json index 25b27f0363..0dd50a2daa 100644 --- a/testnets/sgetestnet4/assetlist.json +++ b/testnets/sgetestnet4/assetlist.json @@ -29,7 +29,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" }, "images": [ { @@ -37,9 +38,10 @@ "chain_name": "sge", "base_denom": "usge" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" } ] } ] -} +} \ No newline at end of file diff --git a/testnets/sgetestnet4/chain.json b/testnets/sgetestnet4/chain.json index 43e5b33218..5a997ac6b4 100644 --- a/testnets/sgetestnet4/chain.json +++ b/testnets/sgetestnet4/chain.json @@ -5,7 +5,7 @@ "pretty_name": "SGE Testnet4", "status": "live", "network_type": "testnet", - "website": "sgenetwork.io", + "website": "https://sgenetwork.io", "bech32_prefix": "sge", "daemon_name": "usge", "node_home": "$HOME/.sged", @@ -128,4 +128,4 @@ "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" } -} +} \ No newline at end of file diff --git a/testnets/sourcetestnet/assetlist.json b/testnets/sourcetestnet/assetlist.json index ab8123352b..06d8a76ce1 100644 --- a/testnets/sourcetestnet/assetlist.json +++ b/testnets/sourcetestnet/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/stargazetestnet/chain.json b/testnets/stargazetestnet/chain.json index 981b5fed97..26d742aac2 100644 --- a/testnets/stargazetestnet/chain.json +++ b/testnets/stargazetestnet/chain.json @@ -65,6 +65,11 @@ "id": "de00d2d65594b672469ecd65826a94ec1be80b9f", "address": "208.73.205.226:26656", "provider": "stargaze" + }, + { + "id": "496ac0ba20188f70f41e0a814dfd4d9a617338f8", + "address": "stargaze-testnet-seed.ibs.team:16652", + "provider": "Inter Blockchain Services" } ] }, @@ -73,12 +78,20 @@ { "address": "https://rpc.elgafar-1.stargaze-apis.com", "provider": "Stargaze Foundation" + }, + { + "address": "https://stargaze-testnet-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "rest": [ { "address": "https://rest.elgafar-1.stargaze-apis.com", "provider": "Stargaze Foundation" + }, + { + "address": "https://stargaze-testnet-api.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "grpc": [ diff --git a/testnets/swisstroniktestnet/assetlist.json b/testnets/swisstroniktestnet/assetlist.json index c2fa64edd0..49b87f6ada 100644 --- a/testnets/swisstroniktestnet/assetlist.json +++ b/testnets/swisstroniktestnet/assetlist.json @@ -1,32 +1,32 @@ { - "$schema": "../../assetlist.schema.json", - "chain_name": "swisstroniktestnet", - "assets": [ - { - "description": "The native currency of Swisstronik.", - "denom_units": [ - { - "denom": "uswtr", - "exponent": 0 - }, - { - "denom": "swtr", - "exponent": 18 - } - ], - "base": "uswtr", - "name": "Swisstronik Testnet", - "display": "swtr", - "symbol": "SWTR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/swisstroniktestnet/images/swisstronik.png" + "$schema": "../../assetlist.schema.json", + "chain_name": "swisstroniktestnet", + "assets": [ + { + "description": "The native currency of Swisstronik.", + "denom_units": [ + { + "denom": "uswtr", + "exponent": 0 }, - "coingecko_id": "", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/swisstroniktestnet/images/swisstronik.png" - } - ] - } - ] - } \ No newline at end of file + { + "denom": "swtr", + "exponent": 18 + } + ], + "base": "uswtr", + "name": "Swisstronik Testnet", + "display": "swtr", + "symbol": "SWTR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/swisstroniktestnet/images/swisstronik.png" + }, + "coingecko_id": "", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/swisstroniktestnet/images/swisstronik.png" + } + ] + } + ] +} \ No newline at end of file diff --git a/testnets/terpnettestnet/chain.json b/testnets/terpnettestnet/chain.json index d7e8134cf9..1b3a55f9d3 100644 --- a/testnets/terpnettestnet/chain.json +++ b/testnets/terpnettestnet/chain.json @@ -4,7 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Terp-Network", - "chain_id": "90u-2", + "chain_id": "90u-4", "bech32_prefix": "terp", "daemon_name": "terpd", "node_home": "$HOME/.terp", @@ -32,107 +32,25 @@ }, "codebase": { - "git_repo": "github.com/terpnetwork/terp-core.git", - "recommended_version": "v4.1.testnet", + "git_repo": "https://github.com/terpnetwork/terp-core", + "recommended_version": "v4.2.0", "consensus": { "type": "cometbft", "version": "v0.37.2" }, - "compatible_versions": [ - "v3-pigeonfall" - ], + "compatible_versions": [], "genesis": { - "genesis_url": "https://raw.githubusercontent.com/terpnetwork/test-net/master/90u-2/genesis.json" + "genesis_url": "https://raw.githubusercontent.com/terpnetwork/test-net/master/90u-4/genesis.json" }, "binaries": { - "linux/amd64": "https://github.com/terpnetwork/terp-core/releases/download/v4.1.testnet/terpd-linux-amd64", - "linux/arm64": "https://github.com/terpnetwork/terp-core/releases/download/v4.1.testnet/terpd-linux-arm64" + "linux/amd64": "https://github.com/terpnetwork/terp-core/releases/download/v4.2.0/terpd-linux-amd64", + "linux/arm64": "https://github.com/terpnetwork/terp-core/releases/download/v4.2.0/terpd-linux-arm64" }, "versions": [ { - "name": "v1.0.0-stable", - "recommended_version": "v1.0.0-stable", - "compatible_versions": [ - "v1.0.0", - "v1.0.0-stable" - ], - "consensus": { - "type": "cometbft", - "version": "0.37.0" - } - }, - { - "name": "huckleberry", - "recommended_version": "huckleberry", - "compatible_versions": [ - "huckleberry" - ], - "consensus": { - "type": "cometbft", - "version": "0.37.0" - } - }, - { - "name": "barberry", - "recommended_version": "barberry", - "compatible_versions": [ - "barberry" - ], - "consensus": { - "type": "cometbft", - "version": "0.37.1" - } - }, - { - "name": "v2.0.0", - "recommended_version": "v2.0.0", - "compatible_versions": [ - "v2.0.0" - ], - "consensus": { - "type": "cometbft", - "version": "0.37.2" - } - }, - { - "name": "v3.0.0", - "recommended_version": "v3.0.0", - "compatible_versions": [ - "v3.0.0" - ], - "consensus": { - "type": "cometbft", - "version": "0.37.2" - } - }, - { - "name": "v2-pigeonfall", - "recommended_version": "v2-pigeonfall", - "compatible_versions": [ - "v2-pigeonfall" - ], - "consensus": { - "type": "cometbft", - "version": "0.37.2" - } - }, - { - "name": "v3-pigeonfall", - "recommended_version": "v3-pigeonfall", - "compatible_versions": [ - "v3-pigeonfall" - ], - "consensus": { - "type": "cometbft", - "version": "0.37.2" - } - }, - { - "name": "v4.1.testnet", - "recommended_version": "v4.1.testnet", - "compatible_versions": [ - "v4.1.testnet" - ], + "name": "v4.2.0", + "recommended_version": "v4.2.0", + "compatible_versions": [], "consensus": { "type": "cometbft", "version": "0.37.2" @@ -143,6 +61,10 @@ "peers": { "seeds": [], "persistent_peers": [ + { + "id": "9e194721d68dd28d3c4b625c17b2cb287ef30327", + "address": "testnet-peer.terp.network:26656" + }, { "id": "15f5bc75be9746fd1f712ca046502cae8a0f6ce7", "address": "terp-testnet.nodejumper.io:30656" @@ -155,12 +77,20 @@ }, "apis": { "rpc": [ + { + "address": "https://testnet-rpc.terp.network:443/", + "provider": "Terpnet Foundation" + }, { "address": "https://terp-testnet-rpc.itrocket.net:443/", "provider": "itrocket" } ], "rest": [ + { + "address": "https://testnet-api.terp.network:443/", + "provider": "Terpnet Foundation" + }, { "address": "https://terp-testnet-api.itrocket.net:443/", "provider": "itrocket" diff --git a/testnets/terpnettestnet2/assetlist.json b/testnets/terpnettestnet2/assetlist.json new file mode 100644 index 0000000000..2c6ea775df --- /dev/null +++ b/testnets/terpnettestnet2/assetlist.json @@ -0,0 +1,56 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "terpnettestnet2", + "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" + } + ] + } + ] +} \ No newline at end of file diff --git a/testnets/terpnettestnet2/chain.json b/testnets/terpnettestnet2/chain.json new file mode 100644 index 0000000000..bd16bd70b4 --- /dev/null +++ b/testnets/terpnettestnet2/chain.json @@ -0,0 +1,191 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "terpnettestnet2", + "status": "live", + "network_type": "testnet", + "pretty_name": "Terp-Network", + "chain_id": "90u-2", + "bech32_prefix": "terp", + "daemon_name": "terpd", + "node_home": "$HOME/.terp", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uthiolx", + "fixed_min_gas_price": 0.5, + "low_gas_price": 0.75, + "average_gas_price": 1, + "high_gas_price": 1.25 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uterpx" + } + ] + }, + + "codebase": { + "git_repo": "https://github.com/terpnetwork/terp-core", + "recommended_version": "v4.1.testnet", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "compatible_versions": [], + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/terpnetwork/test-net/master/90u-2/genesis.json" + }, + "binaries": { + "linux/amd64": "https://github.com/terpnetwork/terp-core/releases/download/v4.1.testnet/terpd-linux-amd64", + "linux/arm64": "https://github.com/terpnetwork/terp-core/releases/download/v4.1.testnet/terpd-linux-arm64" + }, + "versions": [ + { + "name": "v1.0.0-stable", + "recommended_version": "v1.0.0-stable", + "compatible_versions": [ + "v1.0.0", + "v1.0.0-stable" + ], + "consensus": { + "type": "cometbft", + "version": "0.37.0" + } + }, + { + "name": "huckleberry", + "recommended_version": "huckleberry", + "compatible_versions": [ + "huckleberry" + ], + "consensus": { + "type": "cometbft", + "version": "0.37.0" + } + }, + { + "name": "barberry", + "recommended_version": "barberry", + "compatible_versions": [ + "barberry" + ], + "consensus": { + "type": "cometbft", + "version": "0.37.1" + } + }, + { + "name": "v2.0.0", + "recommended_version": "v2.0.0", + "compatible_versions": [ + "v2.0.0" + ], + "consensus": { + "type": "cometbft", + "version": "0.37.2" + } + }, + { + "name": "v3.0.0", + "recommended_version": "v3.0.0", + "compatible_versions": [ + "v3.0.0" + ], + "consensus": { + "type": "cometbft", + "version": "0.37.2" + } + }, + { + "name": "v2-pigeonfall", + "recommended_version": "v2-pigeonfall", + "compatible_versions": [ + "v2-pigeonfall" + ], + "consensus": { + "type": "cometbft", + "version": "0.37.2" + } + }, + { + "name": "v3-pigeonfall", + "recommended_version": "v3-pigeonfall", + "compatible_versions": [ + "v3-pigeonfall" + ], + "consensus": { + "type": "cometbft", + "version": "0.37.2" + } + }, + { + "name": "v4.1.testnet", + "recommended_version": "v4.1.testnet", + "compatible_versions": [ + "v4.1.testnet" + ], + "consensus": { + "type": "cometbft", + "version": "0.37.2" + } + } + ] + }, + "peers": { + "seeds": [], + "persistent_peers": [ + { + "id": "9e194721d68dd28d3c4b625c17b2cb287ef30327", + "address": "testnet-peer.terp.network:26656" + }, + { + "id": "15f5bc75be9746fd1f712ca046502cae8a0f6ce7", + "address": "terp-testnet.nodejumper.io:30656" + }, + { + "id": "51d48be3809bb8907c1ef5f747e53cdd0c9ded1b", + "address": "terp-testnet-peer.itrocket.net:443" + } + ] + }, + "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}" + } + ] +} diff --git a/testnets/titantestnet/assetlist.json b/testnets/titantestnet/assetlist.json index 304053e8fd..3aeb7d5e89 100644 --- a/testnets/titantestnet/assetlist.json +++ b/testnets/titantestnet/assetlist.json @@ -43,7 +43,10 @@ ], "keywords": [ "staking" - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png" + } } ] } \ No newline at end of file diff --git a/testnets/titantestnet/chain.json b/testnets/titantestnet/chain.json index bdc937ceed..f52ede7e4a 100644 --- a/testnets/titantestnet/chain.json +++ b/testnets/titantestnet/chain.json @@ -3,7 +3,7 @@ "chain_name": "titantestnet", "status": "live", "network_type": "testnet", - "website": "https://tokenize.exchange/", + "website": "https://titanlab.io/", "pretty_name": "Titan Testnet", "chain_id": "titan_18889-1", "bech32_prefix": "titan", @@ -35,13 +35,12 @@ ] }, "codebase": { - "git_repo": "https://github.com/tokenize-titan/titan", - "recommended_version": "v1.0.0", + "git_repo": "https://github.com/titantkx/titan", + "recommended_version": "v2.0.1", "compatible_versions": [ - "v1.0.0-alpha.1", - "v1.0.0" + "v2.0.1" ], - "cosmos_sdk_version": "0.47.6-titan.3", + "cosmos_sdk_version": "0.47.6-titan.4", "consensus": { "type": "cometbft", "version": "0.37.4" @@ -54,13 +53,14 @@ "ics27-1" ], "genesis": { - "genesis_url": "https://raw.githubusercontent.com/tokenize-titan/titan-testnets/main/public/genesis.json" + "genesis_url": "https://raw.githubusercontent.com/titantkx/titan-testnets/main/public/genesis.json" }, "versions": [ { "name": "v1.0.0", "tag": "v1.0.0", "height": 0, + "next_version_name": "v2.0.0", "recommended_version": "v1.0.0", "compatible_versions": [ "v1.0.0-alpha.1", @@ -78,6 +78,49 @@ "ics20-1", "ics27-1" ] + }, + { + "name": "v2.0.0", + "tag": "v2.0.0", + "height": 727408, + "next_version_name": "v2.0.1", + "recommended_version": "v2.0.0", + "compatible_versions": [ + "v2.0.0" + ], + "cosmos_sdk_version": "0.47.6-titan.4", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "ibc_go_version": "7.3.0", + "cosmwasm_version": "0.45.0", + "cosmwasm_enabled": true, + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + { + "name": "v2.0.1", + "tag": "v2.0.1", + "height": 967678, + "recommended_version": "v2.0.1", + "compatible_versions": [ + "v2.0.1" + ], + "cosmos_sdk_version": "0.47.6-titan.4", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "ibc_go_version": "7.3.0", + "cosmwasm_version": "0.45.0", + "cosmwasm_enabled": true, + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] } ] }, @@ -91,39 +134,39 @@ "seeds": [ { "id": "1f61a190809e4413079174b6236bc00a502722b6", - "address": "titan-testnet-node-1.tokenize-dev.com:26656", + "address": "titan-testnet-node-1.titanlab.io:26656", "provider": "Titanlab.io" }, { "id": "c580270d0741f08d8ed88eda5d7de272622e7c02", - "address": "titan-testnet-node-2.tokenize-dev.com:26656", + "address": "titan-testnet-node-2.titanlab.io:26656", "provider": "Titanlab.io" }, { "id": "acb90d29636059abd5c4ca36f3731a69de73cf5b", - "address": "titan-testnet-seed-1.tokenize-dev.com:26656", + "address": "titan-testnet-seed-1.titanlab.io:26656", "provider": "Titanlab.io" }, { "id": "0e05f4f0c57ed26089e1d10dba6a1ac24e1eaa68", - "address": "titan-testnet-full-1.tokenize-dev.com:26656", + "address": "titan-testnet-full-1.titanlab.io:26656", "provider": "Titanlab.io" } ], "persistent_peers": [ { "id": "1f61a190809e4413079174b6236bc00a502722b6", - "address": "titan-testnet-node-1.tokenize-dev.com:26656", + "address": "titan-testnet-node-1.titanlab.io:26656", "provider": "Titanlab.io" }, { "id": "c580270d0741f08d8ed88eda5d7de272622e7c02", - "address": "titan-testnet-node-2.tokenize-dev.com:26656", + "address": "titan-testnet-node-2.titanlab.io:26656", "provider": "Titanlab.io" }, { "id": "0e05f4f0c57ed26089e1d10dba6a1ac24e1eaa68", - "address": "titan-testnet-full-1.tokenize-dev.com:26656", + "address": "titan-testnet-full-1.titanlab.io:26656", "provider": "Titanlab.io" } ] @@ -131,40 +174,52 @@ "apis": { "rpc": [ { - "address": "https://titan-testnet-rpc-1.tokenize-dev.com:443", + "address": "https://titan-testnet-rpc.titanlab.io:443", "provider": "Titanlab.io" }, { - "address": "https://titan-testnet-rpc-2.tokenize-dev.com:443", + "address": "https://titan-testnet-rpc-1.titanlab.io:443", "provider": "Titanlab.io" }, { - "address": "https://titan-testnet-rpc-3.tokenize-dev.com:443", + "address": "https://titan-testnet-rpc-2.titanlab.io:443", "provider": "Titanlab.io" }, { - "address": "https://titan-testnet-rpc-4.tokenize-dev.com:443", + "address": "https://titan-testnet-rpc-3.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-testnet-rpc-4.titanlab.io:443", "provider": "Titanlab.io" } ], "rest": [ { - "address": "https://titan-testnet-lcd-1.tokenize-dev.com:443", + "address": "https://titan-testnet-lcd.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-testnet-lcd-1.titanlab.io:443", "provider": "Titanlab.io" }, { - "address": "https://titan-testnet-lcd-1.tokenize-dev.com:443", + "address": "https://titan-testnet-lcd-2.titanlab.io:443", "provider": "Titanlab.io" } ], "grpc": [], "evm-http-jsonrpc": [ { - "address": "https://titan-testnet-json-rpc-1.tokenize-dev.com:443", + "address": "https://titan-testnet-json-rpc.titanlab.io:443", "provider": "Titanlab.io" }, { - "address": "https://titan-testnet-json-rpc-2.tokenize-dev.com:443", + "address": "https://titan-testnet-json-rpc-1.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-testnet-json-rpc-2.titanlab.io:443", "provider": "Titanlab.io" } ] @@ -172,9 +227,13 @@ "explorers": [ { "kind": "ping.pub", - "url": "https://titan-testnet-explorer-light.tokenize-dev.com", - "tx_page": "https://titan-testnet-explorer-light.tokenize-dev.com/Titan%20Testnet/tx/${txHash}", - "account_page": "https://titan-testnet-explorer-light.tokenize-dev.com/Titan%20Testnet/account/${accountAddress}" + "url": "https://titan-testnet-explorer-light.titanlab.io", + "tx_page": "https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/tx/${txHash}", + "account_page": "https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/account/${accountAddress}" } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/chain.svg" + } } \ No newline at end of file diff --git a/testnets/ulastestnet/assetlist.json b/testnets/ulastestnet/assetlist.json index 1c2c4a0879..72fc835f1d 100644 --- a/testnets/ulastestnet/assetlist.json +++ b/testnets/ulastestnet/assetlist.json @@ -16,7 +16,7 @@ ], "base": "uulas", "name": "ULAS Network", - "display": "ULAS", + "display": "ulas", "symbol": "ULAS", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png" diff --git a/testnets/uniontestnet/assetlist.json b/testnets/uniontestnet/assetlist.json index 409c0084c0..861c915621 100644 --- a/testnets/uniontestnet/assetlist.json +++ b/testnets/uniontestnet/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "uniontestnet", "assets": [ { - "description": "The native token of union", + "description": "Union native token", "denom_units": [ { "denom": "muno", @@ -17,19 +17,19 @@ } ], "base": "muno", - "name": "union", - "display": "union", - "symbol": "UNION", + "name": "Union", + "display": "uno", + "symbol": "UNO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/uniontestnet/images/union.png" }, - "coingecko_id": "unionlabs", + "coingecko_id": "", "keywords": [ "staking" ], "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/uniontestnet/images/union.png" } ] } diff --git a/testnets/uniontestnet/chain.json b/testnets/uniontestnet/chain.json index 03a8e4b75b..75fcae527b 100644 --- a/testnets/uniontestnet/chain.json +++ b/testnets/uniontestnet/chain.json @@ -3,8 +3,8 @@ "chain_name": "uniontestnet", "status": "live", "network_type": "testnet", - "pretty_name": "union Testnet", - "chain_id": "union-testnet-6", + "pretty_name": "Union Testnet", + "chain_id": "union-testnet-8", "bech32_prefix": "union", "daemon_name": "uniond", "node_home": "$HOME/.uniond", @@ -33,17 +33,17 @@ "peers": { "seeds": [ { - "id": "f1d2674dc111d99dae4638234c502f4a4aaf8270", - "address": "union.testnet.4.val.poisonphang.com:2665", - "provider": "" + "id": "c2bf0d5b2ad3a1df0f4e9cc32debffa239c0af90", + "address": "testnet.seed.poisonphang.com:26656", + "provider": "poisonphang" } ] }, "apis": { "rpc": [ { - "address": "https://rpc.cryptware.io", - "provider": "cryptware" + "address": "https://rpc.testnet.bonlulu.uno", + "provider": "bonlulu" }, { "address": "https://union-testnet-rpc.polkachu.com", @@ -54,14 +54,14 @@ "provider": "Nodeist" }, { - "address": "https://rpc.testnet.bonlulu.uno", - "provider": "bonlulu" + "address": "https://union-testnet-rpc.itrocket.net", + "provider": "ITRocket" } ], "rest": [ { - "address": "https://api.cryptware.io", - "provider": "cryptware" + "address": "https://api.testnet.bonlulu.uno", + "provider": "bonlulu" }, { "address": "https://union-testnet-api.polkachu.com", @@ -72,14 +72,14 @@ "provider": "Nodeist" }, { - "address": "https://api.testnet.bonlulu.uno", - "provider": "bonlulu" + "address": "https://union-testnet-api.itrocket.net", + "provider": "ITRocket" } ], "grpc": [ { - "address": "https://grpc.cryptware.io", - "provider": "cryptware" + "address": "https://grpc.testnet.bonlulu.uno", + "provider": "bonlulu" }, { "address": "http://union-testnet-grpc.polkachu.com:24690", @@ -90,20 +90,26 @@ "provider": "Nodeist" }, { - "address": "https://grpc.testnet.bonlulu.uno", - "provider": "bonlulu" + "address": "http://union-testnet-grpc.itrocket.net:23090", + "provider": "ITRocket" } ] }, "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/uniontestnet/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}" + "url": "https://testnet.bonlulu.uno/union", + "tx_page": "https://testnet.bonlulu.uno/union/tx/${txHash}", + "account_page": "https://testnet.bonlulu.uno/union/account/${accountAddress}" + }, + { + "kind": "explorers.guru", + "url": "https://testnet.union.explorers.guru", + "tx_page": "https://testnet.union.explorers.guru/transaction/${txHash}", + "account_page": "https://testnet.union.explorers.guru/account/${accountAddress}" } ], "keywords": [ @@ -111,7 +117,7 @@ ], "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/uniontestnet/images/union.png" } ] } diff --git a/testnets/vincechaintestnet/chain.json b/testnets/vincechaintestnet/chain.json index 8ad0654824..1eb0c587f7 100644 --- a/testnets/vincechaintestnet/chain.json +++ b/testnets/vincechaintestnet/chain.json @@ -34,38 +34,9 @@ }, "codebase": { "git_repo": "https://github.com/AyrisDev/vinceChain_Blockchain", - "recommended_version": "", - "compatible_versions": [ - "", - "" - ], - "binaries": { - "linux/amd64": "", - "linux/arm64": "", - "darwin/amd64": "", - "darwin/arm64": "", - "windows/amd64": "" - }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/AyrisDev/vinceChain_Blockchain/master/genesis.json" - }, - "versions": [ - { - "name": "", - "recommended_version": "", - "compatible_versions": [ - "", - "" - ], - "binaries": { - "linux/amd64": "", - "linux/arm64": "", - "darwin/amd64": "", - "darwin/arm64": "", - "windows/amd64": "" - } - } - ] + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" diff --git a/testnets/wardenprotocoltestnet/assetlist.json b/testnets/wardenprotocoltestnet/assetlist.json index a11438cd9c..4ca0ef939b 100644 --- a/testnets/wardenprotocoltestnet/assetlist.json +++ b/testnets/wardenprotocoltestnet/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/wardenprotocoltestnet/chain.json b/testnets/wardenprotocoltestnet/chain.json index 7cf5245ebe..f56ddc4c71 100644 --- a/testnets/wardenprotocoltestnet/chain.json +++ b/testnets/wardenprotocoltestnet/chain.json @@ -3,8 +3,8 @@ "chain_name": "wardenprotocoltestnet", "status": "live", "network_type": "testnet", - "pretty_name": "Warden Protocol Alfama Testnet", - "chain_id": "alfama", + "pretty_name": "Warden Protocol Buenavista", + "chain_id": "buenavista-1", "bech32_prefix": "warden", "daemon_name": "wardend", "node_home": "$HOME/.warden", @@ -32,9 +32,9 @@ }, "codebase": { "git_repo": "https://github.com/warden-protocol/wardenprotocol", - "recommended_version": "v0.1.0", + "recommended_version": "v0.3.0", "compatible_versions": [ - "v0.1.0" + "v0.3.0" ], "cosmos_sdk_version": "0.50", "consensus": { @@ -43,14 +43,14 @@ }, "cosmwasm_enabled": false, "genesis": { - "genesis_url": "https://raw.githubusercontent.com/warden-protocol/networks/main/testnet-alfama/genesis.json" + "genesis_url": "https://raw.githubusercontent.com/warden-protocol/networks/main/testnets/buenavista/genesis.json" }, "versions": [ { - "name": "v0.1.0", - "recommended_version": "v0.1.0", + "name": "v0.3.0", + "recommended_version": "v0.3.0", "compatible_versions": [ - "v0.1.0" + "v0.3.0" ], "cosmos_sdk_version": "0.50", "consensus": { @@ -62,53 +62,33 @@ ] }, "peers": { - "seeds": [ - ], - "persistent_peers": [ - { - "id": "6a8de92a3bb422c10f764fe8b0ab32e1e334d0bd", - "address": "sentry-1.alfama.wardenprotocol.org:26656", - "provider": "Warden Protocol" - }, - { - "id": "7560460b016ee0867cae5642adace5d011c6c0ae", - "address": "sentry-2.alfama.wardenprotocol.org:26656", - "provider": "Warden Protocol" - }, - { - "id": "24ad598e2f3fc82630554d98418d26cc3edf28b9", - "address": "sentry-3.alfama.wardenprotocol.org:26656", - "provider": "Warden Protocol" - } - ] + "seeds": [], + "persistent_peers": [] }, "apis": { "rpc": [ { - "address": "https://rpc.alfama.wardenprotocol.org/", + "address": "https://rpc.buenavista.wardenprotocol.org/", "provider": "Warden Protocol" } ], "rest": [ { - "address": "https://rest.alfama.wardenprotocol.org/", + "address": "https://api.buenavista.wardenprotocol.org/", "provider": "Warden Protocol" } ], "grpc": [ + { + "address": "https://grpc.buenavista.wardenprotocol.org/", + "provider": "Warden Protocol" + } ] }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png" }, - "explorers": [ - { - "kind": "ping.pub", - "url": "https://warden-explorer.paranorm.pro/warden", - "tx_page": "https://warden-explorer.paranorm.pro/warden/tx/${txHash}", - "account_page": "https://warden-explorer.paranorm.pro/warden/account/${accountAddress}" - } - ], + "explorers": [], "keywords": [ "testnet" ], @@ -117,4 +97,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png" } ] -} +} \ No newline at end of file diff --git a/testnets/wavehashtestnet/chain.json b/testnets/wavehashtestnet/chain.json index 81d97b6645..7129e6dea0 100644 --- a/testnets/wavehashtestnet/chain.json +++ b/testnets/wavehashtestnet/chain.json @@ -4,7 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "wavehash Testnet", - "chain_id": "testnet-1", + "chain_id": "INVALID-ID-wavehashtestnet-testnet-1", "bech32_prefix": "wavehash", "daemon_name": "wavehashd", "node_home": "$HOME/.wavehash", diff --git a/testnets/xiontestnet/assetlist.json b/testnets/xiontestnet/assetlist.json index d2f864f645..37ee66ce1b 100644 --- a/testnets/xiontestnet/assetlist.json +++ b/testnets/xiontestnet/assetlist.json @@ -36,7 +36,7 @@ { "denom_units": [ { - "denom": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", + "denom": "ibc/05007A23A23D8B3D286EC4A541189D86C0B76FD769008E4C85EBE977DDA437D3", "exponent": 0, "aliases": [ "uaxl" @@ -48,7 +48,7 @@ } ], "type_asset": "ics20", - "base": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", + "base": "ibc/05007A23A23D8B3D286EC4A541189D86C0B76FD769008E4C85EBE977DDA437D3", "name": "Axelar AXL Token", "display": "axl", "symbol": "AXL", @@ -58,11 +58,11 @@ "counterparty": { "chain_name": "axelartestnet", "base_denom": "uaxl", - "channel_id": "channel-283" + "channel_id": "channel-462" }, "chain": { - "channel_id": "channel-5", - "path": "transfer/channel-5/uaxl" + "channel_id": "channel-486", + "path": "transfer/channel-486/uaxl" } } ], @@ -84,7 +84,7 @@ { "denom_units": [ { - "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", + "denom": "ibc/484532EB74866F3FB8A71F909F7B1B470FE2E66313DA0A1F9EE5B7C5C046D195", "exponent": 0, "aliases": [ "uosmo" @@ -96,7 +96,7 @@ } ], "type_asset": "ics20", - "base": "ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B", + "base": "ibc/484532EB74866F3FB8A71F909F7B1B470FE2E66313DA0A1F9EE5B7C5C046D195", "name": "Osmosis OSMO Token", "display": "osmo", "symbol": "OSMO", @@ -106,11 +106,11 @@ "counterparty": { "chain_name": "osmosistestnet", "base_denom": "uosmo", - "channel_id": "channel-1299" + "channel_id": "channel-6668" }, "chain": { - "channel_id": "channel-8", - "path": "transfer/channel-8/uosmo" + "channel_id": "channel-490", + "path": "transfer/channel-490/uosmo" } } ], @@ -132,7 +132,7 @@ { "denom_units": [ { - "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "denom": "ibc/57097251ED81A232CE3C9D899E7C8096D6D87EF84BA203E12E424AA4C9B57A64", "exponent": 0, "aliases": [ "uusdc" @@ -144,7 +144,7 @@ } ], "type_asset": "ics20", - "base": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "base": "ibc/57097251ED81A232CE3C9D899E7C8096D6D87EF84BA203E12E424AA4C9B57A64", "name": "Noble USDC Token", "display": "usdc", "symbol": "USDC", @@ -154,11 +154,11 @@ "counterparty": { "chain_name": "nobletestnet", "base_denom": "uusdc", - "channel_id": "channel-17" + "channel_id": "channel-147" }, "chain": { - "channel_id": "channel-9", - "path": "transfer/channel-9/uusdc" + "channel_id": "channel-489", + "path": "transfer/channel-489/uusdc" } } ], @@ -178,7 +178,7 @@ { "denom_units": [ { - "denom": "ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191", + "denom": "ibc/05314A48723E06A1B1B666066B6BEC89F3708E8854DF2E5E9193387AA9653036", "exponent": 0, "aliases": [ "inj" @@ -190,7 +190,7 @@ } ], "type_asset": "ics20", - "base": "ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191", + "base": "ibc/05314A48723E06A1B1B666066B6BEC89F3708E8854DF2E5E9193387AA9653036", "name": "Injective INJ token", "display": "INJ", "symbol": "INJ", @@ -200,11 +200,11 @@ "counterparty": { "chain_name": "injectivetestnet", "base_denom": "inj", - "channel_id": "channel-324" + "channel_id": "channel-489" }, "chain": { - "channel_id": "channel-215", - "path": "transfer/channel-215/inj" + "channel_id": "channel-487", + "path": "transfer/channel-487/inj" } } ], @@ -214,12 +214,14 @@ "chain_name": "injectivetestnet", "base_denom": "inj" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png" } ], "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" } } ] -} +} \ No newline at end of file diff --git a/testnets/xiontestnet/chain.json b/testnets/xiontestnet/chain.json index a2d849729c..75d41a9429 100644 --- a/testnets/xiontestnet/chain.json +++ b/testnets/xiontestnet/chain.json @@ -32,16 +32,16 @@ }, "codebase": { "git_repo": "https://github.com/burnt-labs/xion", - "recommended_version": "v0.3.4", + "recommended_version": "v0.3.9", "compatible_versions": [ - "v0.3.4" + "v0.3.9" ], - "cosmos_sdk_version": "0.47.5", + "cosmos_sdk_version": "0.47.10", "consensus": { "type": "cometbft", - "version": "0.37.2" + "version": "0.37.4" }, - "cosmwasm_version": "0.43.0", + "cosmwasm_version": "0.45.1", "cosmwasm_enabled": true, "genesis": { "genesis_url": "https://raw.githubusercontent.com/burnt-labs/burnt-networks/main/testnets/xion-testnet-1/genesis.json" @@ -50,6 +50,7 @@ { "name": "v0.1.0", "tag": "v0.1.0", + "height": 0, "recommended_version": "v0.1.0", "cosmos_sdk_version": "0.47.0", "cosmwasm_enabled": true, @@ -77,7 +78,7 @@ { "name": "v0.3.3", "tag": "v0.3.3", - "height": 1929544, + "height": 2147030, "recommended_version": "v0.3.3", "cosmos_sdk_version": "0.47.3", "cosmwasm_enabled": true, @@ -91,7 +92,7 @@ { "name": "v0.3.4", "tag": "v0.3.4", - "height": 1929544, + "height": 3278095, "recommended_version": "v0.3.4", "cosmos_sdk_version": "0.47.5", "cosmwasm_enabled": true, @@ -101,6 +102,48 @@ "type": "cometbft", "version": "0.37.2" } + }, + { + "name": "v0.3.7", + "tag": "v0.3.7", + "height": 6887750, + "recommended_version": "v0.3.7", + "cosmos_sdk_version": "0.47.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45.0", + "ibc_go_version": "v7.3.1", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + } + }, + { + "name": "v0.3.8", + "tag": "v0.3.8", + "height": 7130100, + "recommended_version": "v0.3.8", + "cosmos_sdk_version": "0.47.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45.0", + "ibc_go_version": "v7.3.1", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + } + }, + { + "name": "v0.3.9", + "tag": "v0.3.9", + "height": 7438800, + "recommended_version": "v0.3.9", + "cosmos_sdk_version": "0.47.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45.1", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + } } ] }, @@ -175,4 +218,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" } ] -} +} \ No newline at end of file diff --git a/tgrade/chain.json b/tgrade/chain.json index 14d2d9e83c..7dd88d994f 100644 --- a/tgrade/chain.json +++ b/tgrade/chain.json @@ -114,4 +114,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg" } ] -} +} \ No newline at end of file diff --git a/titan/assetlist.json b/titan/assetlist.json new file mode 100644 index 0000000000..98c5befad6 --- /dev/null +++ b/titan/assetlist.json @@ -0,0 +1,53 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "titan", + "assets": [ + { + "description": "The native token of the Titan network.", + "denom_units": [ + { + "denom": "atkx", + "exponent": 0, + "aliases": [ + "attotkx" + ] + }, + { + "denom": "utkx", + "exponent": 12, + "aliases": [ + "microtkx" + ] + }, + { + "denom": "mtkx", + "exponent": 15, + "aliases": [ + "millitkx" + ] + }, + { + "denom": "tkx", + "exponent": 18, + "aliases": [] + } + ], + "base": "atkx", + "display": "tkx", + "name": "titan tkx", + "symbol": "TKX", + "coingecko_id": "tokenize-xchange", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/titan/images/tkx.png" + } + ], + "keywords": [ + "staking" + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/titan/images/tkx.png" + } + } + ] +} \ No newline at end of file diff --git a/titan/chain.json b/titan/chain.json new file mode 100644 index 0000000000..ea630d417e --- /dev/null +++ b/titan/chain.json @@ -0,0 +1,222 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "titan", + "status": "live", + "network_type": "mainnet", + "website": "https://titanlab.io/", + "pretty_name": "Titan", + "chain_id": "titan_18888-1", + "bech32_prefix": "titan", + "node_home": "$HOME/.titand", + "daemon_name": "titand", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "atkx", + "fixed_min_gas_price": 100000000000, + "low_gas_price": 100000000000, + "average_gas_price": 110000000000, + "high_gas_price": 200000000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "atkx" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/titantkx/titan", + "recommended_version": "v2.0.1", + "compatible_versions": [ + "v2.0.1" + ], + "cosmos_sdk_version": "0.47.6-titan.4", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "ibc_go_version": "7.3.0", + "cosmwasm_version": "0.45.0", + "cosmwasm_enabled": true, + "ics_enabled": [ + "ics20-1", + "ics27-1" + ], + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/titantkx/titan-mainnet/main/public/genesis.json" + }, + "versions": [ + { + "name": "v2.0.1", + "tag": "v2.0.1", + "height": 0, + "recommended_version": "v2.0.1", + "compatible_versions": [ + "v2.0.1" + ], + "cosmos_sdk_version": "0.47.6-titan.4", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "ibc_go_version": "7.3.0", + "cosmwasm_version": "0.45.0", + "cosmwasm_enabled": true, + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } + ] + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/titan/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/titan/images/chain.svg" + } + ], + "peers": { + "seeds": [ + { + "id": "cf2f46da018e9b61c2db74012bd930d292478bb6", + "address": "titan-p2p-1.titanlab.io:26656", + "provider": "Titanlab.io" + }, + { + "id": "0538c914eccc67a335eb64d99406c71ba7b110ca", + "address": "titan-p2p-2.titanlab.io:26656", + "provider": "Titanlab.io" + }, + { + "id": "bee5ef5680cf90fe40d6cde872cdc52e53c8338d", + "address": "titan-p2p-seed-1.titanlab.io:26656", + "provider": "Titanlab.io" + }, + { + "id": "a7e03c50f9b85ac2c9488d20913a37c2d1a9361c", + "address": "titan-p2p-seed-1-seoul.titanlab.io:26656", + "provider": "Titanlab.io" + } + ], + "persistent_peers": [ + { + "id": "cf2f46da018e9b61c2db74012bd930d292478bb6", + "address": "titan-p2p-1.titanlab.io:26656", + "provider": "Titanlab.io" + }, + { + "id": "0538c914eccc67a335eb64d99406c71ba7b110ca", + "address": "titan-p2p-2.titanlab.io:26656", + "provider": "Titanlab.io" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://titan-rpc.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-rpc-tokyo.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-rpc-seoul.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-rpc-hongkong.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-rpc-1.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-rpc-2.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-rpc-full-1.titanlab.io:443", + "provider": "Titanlab.io" + } + ], + "rest": [ + { + "address": "https://titan-lcd.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-lcd-tokyo.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-lcd-seoul.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-lcd-hongkong.titanlab.io:443", + "provider": "Titanlab.io" + } + ], + "grpc": [ + { + "address": "titan-grpc.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "titan-grpc-hongkong.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "titan-grpc-tokyo.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "titan-grpc-seoul.titanlab.io:443", + "provider": "Titanlab.io" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://titan-json-rpc.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-json-rpc-tokyo.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-json-rpc-seoul.titanlab.io:443", + "provider": "Titanlab.io" + }, + { + "address": "https://titan-json-rpc-hongkong.titanlab.io:443", + "provider": "Titanlab.io" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://tkxscan.io", + "tx_page": "https://tkxscan.io/Titan/tx/${txHash}", + "account_page": "https://tkxscan.io/Titan/account/${accountAddress}" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/titan/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/titan/images/chain.svg" + } +} \ No newline at end of file diff --git a/titan/images/chain.png b/titan/images/chain.png new file mode 100644 index 0000000000..89edaaed48 Binary files /dev/null and b/titan/images/chain.png differ diff --git a/titan/images/chain.svg b/titan/images/chain.svg new file mode 100644 index 0000000000..17976ee8d9 --- /dev/null +++ b/titan/images/chain.svg @@ -0,0 +1,3 @@ + + + diff --git a/titan/images/tkx.png b/titan/images/tkx.png new file mode 100644 index 0000000000..d825f15ec7 Binary files /dev/null and b/titan/images/tkx.png differ diff --git a/umee/chain.json b/umee/chain.json index 599d4e9985..dbd6a67605 100644 --- a/umee/chain.json +++ b/umee/chain.json @@ -31,7 +31,9 @@ "codebase": { "git_repo": "https://github.com/umee-network/umee", "recommended_version": "v6.3.0", - "compatible_versions": ["v6.3.0"], + "compatible_versions": [ + "v6.3.0" + ], "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v6.3.0/umeed-v6.3.0-linux-amd64.tar.gz" }, @@ -54,7 +56,9 @@ "height": 0, "next_version_name": "v1.1.0", "recommended_version": "v1.0.1", - "compatible_versions": ["v1.0.1"], + "compatible_versions": [ + "v1.0.1" + ], "cosmos_sdk_version": "0.45", "consensus": { "type": "tendermint", @@ -74,7 +78,9 @@ "height": 3023282, "next_version_name": "v1.1-v3.0", "recommended_version": "v1.1.0", - "compatible_versions": ["v1.1.0"], + "compatible_versions": [ + "v1.1.0" + ], "cosmos_sdk_version": "0.45", "consensus": { "type": "tendermint", @@ -94,7 +100,9 @@ "height": 3215778, "next_version_name": "v3.1.0", "recommended_version": "v3.0.0", - "compatible_versions": ["v3.0.0"], + "compatible_versions": [ + "v3.0.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "tendermint", @@ -114,7 +122,9 @@ "height": 3623090, "next_version_name": "v3.1-v3.3", "recommended_version": "v3.1.0", - "compatible_versions": ["v3.1.0"], + "compatible_versions": [ + "v3.1.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "tendermint", @@ -134,7 +144,9 @@ "height": 4513362, "next_version_name": "v4.0", "recommended_version": "v3.3.0", - "compatible_versions": ["v3.3.0"], + "compatible_versions": [ + "v3.3.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "tendermint", @@ -153,7 +165,9 @@ "height": 4949483, "next_version_name": "v4.0.1", "recommended_version": "v4.0.0", - "compatible_versions": ["v4.0.0"], + "compatible_versions": [ + "v4.0.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "tendermint", @@ -172,7 +186,9 @@ "height": 5243631, "next_version_name": "v4.1.0", "recommended_version": "v4.0.1", - "compatible_versions": ["v4.0.1"], + "compatible_versions": [ + "v4.0.1" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "tendermint", @@ -191,7 +207,9 @@ "height": 5433933, "next_version_name": "v4.2", "recommended_version": "v4.1.0", - "compatible_versions": ["v4.1.0"], + "compatible_versions": [ + "v4.1.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "tendermint", @@ -210,7 +228,9 @@ "height": 5741480, "next_version_name": "v4.3", "recommended_version": "v4.2.0", - "compatible_versions": ["v4.2.0"], + "compatible_versions": [ + "v4.2.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "tendermint", @@ -228,7 +248,9 @@ "tag": "v4.3.0", "height": 6049552, "recommended_version": "v4.3.0", - "compatible_versions": ["v4.3.0"], + "compatible_versions": [ + "v4.3.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "cometbft", @@ -246,7 +268,10 @@ "tag": "v4.4.1", "height": 6547400, "recommended_version": "v4.4.1", - "compatible_versions": ["v4.4.1", "v4.4.0"], + "compatible_versions": [ + "v4.4.1", + "v4.4.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "cometbft", @@ -264,7 +289,9 @@ "tag": "v5.0.1", "height": 6986150, "recommended_version": "v5.0.1", - "compatible_versions": ["v5.0.1"], + "compatible_versions": [ + "v5.0.1" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "cometbft", @@ -282,7 +309,9 @@ "tag": "v5.1.0", "height": 7428000, "recommended_version": "v5.1.0", - "compatible_versions": ["v5.1.0"], + "compatible_versions": [ + "v5.1.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "cometbft", @@ -300,7 +329,9 @@ "tag": "v5.2.0", "height": 8220900, "recommended_version": "v5.2.0", - "compatible_versions": ["v5.2.0"], + "compatible_versions": [ + "v5.2.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "cometbft", @@ -318,7 +349,9 @@ "tag": "v6.0.2", "height": 8427800, "recommended_version": "v6.0.2", - "compatible_versions": ["v6.0.2"], + "compatible_versions": [ + "v6.0.2" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "cometbft", @@ -336,7 +369,9 @@ "tag": "v6.1.0", "height": 8941650, "recommended_version": "v6.1.0", - "compatible_versions": ["v6.1.0"], + "compatible_versions": [ + "v6.1.0" + ], "cosmos_sdk_version": "0.46", "consensus": { "type": "cometbft", @@ -354,7 +389,9 @@ "tag": "v6.2.0", "height": 9561500, "recommended_version": "v6.2.0", - "compatible_versions": ["v6.2.0"], + "compatible_versions": [ + "v6.2.0" + ], "cosmos_sdk_version": "0.47", "consensus": { "type": "cometbft", @@ -372,7 +409,9 @@ "tag": "v6.3.0", "height": 10046600, "recommended_version": "v6.3.0", - "compatible_versions": ["v6.3.0"], + "compatible_versions": [ + "v6.3.0" + ], "cosmos_sdk_version": "0.47", "consensus": { "type": "cometbft", @@ -550,12 +589,16 @@ "provider": "StakeTown" }, { - "address": "https://umee-rpc.highstakes.ch:26657/", + "address": "https://umee-rpc.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { "address": "https://umee.rpc.stakevillage.net:443", "provider": "Stake Village" + }, + { + "address": "https://umee-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -616,12 +659,16 @@ "provider": "StakeTown" }, { - "address": "https://umee-api.highstakes.ch:1317/", + "address": "https://umee-api.highstakes.ch", "provider": "High Stakes 🇨🇭" }, { "address": "https://umee.api.stakevillage.net", "provider": "Stake Village" + }, + { + "address": "https://umee-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -684,6 +731,10 @@ { "address": "umee.grpc.stakevillage.net:11090", "provider": "Stake Village" + }, + { + "address": "umee-grpc.noders.services:32090", + "provider": "[NODERS]TEAM" } ] }, @@ -731,6 +782,12 @@ "url": "https://exp.stakevillage.net/umee", "tx_page": "https://exp.stakevillage.net/umee/tx/${txHash}", "account_page": "https://exp.stakevillage.net/umee/account/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/umee", + "tx_page": "https://ezstaking.app/umee/txs/${txHash}", + "account_page": "https://ezstaking.app/umee/account/${accountAddress}" } ], "images": [ @@ -739,4 +796,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg" } ] -} +} \ No newline at end of file diff --git a/unification/assetlist.json b/unification/assetlist.json index 2b66ad43d4..913d222e70 100644 --- a/unification/assetlist.json +++ b/unification/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "Staking and governance coin for the Unification Blockchain", + "extended_description": "Fundamentally, the Unification Blockchain Toolkit comprises two core branches: Blockchain Business products, to welcome traditional enterprises into the Web3 economy; and Permissionless Products, an open-access toolkit to power and enrich Dapps on Ethereum/EVM networks", "denom_units": [ { "denom": "nund", @@ -28,6 +29,10 @@ "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" }, + "socials": { + "website": "https://unification.com", + "twitter": "https://twitter.com/UnificationUND" + }, "coingecko_id": "unification" } ] diff --git a/unification/chain.json b/unification/chain.json index d2c8ffada3..272e6f24b8 100644 --- a/unification/chain.json +++ b/unification/chain.json @@ -207,4 +207,4 @@ "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" } -} +} \ No newline at end of file diff --git a/ununifi/chain.json b/ununifi/chain.json index 67db402534..2f0d748dfe 100644 --- a/ununifi/chain.json +++ b/ununifi/chain.json @@ -36,21 +36,21 @@ }, "codebase": { "git_repo": "https://github.com/UnUniFi/chain", - "recommended_version": "v4.0.1", + "recommended_version": "v4.0.2", "compatible_versions": [ - "v4.0.1" + "v4.0.2" ], "binaries": { "linux/amd64": "https://github.com/UnUniFi/chain/releases/download/v4.0.1/ununifid" }, - "cosmos_sdk_version": "v0.47.3-custom-bank-1", + "cosmos_sdk_version": "ununifi/cosmos-sdk v0.47.3-custom-bank-1", "consensus": { "type": "cometbft", - "version": "0.37.1" + "version": "0.37.2" }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.0.1", + "ibc_go_version": "v7.3.1", "ics_enabled": [ "ics20-1" ], @@ -272,6 +272,30 @@ "ics_enabled": [ "ics20-1" ], + "next_version_name": "v4_0_2" + }, + { + "name": "v4_0_2", + "recommended_version": "v4.0.2", + "compatible_versions": [ + "v4.0.2" + ], + "binaries": { + "linux/amd64": "https://github.com/UnUniFi/chain/releases/download/v4.0.2/ununifid" + }, + "proposal": 26, + "height": 9974824, + "cosmos_sdk_version": "ununifi/cosmos-sdk v0.47.3-custom-bank-1", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmwasm_version": "v0.40.1", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ], "next_version_name": "" } ] @@ -436,4 +460,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg" } ] -} +} \ No newline at end of file diff --git a/uptick/chain.json b/uptick/chain.json index 6bbea3a720..f149d795e0 100644 --- a/uptick/chain.json +++ b/uptick/chain.json @@ -17,10 +17,10 @@ "fee_tokens": [ { "denom": "auptick", - "fixed_min_gas_price": 10000000000, - "low_gas_price": 10000000000, - "average_gas_price": 25000000000, - "high_gas_price": 40000000000 + "fixed_min_gas_price": 13000000000, + "low_gas_price": 13000000000, + "average_gas_price": 16000000000, + "high_gas_price": 20000000000 } ] }, @@ -33,21 +33,21 @@ }, "codebase": { "git_repo": "https://github.com/UptickNetwork/uptick", - "recommended_version": "v0.2.4", + "recommended_version": "v0.2.19", "compatible_versions": [ - "v0.2.4" + "v0.2.19" ], "binaries": { - "linux/amd64": "https://github.com/UptickNetwork/uptick/releases/download/v0.2.4/uptick-linux-amd64-v0.2.4.tar.gz" + "linux/amd64": "https://github.com/UptickNetwork/uptick/archive/refs/tags/v0.2.19.tar.gz" }, - "cosmos_sdk_version": "0.46", + "cosmos_sdk_version": "v0.47.5", "consensus": { - "type": "tendermint", - "version": "0.34" + "type": "cometbft", + "version": "v0.37.3-0.20230920093934-46df7b597e3c" }, - "cosmwasm_version": "", - "cosmwasm_enabled": false, - "ibc_go_version": "5.0.1", + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "ibc_go_version": "7.3.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/uptick-network/mainnet/main/genesis.json" }, @@ -58,7 +58,10 @@ "compatible_versions": [ "v0.2.4" ], - "cosmos_sdk_version": "0.46", + "binaries": { + "linux/amd64": "https://github.com/UptickNetwork/uptick/archive/refs/tags/v0.2.4.tar.gz" + }, + "cosmos_sdk_version": "0.47.5", "consensus": { "type": "tendermint", "version": "0.34" @@ -66,9 +69,77 @@ "cosmwasm_version": "", "cosmwasm_enabled": false, "ibc_go_version": "5.0.1", + "next_version_name": "v0.2.8" + }, + { + "name": "v0.2.8", + "proposal": 8, + "height": 1190080, + "recommended_version": "v0.2.8", + "compatible_versions": [ + "v0.2.8" + ], + "binaries": { + "linux/amd64": "https://github.com/UptickNetwork/uptick/archive/refs/tags/v0.2.8.tar.gz" + }, + "next_version_name": "v0.2.11" + }, + { + "name": "v0.2.11", + "proposal": 12, + "height": 2411600, + "recommended_version": "v0.2.11", + "compatible_versions": [ + "v0.2.11" + ], "binaries": { - "linux/amd64": "https://github.com/UptickNetwork/uptick/releases/download/v0.2.4/uptick-linux-amd64-v0.2.4.tar.gz" - } + "linux/amd64": "https://github.com/UptickNetwork/uptick/archive/refs/tags/v0.2.11.tar.gz" + }, + "next_version_name": "v0.2.17" + }, + { + "name": "v0.2.17", + "proposal": 16, + "height": 4605201, + "recommended_version": "v0.2.17", + "compatible_versions": [ + "v0.2.17" + ], + "binaries": { + "linux/amd64": "https://github.com/UptickNetwork/uptick/archive/refs/tags/v0.2.17.tar.gz" + }, + "next_version_name": "v0.2.18" + }, + { + "name": "v0.2.18", + "proposal": 17, + "height": 4722001, + "recommended_version": "v0.2.18", + "compatible_versions": [ + "v0.2.18" + ], + "binaries": { + "linux/amd64": "https://github.com/UptickNetwork/uptick/archive/refs/tags/v0.2.18.tar.gz" + }, + "next_version_name": "v0.2.19" + }, + { + "name": "v0.2.19", + "recommended_version": "v0.2.19", + "compatible_versions": [ + "v0.2.19" + ], + "binaries": { + "linux/amd64": "https://github.com/UptickNetwork/uptick/archive/refs/tags/v0.2.19.tar.gz" + }, + "cosmos_sdk_version": "0.47.5", + "consensus": { + "type": "cometbft", + "version": "v0.37.3-0.20230920093934-46df7b597e3c" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "ibc_go_version": "v7.3.0" } ] }, @@ -191,6 +262,10 @@ { "address": "https://rpc-uptick.sr20de.xyz", "provider": "Sr20de" + }, + { + "address": "https://uptick-rpc.noders.services", + "provider": "[NODERS]TEAM" } ], "rest": [ @@ -237,6 +312,10 @@ { "address": "https://api-uptick.sr20de.xyz", "provider": "Sr20de" + }, + { + "address": "https://uptick-api.noders.services", + "provider": "[NODERS]TEAM" } ], "grpc": [ @@ -283,6 +362,10 @@ { "address": "https://grpc-uptick.sr20de.xyz", "provider": "Sr20de" + }, + { + "address": "uptick-grpc.noders.services:24090", + "provider": "[NODERS]TEAM" } ], "evm-http-jsonrpc": [ @@ -297,6 +380,10 @@ { "address": "https://evm-uptick.sr20de.xyz", "provider": "Sr20de" + }, + { + "address": "https://uptick-jsonrpc.noders.services", + "provider": "[NODERS]TEAM" } ] }, diff --git a/versions.schema.json b/versions.schema.json index c91c380cb3..121d13067d 100644 --- a/versions.schema.json +++ b/versions.schema.json @@ -1,8 +1,8 @@ { - "$id": "https://sikka.tech/chain.schema.json", + "$id": "https://sikka.tech/versions.schema.json", "$schema": "https://json-schema.org/draft-07/schema", - "title": "Cosmos Chain", - "description": "Cosmos Chain Versions.json is a metadata file that contains information about a cosmos sdk based chain's current and historical versions.", + "title": "Versions", + "description": "Versions.json is a metadata file that contains information about a cosmos sdk based chain's current and historical versions.", "type": "object", "required": [ "chain_name", @@ -11,7 +11,7 @@ "properties": { "$schema": { "type": "string", - "pattern": "^(\\.\\./)+chain\\.schema\\.json$" + "pattern": "^(\\.\\./)+versions\\.schema\\.json$" }, "chain_name": { "type": "string", @@ -94,6 +94,9 @@ "ibc_go_version": { "type": "string" }, + "go_version": { + "type": "string" + }, "ics_enabled": { "type": "array", "description": "List of IBC apps (usually corresponding to a ICS standard) which have been enabled on the network.", diff --git a/vidulum/chain.json b/vidulum/chain.json index 132392ae7d..8c4423f90a 100644 --- a/vidulum/chain.json +++ b/vidulum/chain.json @@ -89,6 +89,11 @@ "id": "209688f5bccb88f6397a97cc11ab545a014aa559", "address": "137.184.92.115:26656", "provider": "1square" + }, + { + "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", + "address": "vidulum.declab.pro:26621", + "provider": "Decloud Nodes Lab" } ] }, @@ -105,6 +110,10 @@ { "address": "https://rpc-vidulum-ia.cosmosia.notional.ventures/", "provider": "Notional" + }, + { + "address": "https://vidulum.declab.pro:26619", + "provider": "Decloud Nodes Lab" } ], "rest": [ @@ -123,6 +132,10 @@ { "address": "https://api-vdl.nodine.id/", "provider": "Nodine.ID" + }, + { + "address": "https://vidulum.declab.pro:443", + "provider": "Decloud Nodes Lab" } ], "grpc": [ @@ -133,6 +146,10 @@ { "address": "vidulum.grpc.m.stavr.tech:2040", "provider": "🔥STAVR🔥" + }, + { + "address": "https://vidulum.declab.pro:9013", + "provider": "Decloud Nodes Lab" } ] }, @@ -162,6 +179,11 @@ "kind": "Nodine Explorer", "url": "https://explorer.co.id/vidulum", "tx_page": "https://explorer.co.id/vidulum/tx/${txHash}" + }, + { + "kind": "Decloud Nodes Lab", + "url": "https://explorer.declab.pro/Vidulum", + "tx_page": "https://explorer.declab.pro/Vidulum/tx/${txHash}" } ], "images": [ @@ -170,4 +192,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" } ] -} +} \ No newline at end of file diff --git a/xpla/chain.json b/xpla/chain.json index 7e2ccb8f78..e2f737e26b 100644 --- a/xpla/chain.json +++ b/xpla/chain.json @@ -33,16 +33,17 @@ }, "codebase": { "git_repo": "https://github.com/xpladev/xpla", - "recommended_version": "v1.3.0", + "recommended_version": "v1.4.0", "compatible_versions": [ - "v1.3.0" + "v1.4.0" ], - "cosmos_sdk_version": "0.45.16", + "cosmos_sdk_version": "xpladev/cosmos-sdk v0.45.20-xpla", "consensus": { "type": "cometbft", - "version": "0.34.27" + "version": "0.34.29" }, - "cosmwasm_version": "0.33.0", + "ibc_go_version": "v4.5.1", + "cosmwasm_version": "v0.33.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/xpladev/mainnet/main/dimension_37-1/genesis.json" }, @@ -73,6 +74,21 @@ "version": "0.34.27" }, "cosmwasm_version": "0.33.0", + "next_version_name": "v1_4" + }, + { + "name": "v1_4", + "recommended_version": "v1.4.0", + "compatible_versions": [ + "v1.4.0" + ], + "cosmos_sdk_version": "xpladev/cosmos-sdk v0.45.20-xpla", + "consensus": { + "type": "cometbft", + "version": "0.34.29" + }, + "ibc_go_version": "v4.5.1", + "cosmwasm_version": "v0.33.0", "next_version_name": "" } ] @@ -93,6 +109,11 @@ "address": "seeds.lavenderfive.com:20157", "provider": "Lavender.Five Nodes 🐝" }, + { + "id": "466c9c2e8b128389059bf4e7e68888fdde8cbebc", + "address": "xpla.seed.stavr.tech:2066", + "provider": "🔥STAVR🔥" + }, { "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", @@ -148,6 +169,10 @@ "address": "https://dimension-rpc.xpla.dev", "provider": "Holdings" }, + { + "address": "https://xpla.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, { "address": "https://xpla-rpc.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" @@ -162,6 +187,10 @@ "address": "https://dimension-lcd.xpla.dev", "provider": "Holdings" }, + { + "address": "https://xpla.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, { "address": "https://xpla-api.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" @@ -186,11 +215,22 @@ "url": "https://finder.xpla.io", "tx_page": "https://finder.xpla.io/mainnet/tx/${txHash}" }, + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Xpla-Mainnet", + "tx_page": "https://explorer.stavr.tech/Xpla-Mainnet/tx/${txHash}" + }, { "kind": "mintscan", "url": "https://www.mintscan.io/xpla", "tx_page": "https://www.mintscan.io/xpla/transactions/${txHash}", "account_page": "https://www.mintscan.io/xpla/accounts/${accountAddress}" + }, + { + "kind": "ezstaking", + "url": "https://ezstaking.app/xpla", + "tx_page": "https://ezstaking.app/xpla/txs/${txHash}", + "account_page": "https://ezstaking.app/xpla/account/${accountAddress}" } ], "images": [ @@ -199,4 +239,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg" } ] -} +} \ No newline at end of file diff --git a/zetachain/assetlist.json b/zetachain/assetlist.json index 09fdf92f42..cb48e6b68e 100644 --- a/zetachain/assetlist.json +++ b/zetachain/assetlist.json @@ -31,4 +31,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/zetachain/chain.json b/zetachain/chain.json index 4f3670d31e..b45fb35a14 100644 --- a/zetachain/chain.json +++ b/zetachain/chain.json @@ -135,6 +135,11 @@ "id": "8d93468c6022fb3b263963bdea46b0a131d247cd", "address": "34.28.196.79:26656", "provider": "ZetaChain" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "zetachain.rpc.nodeshub.online:22556", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ] }, @@ -155,6 +160,14 @@ { "address": "https://rpc.zetachain.nodestake.org", "provider": "NodeStake" + }, + { + "address": "https://zetachain-rpc.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://zetachain.rpc.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "rest": [ @@ -173,6 +186,14 @@ { "address": "https://api.zetachain.nodestake.org", "provider": "NodeStake" + }, + { + "address": "https://zetachain-api.noders.services", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://zetachain.api.nodeshub.online:443", + "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" } ], "grpc": [ @@ -183,6 +204,14 @@ { "address": "https://grpc.zetachain.nodestake.org:443", "provider": "NodeStake" + }, + { + "address": "zetachain-grpc.noders.services:28090", + "provider": "[NODERS]TEAM" + }, + { + "address": "https://zetachain.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, @@ -201,6 +230,12 @@ "kind": "NodeStake Explorer", "url": "https://explorer.nodestake.org/zetachain", "tx_page": "https://explorer.nodestake.org/zetachain/tx/${txHash}" + }, + { + "kind": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅", + "url": "https://explorer.nodeshub.online/zetachain/", + "tx_page": "https://explorer.nodeshub.online/zetachain/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/zetachain/accounts/${accountAddress}" } ] }