diff --git a/.github/workflows/utility/sync_images.mjs b/.github/workflows/utility/sync_images.mjs index 43c36384d4..8162ea02b9 100644 --- a/.github/workflows/utility/sync_images.mjs +++ b/.github/workflows/utility/sync_images.mjs @@ -216,21 +216,19 @@ function getLinkedImages(){ let chains = chain_reg.getChains(); chains.forEach((chainName) => { let images = chain_reg.getFileProperty(chainName, "chain", "images"); - if(images) { - let replacementImage; - images?.forEach((image) => { - 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; - } - }); - chain_reg.setFileProperty(chainName, "chain", "images", images); - } + if (!images) { return; } + images?.forEach((image) => { + if (!image?.image_sync) { + return; + } + let 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; + } + }); + chain_reg.setFileProperty(chainName, "chain", "images", images); }); // get list of assets, iterate each asset @@ -240,40 +238,40 @@ function getLinkedImages(){ let assets = chain_reg.getAssetPointers(); assets.forEach((assetPointer) => { let images = chain_reg.getAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "images"); - if(images) { - images?.forEach((image) => { - let replacementImage; - 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; - } - }); - chain_reg.setAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "images", images); - } + if (!images) { return; } + images?.forEach((image) => { + if (!image?.image_sync) { + return; + } + let 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; + } + }); + chain_reg.setAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "images", images); }); } +// finds the URL of the image being referenced--recursive incase the image being referenced references another image function getLinkedImage(chain_name, base_denom){ + let images; if (base_denom) { images = chain_reg.getAssetProperty(chain_name, base_denom, "images"); } else { images = chain_reg.getFileProperty(chain_name, "chain", "images") } - if(!images){return;} + if (!images) { return; } let image = images[0]; - if(image.image_sync){ + if (image.image_sync) { if ( base_denom == image.image_sync.base_denom && chain_name == image.image_sync.chain_name ) { - return; + return; //catches self-references } return getLinkedImage(image.image_sync.chain_name, image.image_sync.base_denom); } else { @@ -281,19 +279,21 @@ function getLinkedImage(chain_name, base_denom){ } } -function overwriteLogoURIs(chain_name, base_denom){ +function overwriteLogoURIs(){ // iterate chains // iterate assets // if images // logo_URIs::png&&svg = images[0].png&&svg - + let chains = chain_reg.getChains(); chains.forEach((chainName) => { + let logo_URIs = chain_reg.getFileProperty(chainName, "chain", "logo_URIs"); + if (!logo_URIs) { return; } let images = chain_reg.getFileProperty(chainName, "chain", "images"); - let logo_URIs = { + logo_URIs = { png: images?.[0]?.png, svg: images?.[0]?.svg } @@ -306,8 +306,10 @@ function overwriteLogoURIs(chain_name, base_denom){ let assets = chain_reg.getAssetPointers(); assets.forEach((assetPointer) => { + let logo_URIs = chain_reg.getAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "logo_URIs"); + if (!logo_URIs) { return; } let images = chain_reg.getAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "images"); - let logo_URIs = { + logo_URIs = { png: images?.[0]?.png, svg: images?.[0]?.svg } @@ -320,8 +322,83 @@ function overwriteLogoURIs(chain_name, base_denom){ } +function defineImageSync() { + + let assets = chain_reg.getAssetPointers(); + assets.forEach((assetPointer) => { + + let traces = chain_reg.getAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "traces"); + if (!traces) { return; } + let lastTrace = traces[traces.length - 1]; + let originAssetPointer = { + chain_name: lastTrace.counterparty.chain_name, + base_denom: lastTrace.counterparty.base_denom + } + + let images = chain_reg.getAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "images"); + + //find out of any of the images are synced with the origin + for (let i = 0; i < images.length; ++i) { + if ( + images[i].image_sync?.chain_name === originAssetPointer.chain_name && + images[i].image_sync?.base_denom === originAssetPointer.base_denom + ) { + return; + } + } + + //if there is one, then skip, otherwise, + //if there is none, the iterate each image, and + //look for any matches between the image and the origin image + + let originImage = chain_reg.getAssetProperty(originAssetPointer.chain_name, originAssetPointer.base_denom, "images")?.[0]; + if (!originImage) { return; } + + let newImages = []; + let HAS_UPDATED = false; + images.forEach((image) => { + let newImage = {}; + + if ( + ( + (image.png === originImage.png && originImage.png) || + (image.svg === originImage.svg && originImage.svg) + ) && + !image.image_sync + ) { + newImage.image_sync = originAssetPointer; + if (originImage.png) { + newImage.png = originImage.png; + } + if (originImage.svg) { + newImage.svg = originImage.svg; + } + newImage.theme === originImage.theme; + HAS_UPDATED = true; + } else { + newImage = image; + } + newImages.push(newImage); + }); + + if (HAS_UPDATED) { + chain_reg.setAssetProperty(assetPointer.chain_name, assetPointer.base_denom, "images", newImages); + if (assetPointer.base_denom === "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7") { + console.log(assetPointer.chain_name); + console.log(assetPointer.base_denom); + console.log(images); + console.log(newImages); + } + HAS_UPDATED = false; + } + + }); + +} + function main(){ createImagesArray(); + defineImageSync(); getLinkedImages(); overwriteLogoURIs(); } diff --git a/.github/workflows/utility/validate_data.mjs b/.github/workflows/utility/validate_data.mjs index f5cccd4cdd..137d0a9c93 100644 --- a/.github/workflows/utility/validate_data.mjs +++ b/.github/workflows/utility/validate_data.mjs @@ -118,6 +118,37 @@ function checkDenomUnits(asset) { } +function checkTraceCounterpartyIsValid(chain_name, asset) { + + if (!asset.base) { return; } + asset.traces?.forEach((trace) => { + let base = chain_reg.getAssetProperty(trace.counterparty.chain_name, trace.counterparty.base_denom, "base"); + if (!base) { + throw new Error(`Trace of ${chain_name}, ${asset.base} makes invalid reference to ${trace.counterparty.chain_name}, ${trace.counterparty.base_denom}.`); + } + if (asset.base === trace.counterparty.base_denom && chain_name === trace.counterparty.chain_name) { + throw new Error(`Trace of ${chain_name}, ${asset.base} makes reference to self.`); + } + }); + +} + +function checkImageSyncIsValid(chain_name, asset) { + + if (!asset.base) { return; } + asset.images?.forEach((image) => { + if (!image.image_sync) { return; } + let base = chain_reg.getAssetProperty(image.image_sync.chain_name, image.image_sync.base_denom, "base"); + if (!base) { + throw new Error(`Image Sync Pointer of ${chain_name}, ${asset.base} makes invalid reference to ${image.image_sync.chain_name}, ${image.image_sync.base_denom}.`); + } + if (asset.base === image.image_sync.base_denom && chain_name === image.image_sync.chain_name) { + throw new Error(`Image_sync of ${chain_name}, ${asset.base} makes reference to self.`); + } + }); + +} + export function validate_chain_files() { @@ -146,6 +177,12 @@ export function validate_chain_files() { //check denom units checkDenomUnits(asset); + + //check counterparty pointers of traces + checkTraceCounterpartyIsValid(chain_name, asset); + + //check image_sync pointers of images + checkImageSyncIsValid(chain_name, asset); }); diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000000..95e2bbca8a --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,26 @@ +on: + pull_request: + types: [opened, synchronize, reopened] + workflow_dispatch: + +name: Validate ✅ + +jobs: + validate-schema: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository 📥 + uses: actions/checkout@v4 + + - name: Setup Node.js 🌐 + uses: actions/setup-node@v4 + with: + node-version: '20.x' + + - name: Install @chain-registry/cli 📜 + run: | + npm install -g @chain-registry/cli@1.47.0 + + - name: Validate ✓ + run: | + chain-registry validate --registryDir . --logLevel error diff --git a/.github/workflows/validate_versionsjson.yml b/.github/workflows/validate_versionsjson.yml new file mode 100644 index 0000000000..55c11538b9 --- /dev/null +++ b/.github/workflows/validate_versionsjson.yml @@ -0,0 +1,20 @@ +on: [pull_request, workflow_dispatch] +name: PR workflow +jobs: + validate_chainjson: + name: Validate edited versions.json + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Install JSON-Schema-Validator + run: npm install -g jsonschema + + - name: Validate Versions.json schema + run: | + for file in $(find . -name 'versions.json' | grep -v '_template/'); do + if ! jsonschema -i "$file" ./versions.schema.json; then + exit 1 + fi + done diff --git a/README.md b/README.md index 88fbc8d6f5..d5658fb16e 100644 --- a/README.md +++ b/README.md @@ -110,41 +110,7 @@ A sample `chain.json` includes the following information. "height": 0, "next_version_name": "v4" }, - { - "name": "v4", - "tag": "v4.2.0", - "height": 1314500, - "proposal": 38, - "next_version_name": "v5" - }, - { - "name": "v5", - "tag": "v6.4.1", - "height": 2383300, - "proposal": 95, - "next_version_name": "v7" - }, - { - "name": "v7", - "tag": "v8.0.0", - "height": 3401000, - "proposal": 157, - "next_version_name": "v9" - }, - { - "name": "v9", - "tag": "v10.0.1", - "height": 4707300, - "proposal": 252, - "next_version_name": "v11" - }, - { - "name": "v11", - "tag": "v11.0.0", - "height": 5432450, - "proposal": 296, - "next_version_name": "v12" - }, + ...//version history can alternatively go into 'versions.json' { "name": "v12", "tag": "v12.1.0", @@ -260,7 +226,7 @@ Asset Lists are inspired by the [Token Lists](https://tokenlists.org/) project o 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. -This standard is a work in progress. You'll notice that the format of `assets` in the assetlist.json structure is a strict superset json representation of the [`banktypes.DenomMetadata`](https://docs.cosmos.network/master/architecture/adr-024-coin-metadata.html) from the Cosmos SDK. This is purposefully done so that this standard may eventually be migrated into a Cosmos SDK module in the future, so it can be easily maintained on chain instead of on Github. +This standard is a work in progress. You'll notice that the format of `assets` in the assetlist.json structure is a strict superset json representation of the [`banktypes.DenomMetadata`](https://docs.cosmos.network/main/build/architecture/adr-024-coin-metadata) from the Cosmos SDK. This is purposefully done so that this standard may eventually be migrated into a Cosmos SDK module in the future, so it can be easily maintained on chain instead of on Github. The assetlist JSON Schema can be found [here](/assetlist.schema.json). diff --git a/_IBC/axelar-pryzm.json b/_IBC/axelar-pryzm.json new file mode 100644 index 0000000000..8e5aeb0be1 --- /dev/null +++ b/_IBC/axelar-pryzm.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-224", + "connection_id": "connection-209" + }, + "chain_2": { + "chain_name": "pryzm", + "client_id": "07-tendermint-7", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-155", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-13", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } \ No newline at end of file diff --git a/_IBC/axelar-saga.json b/_IBC/axelar-saga.json new file mode 100644 index 0000000000..6eb952b7c6 --- /dev/null +++ b/_IBC/axelar-saga.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-208", + "connection_id": "connection-189" + }, + "chain_2": { + "chain_name": "saga", + "client_id": "07-tendermint-11", + "connection_id": "connection-10" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-146", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/celestia-pryzm.json b/_IBC/celestia-pryzm.json new file mode 100644 index 0000000000..c04fa7ceb7 --- /dev/null +++ b/_IBC/celestia-pryzm.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-88", + "connection_id": "connection-57" + }, + "chain_2": { + "chain_name": "pryzm", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_IBC/composable-solana.json b/_IBC/composable-solana.json new file mode 100644 index 0000000000..e34ef0fda7 --- /dev/null +++ b/_IBC/composable-solana.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "08-wasm-215", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "solana", + "client_id": "07-tendermint-1", + "connection_id": "connection-108" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_IBC/cosmoshub-pryzm.json b/_IBC/cosmoshub-pryzm.json new file mode 100644 index 0000000000..a4955bafe9 --- /dev/null +++ b/_IBC/cosmoshub-pryzm.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1304", + "connection_id": "connection-1038" + }, + "chain_2": { + "chain_name": "pryzm", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-859", + "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/injective-pryzm.json b/_IBC/injective-pryzm.json new file mode 100644 index 0000000000..cd831d21d3 --- /dev/null +++ b/_IBC/injective-pryzm.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-267", + "connection_id": "connection-268" + }, + "chain_2": { + "chain_name": "pryzm", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-284", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_IBC/juno-neutron.json b/_IBC/juno-neutron.json new file mode 100644 index 0000000000..7a9a976b40 --- /dev/null +++ b/_IBC/juno-neutron.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-557", + "connection_id": "connection-524" + }, + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-97", + "connection_id": "connection-71" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-548", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4328", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/neutron-pryzm.json b/_IBC/neutron-pryzm.json new file mode 100644 index 0000000000..e2b9ef53f5 --- /dev/null +++ b/_IBC/neutron-pryzm.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-98", + "connection_id": "connection-72" + }, + "chain_2": { + "chain_name": "pryzm", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4329", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/noble-planq.json b/_IBC/noble-planq.json new file mode 100644 index 0000000000..b3738d5ab2 --- /dev/null +++ b/_IBC/noble-planq.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-103", + "connection_id": "connection-95" + }, + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-567", + "connection_id": "connection-490" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-82", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } \ No newline at end of file diff --git a/_IBC/noble-pryzm.json b/_IBC/noble-pryzm.json new file mode 100644 index 0000000000..2de2ba6d44 --- /dev/null +++ b/_IBC/noble-pryzm.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-100", + "connection_id": "connection-92" + }, + "chain_2": { + "chain_name": "pryzm", + "client_id": "07-tendermint-5", + "connection_id": "connection-5" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-79", + "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-regen.json b/_IBC/noble-regen.json new file mode 100644 index 0000000000..3f804fba32 --- /dev/null +++ b/_IBC/noble-regen.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-104", + "connection_id": "connection-96" + }, + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-177", + "connection_id": "connection-149" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-83", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-165", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/onex-onomy.json b/_IBC/onex-onomy.json new file mode 100644 index 0000000000..02d64e7951 --- /dev/null +++ b/_IBC/onex-onomy.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "onex", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "onomy", + "client_id": "07-tendermint-12", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/osmosis-pryzm.json b/_IBC/osmosis-pryzm.json new file mode 100644 index 0000000000..15487344d1 --- /dev/null +++ b/_IBC/osmosis-pryzm.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3206", + "connection_id": "connection-2663" + }, + "chain_2": { + "chain_name": "pryzm", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-75755", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_IBC/pryzm-terra2.json b/_IBC/pryzm-terra2.json new file mode 100644 index 0000000000..ddae20833d --- /dev/null +++ b/_IBC/pryzm-terra2.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "pryzm", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-410", + "connection_id": "connection-414" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-473", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_non-cosmos/arbitrum/assetlist.json b/_non-cosmos/arbitrum/assetlist.json index 9c755ec986..34cec4ff58 100644 --- a/_non-cosmos/arbitrum/assetlist.json +++ b/_non-cosmos/arbitrum/assetlist.json @@ -34,6 +34,33 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" } ] + }, + { + "type_asset": "evm-base", + "denom_units": [ + { + "denom": "wei", + "exponent": 0 + } + ], + "base": "wei", + "display": "wei", + "name": "Ether", + "symbol": "ETH" + }, + { + "type_asset": "erc20", + "denom_units": [ + { + "denom": "0xab19bdaeb37242fa0f30486195f45b9cf5361b78", + "exponent": 0 + } + ], + "address": "0xab19bdaeb37242fa0f30486195f45b9cf5361b78", + "base": "0xab19bdaeb37242fa0f30486195f45b9cf5361b78", + "display": "0xab19bdaeb37242fa0f30486195f45b9cf5361b78", + "name": "cGLP", + "symbol": "cGLP" } ] } \ No newline at end of file diff --git a/_non-cosmos/avalanche/assetlist.json b/_non-cosmos/avalanche/assetlist.json index 4e96565a41..1883b414a4 100644 --- a/_non-cosmos/avalanche/assetlist.json +++ b/_non-cosmos/avalanche/assetlist.json @@ -109,6 +109,10 @@ "coingecko_id": "usd-coin", "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] @@ -189,6 +193,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "frax-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } ] diff --git a/_non-cosmos/comex/assetlist.json b/_non-cosmos/comex/assetlist.json new file mode 100644 index 0000000000..2f4b7ac923 --- /dev/null +++ b/_non-cosmos/comex/assetlist.json @@ -0,0 +1,19 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "comex", + "assets": [ + { + "type_asset": "unknown", + "denom_units": [ + { + "denom": "XAU", + "exponent": 0 + } + ], + "base": "XAU", + "display": "XAU", + "name": "Gold", + "symbol": "XAU" + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/composablepolkadot/assetlist.json b/_non-cosmos/composablepolkadot/assetlist.json index 7a50dc50c1..912e354c2c 100644 --- a/_non-cosmos/composablepolkadot/assetlist.json +++ b/_non-cosmos/composablepolkadot/assetlist.json @@ -34,10 +34,12 @@ "chain_name": "polkadot", "base_denom": "Planck" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } } diff --git a/_non-cosmos/ethereum/assetlist.json b/_non-cosmos/ethereum/assetlist.json index 26e7111986..fbc2c5baaf 100644 --- a/_non-cosmos/ethereum/assetlist.json +++ b/_non-cosmos/ethereum/assetlist.json @@ -689,7 +689,7 @@ } ], "base": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "name": "USD Coin", + "name": "USDC", "display": "usdc", "symbol": "USDC", "traces": [ @@ -1382,6 +1382,305 @@ "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": "CRV is the governance token for Curve Finance.", + "type_asset": "erc20", + "address": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "denom_units": [ + { + "denom": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "exponent": 0, + "aliases": [ + "crv-wei" + ] + }, + { + "denom": "crv", + "exponent": 18 + } + ], + "base": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "name": "Curve DAO", + "display": "crv", + "symbol": "CRV", + "coingecko_id": "curve-dao-token", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crv.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crv.png" + } + }, + { + "description": "A collateralized-debt-position (CDP) stablecoin by Curve DAO.", + "type_asset": "erc20", + "address": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", + "denom_units": [ + { + "denom": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", + "exponent": 0, + "aliases": [ + "crvusd-wei" + ] + }, + { + "denom": "crvusd", + "exponent": 18 + } + ], + "base": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", + "name": "crvUSD", + "display": "crvusd", + "symbol": "crvUSD", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Curve Finance" + } + ], + "coingecko_id": "crvusd", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crvusd.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crvusd.png" + } + }, + { + "description": "pxETH is built on top of the Pirex platform and forms the foundation of the Dinero protocol.", + "type_asset": "erc20", + "address": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6", + "denom_units": [ + { + "denom": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6", + "exponent": 0, + "aliases": [ + "pxeth-wei" + ] + }, + { + "denom": "pxeth", + "exponent": 18 + } + ], + "base": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6", + "name": "Dinero Staked ETH", + "display": "pxeth", + "symbol": "pxETH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Dinero" + } + ], + "coingecko_id": "dinero-staked-eth", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pxeth.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pxeth.png" + } + }, + { + "description": "eETH is a natively restaked liquid staking token on Ethereum.", + "type_asset": "erc20", + "address": "0x35fa164735182de50811e8e2e824cfb9b6118ac2", + "denom_units": [ + { + "denom": "0x35fa164735182de50811e8e2e824cfb9b6118ac2", + "exponent": 0, + "aliases": [ + "eeth-wei" + ] + }, + { + "denom": "eeth", + "exponent": 18 + } + ], + "base": "0x35fa164735182de50811e8e2e824cfb9b6118ac2", + "name": "ether.fi Staked ETH", + "display": "eeth", + "symbol": "eETH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "EtherFi" + } + ], + "coingecko_id": "ether-fi-staked-eth", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eeth.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eeth.png" + } + }, + { + "description": "The native governance token of Ethena.", + "type_asset": "erc20", + "address": "0x57e114b691db790c35207b2e685d4a43181e6061", + "denom_units": [ + { + "denom": "0x57e114b691db790c35207b2e685d4a43181e6061", + "exponent": 0, + "aliases": [ + "ena-wei" + ] + }, + { + "denom": "ena", + "exponent": 18 + } + ], + "base": "0x57e114b691db790c35207b2e685d4a43181e6061", + "name": "Ethena", + "display": "ena", + "symbol": "ENA", + "coingecko_id": "ethena", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ena.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ena.png" + } + }, + { + "description": "Ethena USDe is a synthetic dollar protocol built on Ethereum.", + "type_asset": "erc20", + "address": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3", + "denom_units": [ + { + "denom": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3", + "exponent": 0, + "aliases": [ + "usde-wei" + ] + }, + { + "denom": "usde", + "exponent": 18 + } + ], + "base": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3", + "name": "Ethena USDe", + "display": "usde", + "symbol": "USDe", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Ethena" + } + ], + "coingecko_id": "ethena-usde", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usde.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usde.png" + } + }, + { + "description": "A Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer.", + "type_asset": "erc20", + "address": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", + "denom_units": [ + { + "denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", + "exponent": 0, + "aliases": [ + "ezeth-wei" + ] + }, + { + "denom": "ezeth", + "exponent": 18 + } + ], + "base": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", + "name": "Renzo Restaked ETH", + "display": "ezeth", + "symbol": "ezETH", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Renzo" + } + ], + "coingecko_id": "renzo-restaked-eth", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ezeth.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ezeth.png" + } + }, + { + "description": "Ankr is a Web3 decentralized infrastructure provider that helps developers, dapps, and stakers easily interact with multiple blockchains. It allows you to create DApps using API and RPC, staking on Ankr Earn, and use customized blockchain solutions for businesses.", + "type_asset": "erc20", + "address": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4", + "denom_units": [ + { + "denom": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4", + "exponent": 0, + "aliases": [ + "ankr-wei" + ] + }, + { + "denom": "ankr", + "exponent": 18 + } + ], + "base": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4", + "name": "Ankr Network", + "display": "ankr", + "symbol": "ANKR", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg" + } + ], + "coingecko_id": "ankr", + "socials": { + "website": "https://www.ankr.com", + "twitter": "https://x.com/ankr" + } } ] -} \ No newline at end of file +} diff --git a/_non-cosmos/ethereum/images/ankr.svg b/_non-cosmos/ethereum/images/ankr.svg new file mode 100644 index 0000000000..13a8cac76e --- /dev/null +++ b/_non-cosmos/ethereum/images/ankr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_non-cosmos/ethereum/images/crv.png b/_non-cosmos/ethereum/images/crv.png new file mode 100644 index 0000000000..2cdffb2d3f Binary files /dev/null and b/_non-cosmos/ethereum/images/crv.png differ diff --git a/_non-cosmos/ethereum/images/crvusd.png b/_non-cosmos/ethereum/images/crvusd.png new file mode 100644 index 0000000000..abaad83aeb Binary files /dev/null and b/_non-cosmos/ethereum/images/crvusd.png differ diff --git a/_non-cosmos/ethereum/images/eeth.png b/_non-cosmos/ethereum/images/eeth.png new file mode 100644 index 0000000000..dab8435a72 Binary files /dev/null and b/_non-cosmos/ethereum/images/eeth.png differ diff --git a/_non-cosmos/ethereum/images/ena.png b/_non-cosmos/ethereum/images/ena.png new file mode 100644 index 0000000000..97242e8a32 Binary files /dev/null and b/_non-cosmos/ethereum/images/ena.png differ diff --git a/_non-cosmos/ethereum/images/ezeth.png b/_non-cosmos/ethereum/images/ezeth.png new file mode 100644 index 0000000000..e884cf2c9b Binary files /dev/null and b/_non-cosmos/ethereum/images/ezeth.png differ diff --git a/_non-cosmos/ethereum/images/pxeth.png b/_non-cosmos/ethereum/images/pxeth.png new file mode 100644 index 0000000000..f2008b44e4 Binary files /dev/null and b/_non-cosmos/ethereum/images/pxeth.png differ diff --git a/_non-cosmos/ethereum/images/usde.png b/_non-cosmos/ethereum/images/usde.png new file mode 100644 index 0000000000..0888c12165 Binary files /dev/null and b/_non-cosmos/ethereum/images/usde.png differ diff --git a/_non-cosmos/forex/assetlist.json b/_non-cosmos/forex/assetlist.json new file mode 100644 index 0000000000..54a7114045 --- /dev/null +++ b/_non-cosmos/forex/assetlist.json @@ -0,0 +1,19 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "forex", + "assets": [ + { + "type_asset": "unknown", + "denom_units": [ + { + "denom": "USD", + "exponent": 0 + } + ], + "base": "USD", + "display": "USD", + "name": "United States Dollar", + "symbol": "USD" + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/moonbeam/assetlist.json b/_non-cosmos/moonbeam/assetlist.json index 8c9391d5b9..d75cf95961 100644 --- a/_non-cosmos/moonbeam/assetlist.json +++ b/_non-cosmos/moonbeam/assetlist.json @@ -26,11 +26,13 @@ "display": "GLMR", "symbol": "GLMR", "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" }, "coingecko_id": "moonbeam", "images": [ { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } ] @@ -67,12 +69,18 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" }, "coingecko_id": "wrapped-moonbeam", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + "image_sync": { + "chain_name": "moonbeam", + "base_denom": "Wei" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png" } ] }, @@ -113,6 +121,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "polkadot", + "base_denom": "Planck" + }, "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" } @@ -194,6 +206,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "frax-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } ] diff --git a/_non-cosmos/neo/assetlist.json b/_non-cosmos/neo/assetlist.json new file mode 100644 index 0000000000..52eb3a863f --- /dev/null +++ b/_non-cosmos/neo/assetlist.json @@ -0,0 +1,20 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "neo", + "assets": [ + { + "type_asset": "erc20", + "denom_units": [ + { + "denom": "0x48c40d4666f93408be1bef038b6722404d9a4c2a", + "exponent": 0 + } + ], + "address": "0x48c40d4666f93408be1bef038b6722404d9a4c2a", + "base": "0x48c40d4666f93408be1bef038b6722404d9a4c2a", + "display": "0x48c40d4666f93408be1bef038b6722404d9a4c2a", + "name": "NeoBurger", + "symbol": "bNEO" + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/penumbra/assetlist.json b/_non-cosmos/penumbra/assetlist.json new file mode 100644 index 0000000000..e6713c6d32 --- /dev/null +++ b/_non-cosmos/penumbra/assetlist.json @@ -0,0 +1,39 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "penumbra", + "assets": [ + { + "description": "The native token of Penumbra.", + "extended_description": "A fully private, cross-chain proof-of-stake network and decentralized exchange for the Cosmos and beyond.", + "denom_units": [ + { + "denom": "penumbra", + "exponent": 6 + }, + { + "denom": "mpenumbra", + "exponent": 3 + }, + { + "denom": "upenumbra", + "exponent": 0 + } + ], + "type_asset": "unknown", + "base": "upenumbra", + "display": "penumbra", + "symbol": "UM", + "name": "Penumbra", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/penumbra/images/um.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/penumbra/images/um.svg" + } + ], + "socials": { + "website": "https://penumbra.zone/", + "twitter": "https://twitter.com/penumbrazone" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/penumbra/images/um.png b/_non-cosmos/penumbra/images/um.png new file mode 100644 index 0000000000..c438c6fc1c Binary files /dev/null and b/_non-cosmos/penumbra/images/um.png differ diff --git a/_non-cosmos/penumbra/images/um.svg b/_non-cosmos/penumbra/images/um.svg new file mode 100644 index 0000000000..3b963c28b4 --- /dev/null +++ b/_non-cosmos/penumbra/images/um.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/_non-cosmos/picasso/assetlist.json b/_non-cosmos/picasso/assetlist.json index a831c89fa6..fc342f6c86 100644 --- a/_non-cosmos/picasso/assetlist.json +++ b/_non-cosmos/picasso/assetlist.json @@ -20,11 +20,11 @@ "display": "pica", "symbol": "PICA", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" } ] }, @@ -103,10 +103,12 @@ "chain_name": "composablepolkadot", "base_denom": "79228162514264337593543950342" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } }, diff --git a/_non-cosmos/polkadot/assetlist.json b/_non-cosmos/polkadot/assetlist.json index 818319de6d..bcdd452cd0 100644 --- a/_non-cosmos/polkadot/assetlist.json +++ b/_non-cosmos/polkadot/assetlist.json @@ -57,11 +57,13 @@ "display": "DOT", "symbol": "DOT", "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" }, "coingecko_id": "polkadot", "images": [ { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } ] diff --git a/_non-cosmos/polygon/assetlist.json b/_non-cosmos/polygon/assetlist.json index d0a349371c..d7e6e1d08a 100644 --- a/_non-cosmos/polygon/assetlist.json +++ b/_non-cosmos/polygon/assetlist.json @@ -69,11 +69,13 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" }, "coingecko_id": "wmatic", "images": [ { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" } ] @@ -115,6 +117,10 @@ "coingecko_id": "usd-coin", "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] @@ -195,6 +201,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "frax-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } ] diff --git a/_non-cosmos/solana/assetlist.json b/_non-cosmos/solana/assetlist.json index ea1b110edc..0e4ce7ea03 100644 --- a/_non-cosmos/solana/assetlist.json +++ b/_non-cosmos/solana/assetlist.json @@ -63,6 +63,10 @@ "coingecko_id": "wrapped-solana", "images": [ { + "image_sync": { + "chain_name": "solana", + "base_denom": "Lamport" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } ] @@ -229,6 +233,358 @@ "website": "https://wormhole.com/", "twitter": "https://twitter.com/wormhole" } + }, + { + "description": "mSOL represents staked SOL in the Marinade stake pool.", + "extended_description": "mSOL is a liquid staking token that you receive when you stake SOL on the Marinade protocol. These mSOL tokens represent your staked SOL tokens in Marinade's stake pool.", + "type_asset": "erc20", + "address": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So", + "denom_units": [ + { + "denom": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So", + "exponent": 0 + }, + { + "denom": "msol", + "exponent": 9 + } + ], + "base": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So", + "name": "Marinade Staked SOL", + "display": "msol", + "symbol": "mSOL", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Marinade" + } + ], + "coingecko_id": "msol", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/msol.png" + } + ], + "socials": { + "website": "https://marinade.finance/", + "twitter": "https://twitter.com/MarinadeFinance" + } + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using Jito.", + "extended_description": "The Jito stake pool enables users to stake their Solana tokens in exchange for JitoSOL, allowing them to simultaneously earn from staking rewards and MEV rewards.", + "type_asset": "erc20", + "address": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "denom_units": [ + { + "denom": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "exponent": 0 + }, + { + "denom": "jitosol", + "exponent": 9 + } + ], + "base": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "name": "Jito Staked SOL", + "display": "jitosol", + "symbol": "jitoSOL", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Jito" + } + ], + "coingecko_id": "jito-staked-sol", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/jitosol.png" + } + ], + "socials": { + "website": "https://jito.network/", + "twitter": "https://twitter.com/jito_foundation" + } + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the BlazeStake protocol.", + "extended_description": "BlazeStake is a non-custodial Solana stake pool protocol that allows users to stake their SOL tokens and receive bSOL tokens in return.", + "type_asset": "erc20", + "address": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "denom_units": [ + { + "denom": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "exponent": 0 + }, + { + "denom": "bsol", + "exponent": 9 + } + ], + "base": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "name": "BlazeStake Staked SOL", + "display": "bsol", + "symbol": "bSOL", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "BlazeStake" + } + ], + "coingecko_id": "blazestake-staked-sol", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bsol.png" + } + ], + "socials": { + "website": "https://stake.solblaze.org/", + "twitter": "https://twitter.com/solblaze_org" + } + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the MarginFi protocol.", + "type_asset": "erc20", + "address": "LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp", + "denom_units": [ + { + "denom": "LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp", + "exponent": 0 + }, + { + "denom": "lst", + "exponent": 9 + } + ], + "base": "LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp", + "name": "Liquid Staking Token", + "display": "lst", + "symbol": "LST", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "MarginFi" + } + ], + "coingecko_id": "liquid-staking-token", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/lst.png" + } + ], + "socials": { + "website": "https://www.marginfi.com/", + "twitter": "https://twitter.com/marginfi" + } + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the Edgevana protocol.", + "extended_description": "edgeSOL represents ownership of staked SOL that's delegated to the top validators running on Edgevana.", + "type_asset": "erc20", + "address": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt", + "denom_units": [ + { + "denom": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt", + "exponent": 0 + }, + { + "denom": "edgesol", + "exponent": 9 + } + ], + "base": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt", + "name": "Edgevana Staked SOL", + "display": "edgesol", + "symbol": "edgeSOL", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Edgevana" + } + ], + "coingecko_id": "edgevana-staked-sol", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/edgesol.png" + } + ], + "socials": { + "website": "https://edgevana.com/", + "twitter": "https://twitter.com/edgevana" + } + }, + { + "description": "A liquid staked token that represents SOL staked to Helius's validator.", + "extended_description": "hSOL is a liquid representiation of staked SOL tokens to Helius, minted via Sanctum.", + "type_asset": "erc20", + "address": "he1iusmfkpAdwvxLNGV8Y1iSbj4rUy6yMhEA3fotn9A", + "denom_units": [ + { + "denom": "he1iusmfkpAdwvxLNGV8Y1iSbj4rUy6yMhEA3fotn9A", + "exponent": 0 + }, + { + "denom": "hsol", + "exponent": 9 + } + ], + "base": "he1iusmfkpAdwvxLNGV8Y1iSbj4rUy6yMhEA3fotn9A", + "name": "Helius Staked SOL", + "display": "hsol", + "symbol": "hSOL", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Helius" + } + ], + "coingecko_id": "helius-staked-sol", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/hsol.png" + } + ], + "socials": { + "website": "https://helius.dev/", + "twitter": "https://twitter.com/heliuslabs" + } + }, + { + "description": "A liquid staked token that represents SOL staked to Jupiter's validator.", + "extended_description": "JupSOL is a liquid staking token that represents SOL staked to the Jupiter validator, via Sanctum.", + "type_asset": "erc20", + "address": "jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v", + "denom_units": [ + { + "denom": "jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v", + "exponent": 0 + }, + { + "denom": "jupsol", + "exponent": 9 + } + ], + "base": "jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v", + "name": "Jupiter Staked SOL", + "display": "jupsol", + "symbol": "jupSOL", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Jupiter" + } + ], + "coingecko_id": "jupiter-staked-sol", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/jupsol.png" + } + ], + "socials": { + "website": "https://jup.ag/", + "twitter": "https://twitter.com/JupiterExchange" + } + }, + { + "description": "dogwifhat is a meme coin that operates on Solana.", + "type_asset": "erc20", + "address": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "denom_units": [ + { + "denom": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "exponent": 0 + }, + { + "denom": "wif", + "exponent": 6 + } + ], + "base": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "name": "dogwifhat", + "display": "wif", + "symbol": "WIF", + "coingecko_id": "dogwifcoin", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/wif.png" + } + ], + "socials": { + "website": "https://dogwifcoin.org/", + "twitter": "https://twitter.com/dogwifcoin" + } + }, + { + "description": "Tether, issued natively on Solana.", + "extended_description": "Tether USD (Native Solana), USDT is a native asset to Solana issued by Tether.", + "type_asset": "erc20", + "address": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "denom_units": [ + { + "denom": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "name": "Tether", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Tether" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png" + } + ], + "coingecko_id": "tether", + "socials": { + "website": "https://Tether.to/", + "twitter": "https://twitter.com/tether_to" + } } ] } \ No newline at end of file diff --git a/_non-cosmos/solana/images/bsol.png b/_non-cosmos/solana/images/bsol.png new file mode 100644 index 0000000000..610881748c Binary files /dev/null and b/_non-cosmos/solana/images/bsol.png differ diff --git a/_non-cosmos/solana/images/edgesol.png b/_non-cosmos/solana/images/edgesol.png new file mode 100644 index 0000000000..76949bb491 Binary files /dev/null and b/_non-cosmos/solana/images/edgesol.png differ diff --git a/_non-cosmos/solana/images/hsol.png b/_non-cosmos/solana/images/hsol.png new file mode 100644 index 0000000000..c1e9ab628b Binary files /dev/null and b/_non-cosmos/solana/images/hsol.png differ diff --git a/_non-cosmos/solana/images/jitosol.png b/_non-cosmos/solana/images/jitosol.png new file mode 100644 index 0000000000..8f6e2e1bba Binary files /dev/null and b/_non-cosmos/solana/images/jitosol.png differ diff --git a/_non-cosmos/solana/images/jupsol.png b/_non-cosmos/solana/images/jupsol.png new file mode 100644 index 0000000000..d9b8b10b8b Binary files /dev/null and b/_non-cosmos/solana/images/jupsol.png differ diff --git a/_non-cosmos/solana/images/lst.png b/_non-cosmos/solana/images/lst.png new file mode 100644 index 0000000000..488c9732ca Binary files /dev/null and b/_non-cosmos/solana/images/lst.png differ diff --git a/_non-cosmos/solana/images/msol.png b/_non-cosmos/solana/images/msol.png new file mode 100644 index 0000000000..39d5eaf08b Binary files /dev/null and b/_non-cosmos/solana/images/msol.png differ diff --git a/_non-cosmos/solana/images/wif.png b/_non-cosmos/solana/images/wif.png new file mode 100644 index 0000000000..dcd5d22857 Binary files /dev/null and b/_non-cosmos/solana/images/wif.png differ diff --git a/_non-cosmos/zilliqa/assetlist.json b/_non-cosmos/zilliqa/assetlist.json new file mode 100644 index 0000000000..a07798b036 --- /dev/null +++ b/_non-cosmos/zilliqa/assetlist.json @@ -0,0 +1,19 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "zilliqa", + "assets": [ + { + "type_asset": "evm-base", + "denom_units": [ + { + "denom": "wei", + "exponent": 0 + } + ], + "base": "wei", + "display": "wei", + "name": "Ether", + "symbol": "ETH" + } + ] +} \ No newline at end of file diff --git a/_template/assetlist.json b/_template/assetlist.json index 07b9191d8e..4aa6fd2aec 100644 --- a/_template/assetlist.json +++ b/_template/assetlist.json @@ -1,28 +1,30 @@ { - "$schema": "../assetlist.schema.json", - "chain_name": "", - "assets": [ - { - "description": "The native staking token of EXAMPLE.", - "denom_units": [ - { - "denom": "uexp", - "exponent": 0 - }, - { - "denom": "example", - "exponent": 6 - } - ], - "base": "uexample", - "name": "Example", - "display": "example", - "symbol": "EXP", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_template/images/chain_image.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_template/images/chain_image.svg" + "$schema": "../assetlist.schema.json", + "chain_name": "examplechain", + "assets": [ + { + "description": "The native staking token of examplechain.", + "denom_units": [ + { + "denom": "uexp", + "exponent": 0 }, - "coingecko_id": "" - } - ] + { + "denom": "example/6", + "exponent": 6 + } + ], + "base": "uexample", + "name": "Example", + "display": "example/6", + "symbol": "EXP", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_template/images/exp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_template/images/exp.svg" + } + ], + "coingecko_id": "examplechain-cgid-but-only-if-exists" + } + ] } diff --git a/_template/chain.json b/_template/chain.json index aef6b48408..e7913d34e7 100644 --- a/_template/chain.json +++ b/_template/chain.json @@ -1,22 +1,20 @@ { "$schema": "../chain.schema.json", - "chain_name": "", + "chain_name": "examplechain", "status": "live", - "website": "", + "website": "https://examplechain.io/", "network_type": "mainnet", - "pretty_name": "", - "chain_id": "", - "bech32_prefix": "", - "daemon_name": "", + "pretty_name": "Example Chain", + "chain_id": "example-1", + "bech32_prefix": "xmpl", + "daemon_name": "exampled", "node_home": "$HOME/", - "key_algos": [ - "secp256k1" - ], + "key_algos": ["secp256k1"], "slip44": 118, "fees": { "fee_tokens": [ { - "denom": "", + "denom": "uexp", "fixed_min_gas_price": 0, "low_gas_price": 0, "average_gas_price": 0.025, @@ -27,17 +25,18 @@ "staking": { "staking_tokens": [ { - "denom": "" + "denom": "uexp" } ] }, "codebase": { - "git_repo": "", - "recommended_version": "v1.0.0", + "git_repo": "https://github.com/organization/repository", + "recommended_version": "v2.0.2", "compatible_versions": [ - "v1.0.0" + "v2.0.2", + "v2.0.0" ], - "cosmos_sdk_version": "", + "cosmos_sdk_version": "0.50", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.example/data/wasm", "binaries": { @@ -53,19 +52,37 @@ "compatible_versions": [ "v1.0.0" ], - "cosmos_sdk_version": "", + "cosmos_sdk_version": "0.50", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.example/data/wasm", + "binaries": { + "linux/amd64": "OPTIONAL, REMOVE IF NOT NEEDED" + }, + "next_version_name": "v2" + }, + { + "name": "v2", + "recommended_version": "v2.0.2", + "compatible_versions": [ + "v2.0.2", + "v2.0.0" + ], + "cosmos_sdk_version": "0.50", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.example/data/wasm", "binaries": { "linux/amd64": "OPTIONAL, REMOVE IF NOT NEEDED" - } + }, + "previous_verion_name": "v1" } ] }, - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_template/images/chain_image.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_template/images/chain_image.svg" - }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_template/images/chain_image.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_template/images/chain_image.svg" + } + ], "peers": { "seeds": [ { @@ -83,6 +100,12 @@ ] }, "apis": { + "wss": [ + { + "address": "wss://rpc.example.com/query", + "provider": "Example Labs" + } + ], "rpc": [ { "address": "https://rpc.example.com", diff --git a/akash/chain.json b/akash/chain.json index bdacae4203..25c8680923 100644 --- a/akash/chain.json +++ b/akash/chain.json @@ -378,7 +378,7 @@ "provider": "ValidatorNode" }, { - "address": "https://lcd-akash.whispernode.com:443", + "address": "https://api-akash.whispernode.com:443", "provider": "WhisperNode 🤐" }, { @@ -426,6 +426,10 @@ { "address": "https://akash.declab.pro:9001", "provider": "Decloud Nodes Lab" + }, + { + "address": "grpc-akash.whispernode.com:443", + "provider": "WhisperNode 🤐" } ] }, @@ -472,6 +476,12 @@ "kind": "Decloud Nodes Lab", "url": "https://explorer.declab.pro/Akash", "tx_page": "https://explorer.declab.pro/Akash/tx/${txHash}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/akash", + "tx_page": "https://mainnet.whispernode.com/akash/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/akash/account/${accountAddress}" } ], "images": [ diff --git a/althea/assetlist.json b/althea/assetlist.json index 38919c103a..62742ef393 100644 --- a/althea/assetlist.json +++ b/althea/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/althea/chain.json b/althea/chain.json index 0085beeca7..e43e5175d3 100644 --- a/althea/chain.json +++ b/althea/chain.json @@ -42,7 +42,9 @@ "codebase": { "git_repo": "https://github.com/AltheaFoundation/althea-L1", "recommended_version": "v1.3.0", - "compatible_versions": ["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" }, @@ -50,7 +52,9 @@ { "name": "v1", "recommended_version": "v1.3.0", - "compatible_versions": ["v1.3.0"] + "compatible_versions": [ + "v1.3.0" + ] } ], "genesis": { @@ -62,13 +66,35 @@ { "address": "https://nodes.chandrastation.com/api/althea/", "provider": "Chandra Station" + }, + { + "address": "https://althea.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://althea-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ], "rpc": [ { "address": "https://nodes.chandrastation.com/rpc/althea/", "provider": "Chandra Station" + }, + { + "address": "https://althea.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://althea-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + } + ], + "grpc": [ + { + "address": "https://althea-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ] } -} +} \ No newline at end of file diff --git a/archway/chain.json b/archway/chain.json index 5f786e612f..3ab239e56a 100644 --- a/archway/chain.json +++ b/archway/chain.json @@ -36,15 +36,16 @@ }, "codebase": { "git_repo": "https://github.com/archway-network/archway", - "recommended_version": "v7.0.0", + "recommended_version": "v7.0.1", "compatible_versions": [ - "v7.0.0" + "v7.0.0", + "v7.0.1" ], "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" + "linux/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_linux_amd64", + "linux/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_linux_arm64", + "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_darwin_amd64", + "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_darwin_arm64" }, "cosmos_sdk_version": "v0.47.11", "ibc_go_version": "v7.4.0", @@ -160,15 +161,16 @@ "name": "v7.0.0", "proposal": 43, "height": 4473000, - "recommended_version": "v7.0.0", + "recommended_version": "v7.0.1", "compatible_versions": [ - "v7.0.0" + "v7.0.0", + "v7.0.1" ], "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" + "linux/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_linux_amd64", + "linux/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_linux_arm64", + "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_darwin_amd64", + "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_darwin_arm64" }, "cosmos_sdk_version": "v0.47.11", "ibc_go_version": "v7.4.0", @@ -641,6 +643,12 @@ "url": "https://ezstaking.app/archway", "tx_page": "https://ezstaking.app/archway/txs/${txHash}", "account_page": "https://ezstaking.app/archway/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/archway", + "tx_page": "https://mainnet.whispernode.com/archway/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/archway/account/${accountAddress}" } ], "images": [ @@ -649,4 +657,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" } ] -} \ No newline at end of file +} diff --git a/assetmantle/chain.json b/assetmantle/chain.json index 0bc6abde58..f2e5ae025d 100644 --- a/assetmantle/chain.json +++ b/assetmantle/chain.json @@ -258,6 +258,12 @@ "url": "https://atomscan.com/assetmantle", "tx_page": "https://atomscan.com/assetmantle/transactions/${txHash}", "account_page": "https://atomscan.com/assetmantle/accounts/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/assetmantle", + "tx_page": "https://mainnet.whispernode.com/assetmantle/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/assetmantle/account/${accountAddress}" } ], "images": [ diff --git a/axelar/assetlist.json b/axelar/assetlist.json index fe8f85f90e..4c1d2ec403 100644 --- a/axelar/assetlist.json +++ b/axelar/assetlist.json @@ -103,6 +103,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } ] @@ -160,6 +164,7 @@ "name": "Tether USD", "display": "usdt", "symbol": "USDT", + "coingecko_id": "axelar-usdt", "traces": [ { "type": "bridge", @@ -232,6 +237,7 @@ "name": "Wrapped Bitcoin", "display": "wbtc", "symbol": "WBTC", + "coingecko_id": "axlwbtc", "traces": [ { "type": "bridge", @@ -282,6 +288,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" } ] @@ -317,6 +327,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x4d224452801aced8b2f0aebe155379bb5d594381" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" } ] @@ -352,6 +366,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" } ] @@ -388,6 +406,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" } @@ -424,6 +446,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" } ] @@ -459,6 +485,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" } ] @@ -494,6 +524,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" } ] @@ -529,6 +563,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" } ] @@ -564,6 +602,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" } ] @@ -599,6 +641,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" } ] @@ -635,6 +681,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "moonbeam", + "base_denom": "0xffffffff1fcacbd218edc0eba20fc2308c778080" + }, "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" } @@ -672,6 +722,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "moonbeam", + "base_denom": "0xacc15dc74880c9944775448304b263d191c6077f" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } @@ -709,6 +763,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "polygon", + "base_denom": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" } @@ -746,6 +804,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "binancesmartchain", + "base_denom": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" } @@ -778,11 +840,17 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x4fabb145d64652a948d72533023f6e7a623c7c53" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg" } ] }, @@ -817,6 +885,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "avalanche", + "base_denom": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } ] @@ -848,11 +920,17 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" + "image_sync": { + "chain_name": "fantom", + "base_denom": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg" } ] }, @@ -962,6 +1040,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "filecoin", + "base_denom": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg" } @@ -999,6 +1081,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "arbitrum", + "base_denom": "0x912CE59144191C1204E64559FE8253a0e49E6548" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" } diff --git a/axelar/chain.json b/axelar/chain.json index 53452ccf97..be3e67838d 100644 --- a/axelar/chain.json +++ b/axelar/chain.json @@ -420,6 +420,12 @@ "url": "https://ezstaking.app/axelar", "tx_page": "https://ezstaking.app/axelar/txs/${txHash}", "account_page": "https://ezstaking.app/axelar/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/axelar", + "tx_page": "https://mainnet.whispernode.com/axelar/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/axelar/account/${accountAddress}" } ], "images": [ diff --git a/bitcanna/chain.json b/bitcanna/chain.json index 4b559aed84..f63c8cc643 100644 --- a/bitcanna/chain.json +++ b/bitcanna/chain.json @@ -33,20 +33,20 @@ }, "codebase": { "git_repo": "https://github.com/BitCannaGlobal/bcna", - "recommended_version": "v3.0.2", + "recommended_version": "v3.1.0", "compatible_versions": [ - "v3.0.2" + "v3.1.0" ], "binaries": { - "linux/amd64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.0.2/bcna_linux_amd64.tar.gz", - "linux/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.0.2/bcna_linux_arm64.tar.gz", - "darwin/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.0.2/bcna_darwin_arm64.tar.gz" + "linux/amd64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0/bcna_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0/bcna_linux_arm64.tar.gz", + "darwin/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0/bcna_darwin_arm64.tar.gz" }, - "cosmos_sdk_version": "v0.47.9", - "ibc_go_version": "v7.3.1", + "cosmos_sdk_version": "v0.47.11", + "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", - "version": "v0.37.4" + "version": "v0.37.5" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/BitCannaGlobal/bcna/main/genesis.json" @@ -119,6 +119,27 @@ "type": "cometbft", "version": "v0.37.4" }, + "next_version_name": "ganjarevolutionburn" + }, + { + "name": "ganjarevolutionburn", + "proposal": 15, + "height": 13846420, + "recommended_version": "v3.1.0", + "compatible_versions": [ + "v3.1.0" + ], + "binaries": { + "linux/amd64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0/bcna_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0/bcna_linux_arm64.tar.gz", + "darwin/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0/bcna_darwin_arm64.tar.gz" + }, + "cosmos_sdk_version": "v0.47.11", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, "next_version_name": "" } ] @@ -691,6 +712,12 @@ "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}" + }, + { + "kind": "Blockchain Explorer by AVIAONE 🟢", + "url": "https://mainnet.explorer.aviaone.com/bitcanna", + "tx_page": "https://mainnet.explorer.aviaone.com/bitcanna/txs/${txHash}", + "account_page": "https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}" } ], "images": [ diff --git a/canto/chain.json b/canto/chain.json index 766a9b2a1e..13783e17c4 100644 --- a/canto/chain.json +++ b/canto/chain.json @@ -205,27 +205,11 @@ ] }, "explorers": [ - { - "kind": "bigdipper", - "url": "https://cosmos.explorer.canto.io", - "tx_page": "https://cosmos.explorer.canto.io/transactions/${txHash}" - }, - { - "kind": "blockscout", - "url": "https://evm.explorer.canto.io/", - "tx_page": "https://evm.explorer.canto.io/tx/${txHash}" - }, { "kind": "ping.pub", "url": "https://cosmos-explorers.neobase.one/canto", "tx_page": "https://cosmos-explorers.neobase.one/canto/tx/${txHash}" }, - { - "kind": "mintscan", - "url": "https://www.mintscan.io/canto", - "tx_page": "https://www.mintscan.io/canto/transactions/${txHash}", - "account_page": "https://www.mintscan.io/canto/accounts/${accountAddress}" - }, { "kind": "TC Network", "url": "https://explorer.tcnetwork.io/canto", diff --git a/carbon/assetlist.json b/carbon/assetlist.json index 4f35e02d3c..5d2961485b 100644 --- a/carbon/assetlist.json +++ b/carbon/assetlist.json @@ -105,6 +105,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "binancesmartchain", + "base_denom": "wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" } @@ -192,6 +196,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "binancesmartchain", + "base_denom": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" } ] @@ -389,11 +397,17 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + "image_sync": { + "chain_name": "stargaze", + "base_denom": "ustars" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } ] }, @@ -432,11 +446,17 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" + "image_sync": { + "chain_name": "terra2", + "base_denom": "uluna" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } ] }, @@ -526,6 +546,10 @@ "coingecko_id": "milkyway-staked-tia", "images": [ { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg" } @@ -571,6 +595,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "ustrd" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } @@ -616,6 +644,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "evmos", + "base_denom": "aevmos" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } @@ -661,6 +693,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "irisnet", + "base_denom": "uiris" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" } @@ -701,11 +737,17 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png" + "image_sync": { + "chain_name": "kujira", + "base_denom": "ukuji" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" } ] }, @@ -749,6 +791,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stuosmo" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" } @@ -789,11 +835,17 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png" + "image_sync": { + "chain_name": "canto", + "base_denom": "acanto" + }, + "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" } ] }, @@ -837,6 +889,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } @@ -882,6 +938,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stuatom" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" } @@ -927,6 +987,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } @@ -956,7 +1020,7 @@ "type": "bridge", "counterparty": { "chain_name": "ethereum", - "base_denom": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" }, "chain": { @@ -970,6 +1034,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] @@ -1012,6 +1080,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "binancesmartchain", + "base_denom": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] diff --git a/carbon/chain.json b/carbon/chain.json index b0fa852bf8..b72bb81dd3 100644 --- a/carbon/chain.json +++ b/carbon/chain.json @@ -301,13 +301,13 @@ }, "codebase": { "git_repo": "https://github.com/Switcheo/carbon-bootstrap", - "recommended_version": "v2.38.1", + "recommended_version": "v2.43.0", "compatible_versions": [ - "v2.38.1" + "v2.43.0" ], "binaries": { - "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.38.1/carbond2.38.1-mainnet.linux-amd64.tar.gz", - "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.38.1/carbond2.38.1-mainnet.linux-arm64.tar.gz" + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.43.0/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.43.0/carbond-mainnet.linux-arm64.tar.gz" }, "genesis": { "genesis_url": "https://github.com/Switcheo/carbon-bootstrap/raw/master/carbon-1/genesis.json" @@ -525,6 +525,76 @@ "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.38.1/carbond2.38.1-mainnet.linux-amd64.tar.gz", "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.38.1/carbond2.38.1-mainnet.linux-arm64.tar.gz" }, + "next_version_name": "v2.39.0" + }, + { + "name": "v2.39.0", + "proposal": 349, + "height": 56495871, + "recommended_version": "v2.39.0", + "compatible_versions": [ + "v2.39.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.39.0/carbond2.39.0-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.39.0/carbond2.39.0-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.40.0" + }, + { + "name": "v2.40.0", + "proposal": 352, + "height": 56635731, + "recommended_version": "v2.40.0", + "compatible_versions": [ + "v2.40.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.40.0/carbond2.40.0-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.40.0/carbond2.40.0-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.41.0" + }, + { + "name": "v2.41.0", + "proposal": 353, + "height": 57169241, + "recommended_version": "v2.41.1", + "compatible_versions": [ + "v2.41.1" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.41.1/carbond2.41.1-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.41.1/carbond2.41.1-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.42.0" + }, + { + "name": "v2.42.0", + "proposal": 355, + "height": 57602151, + "recommended_version": "v2.42.0", + "compatible_versions": [ + "v2.42.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.42.0/carbond2.42.0-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.42.0/carbond2.42.0-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.43.0" + }, + { + "name": "v2.43.0", + "proposal": 356, + "height": 57636191, + "recommended_version": "v2.43.0", + "compatible_versions": [ + "v2.43.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.43.0/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.43.0/carbond-mainnet.linux-arm64.tar.gz" + }, "next_version_name": "" } ] diff --git a/celestia/chain.json b/celestia/chain.json index 89b5d8f7fd..9db0eb1d20 100644 --- a/celestia/chain.json +++ b/celestia/chain.json @@ -33,13 +33,14 @@ }, "codebase": { "git_repo": "https://github.com/celestiaorg/celestia-app", - "recommended_version": "v1.7.0", + "recommended_version": "v1.9.0", "compatible_versions": [ "v1.3.0", "v1.6.0", - "v1.7.0" + "v1.7.0", + "v1.9.0" ], - "cosmos_sdk_version": "v0.46.16", + "cosmos_sdk_version": "celestiaorg/cosmos-sdk v1.20.1-sdk-v0.46.16", "ibc_go_version": "v6.2.1", "consensus": { "type": "tendermint", @@ -51,13 +52,14 @@ "versions": [ { "name": "v1.3.0", - "recommended_version": "v1.7.0", + "recommended_version": "v1.9.0", "compatible_versions": [ "v1.3.0", "v1.6.0", - "v1.7.0" + "v1.7.0", + "v1.9.0" ], - "cosmos_sdk_version": "v0.46.16", + "cosmos_sdk_version": "celestiaorg/cosmos-sdk v1.20.1-sdk-v0.46.16", "ibc_go_version": "v6.2.1", "consensus": { "type": "tendermint", @@ -135,9 +137,14 @@ "provider": "FreshSTAKING" }, { - "id": "7e21ee80adda9fc86b74bccb399a110022067e03", + "id": "8de3b1534abc9d565f232982c0fb7933c0038ead", "address": "celestia-full.avril14th.org:26656", "provider": "Avril 14th" + }, + { + "id": "12ad7c73c7e1f2460941326937a039139aa78884", + "address": "celestia-mainnet-seed.itrocket.net:40656", + "provider": "🚀 itrocket 🚀" } ], "persistent_peers": [ @@ -167,9 +174,14 @@ "provider": "Cumulo" }, { - "id": "7e21ee80adda9fc86b74bccb399a110022067e03", + "id": "8de3b1534abc9d565f232982c0fb7933c0038ead", "address": "celestia-full.avril14th.org:26656", "provider": "Avril 14th" + }, + { + "id": "d535cbf8d0efd9100649aa3f53cb5cbab33ef2d6", + "address": "celestia-mainnet-peer.itrocket.net:40656", + "provider": "🚀 itrocket 🚀" } ] }, @@ -278,6 +290,10 @@ { "address": "https://rpc.celestia.citizenweb3.com", "provider": "Citizen Web3" + }, + { + "address": "https://celestia-mainnet-rpc.itrocket.net", + "provider": "🚀 itrocket 🚀" } ], "rest": [ @@ -372,6 +388,10 @@ { "address": "https://celestia-api.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://celestia-mainnet-api.itrocket.net", + "provider": "🚀 itrocket 🚀" } ], "grpc": [ @@ -450,6 +470,10 @@ { "address": "celestia-grpc.noders.services:11090", "provider": "[NODERS]TEAM" + }, + { + "address": "celestia-mainnet-grpc.itrocket.net:40090", + "provider": "🚀 itrocket 🚀" } ] }, @@ -494,6 +518,12 @@ "url": "https://ezstaking.app/celestia", "tx_page": "https://ezstaking.app/celestia/txs/${txHash}", "account_page": "https://ezstaking.app/celestia/account/${accountAddress}" + }, + { + "kind": "🚀 itrocket 🚀", + "url": "https://mainnet.itrocket.net/celestia", + "tx_page": "https://mainnet.itrocket.net/celestia/transaction/${txHash}", + "account_page": "https://mainnet.itrocket.net/celestia/account/${accountAddress}" } ], "images": [ @@ -502,4 +532,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 03b719f6dc..6e7270a41e 100644 --- a/chain.schema.json +++ b/chain.schema.json @@ -4,11 +4,7 @@ "title": "Chain", "description": "Chain.json is a metadata file that contains information about a blockchain.", "type": "object", - "required": [ - "chain_name", - "chain_id", - "bech32_prefix" - ], + "required": ["chain_name", "chain_id", "bech32_prefix"], "properties": { "$schema": { "type": "string", @@ -37,18 +33,10 @@ "format": "uri" }, "status": { - "enum": [ - "live", - "upcoming", - "killed" - ] + "enum": ["live", "upcoming", "killed"] }, "network_type": { - "enum": [ - "mainnet", - "testnet", - "devnet" - ] + "enum": ["mainnet", "testnet", "devnet"] }, "bech32_prefix": { "type": "string", @@ -96,13 +84,7 @@ "type": "array", "items": { "type": "string", - "enum": [ - "secp256k1", - "ethsecp256k1", - "ed25519", - "sr25519", - "bn254" - ], + "enum": ["secp256k1", "ethsecp256k1", "ed25519", "sr25519", "bn254"], "uniqueItems": true } }, @@ -117,9 +99,7 @@ }, "fees": { "type": "object", - "required": [ - "fee_tokens" - ], + "required": ["fee_tokens"], "properties": { "fee_tokens": { "type": "array", @@ -132,9 +112,7 @@ }, "staking": { "type": "object", - "required": [ - "staking_tokens" - ], + "required": ["staking_tokens"], "properties": { "staking_tokens": { "type": "array", @@ -216,17 +194,11 @@ }, "consensus": { "type": "object", - "required": [ - "type" - ], + "required": ["type"], "properties": { "type": { "type": "string", - "enum": [ - "tendermint", - "cometbft", - "sei-tendermint" - ] + "enum": ["tendermint", "cometbft", "sei-tendermint"] }, "version": { "type": "string" @@ -254,18 +226,12 @@ "items": { "type": "string", "description": "IBC app or ICS standard.", - "enum": [ - "ics20-1", - "ics27-1", - "mauth" - ] + "enum": ["ics20-1", "ics27-1", "mauth"] } }, "genesis": { "type": "object", - "required": [ - "genesis_url" - ], + "required": ["genesis_url"], "properties": { "name": { "type": "string" @@ -285,9 +251,7 @@ "type": "array", "items": { "type": "object", - "required": [ - "name" - ], + "required": ["name"], "properties": { "name": { "type": "string", @@ -332,17 +296,11 @@ }, "consensus": { "type": "object", - "required": [ - "type" - ], + "required": ["type"], "properties": { "type": { "type": "string", - "enum": [ - "tendermint", - "cometbft", - "sei-tendermint" - ] + "enum": ["tendermint", "cometbft", "sei-tendermint"] }, "version": { "type": "string" @@ -370,11 +328,7 @@ "items": { "type": "string", "description": "IBC app or ICS standard.", - "enum": [ - "ics20-1", - "ics27-1", - "mauth" - ] + "enum": ["ics20-1", "ics27-1", "mauth"] } }, "binaries": { @@ -577,10 +531,7 @@ "type": "array", "items": { "type": "string", - "enum": [ - "ethermint", - "injective" - ], + "enum": ["ethermint", "injective"], "uniqueItems": true } } @@ -589,10 +540,7 @@ "$defs": { "peer": { "type": "object", - "required": [ - "id", - "address" - ], + "required": ["id", "address"], "properties": { "id": { "type": "string" @@ -608,9 +556,7 @@ }, "endpoint": { "type": "object", - "required": [ - "address" - ], + "required": ["address"], "properties": { "address": { "type": "string" @@ -645,9 +591,7 @@ }, "fee_token": { "type": "object", - "required": [ - "denom" - ], + "required": ["denom"], "properties": { "denom": { "type": "string" @@ -682,9 +626,7 @@ }, "staking_token": { "type": "object", - "required": [ - "denom" - ], + "required": ["denom"], "properties": { "denom": { "type": "string" @@ -695,9 +637,7 @@ "pointer": { "type": "object", "description": "The (primary) key used to identify an object within the Chain Registry.", - "required": [ - "chain_name" - ], + "required": ["chain_name"], "properties": { "chain_name": { "type": "string", diff --git a/chain4energy/assetlist.json b/chain4energy/assetlist.json index 460a1310df..2597ebaeed 100644 --- a/chain4energy/assetlist.json +++ b/chain4energy/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "The native token of Chain4Energy", + "extended_description": "C4E is a DePIN L1 Blockchain platform, designed to support a variety of innovative energy and e-mobility applications by creating a decentralized and democratized community-powered ecosystem.", "denom_units": [ { "denom": "uc4e", @@ -21,7 +22,7 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" }, - "coingecko_id": "", + "coingecko_id": "chain4energy", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" diff --git a/chain4energy/images/c4e.png b/chain4energy/images/c4e.png index b0e03c2082..1e572ad2de 100644 Binary files a/chain4energy/images/c4e.png and b/chain4energy/images/c4e.png differ diff --git a/cheqd/chain.json b/cheqd/chain.json index 0af5626d6c..3879ccef14 100644 --- a/cheqd/chain.json +++ b/cheqd/chain.json @@ -32,6 +32,7 @@ "git_repo": "https://github.com/cheqd/cheqd-node", "recommended_version": "v2.0.1", "compatible_versions": [ + "v2.0.0", "v2.0.1" ], "binaries": { @@ -41,55 +42,148 @@ "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": "cheqd/cosmos-sdk v0.47.10-height-mismatch", + "ibc_go_version": "v7.4.0", "consensus": { "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" }, "versions": [ + { + "name": "v0.3", + "recommended_version": "v0.3.1", + "compatible_versions": [ + "v0.3.1" + ], + "cosmos_sdk_version": "0.44.3", + "ibc_go_version": "v1.2.3", + "consensus": { + "type": "tendermint", + "version": "0.34.14" + }, + "binaries": { + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.3.1/cheqd-node_0.3.1_amd64.deb" + }, + "next_version_name": "v0.4" + }, + { + "name": "v0.4", + "recommended_version": "v0.4.1", + "compatible_versions": [ + "v0.4.0", + "v0.4.1" + ], + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.44.5-cheqd", + "ibc_go_version": "v1.2.3", + "consensus": { + "type": "tendermint", + "version": "0.34.14" + }, + "proposal": 2, + "height": 1171198, + "binaries": { + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.4.1/cheqd-node_0.4.1_amd64.deb" + }, + "previous_version_name": "v0.3", + "next_version_name": "v0.5" + }, + { + "name": "v0.5", + "recommended_version": "v0.5.0", + "compatible_versions": [ + "v0.5.0" + ], + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.44.5-cheqd", + "ibc_go_version": "v1.4.0", + "consensus": { + "type": "tendermint", + "version": "0.34.15" + }, + "proposal": 3, + "height": 1971324, + "binaries": { + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.5.0/cheqd-node_0.5.0_amd64.deb" + }, + "previous_version_name": "v0.4", + "next_version_name": "v0.6" + }, + { + "name": "v0.6", + "recommended_version": "v0.6.10", + "compatible_versions": [ + "v0.6.0", + "v0.6.1", + "v0.6.7", + "v0.6.9", + "v0.6.10" + ], + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.45.9-cheqd-tag", + "ibc_go_version": "v3.3.0", + "consensus": { + "type": "tendermint", + "version": "0.34.21" + }, + "proposal": 6, + "height": 3561652, + "binaries": { + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.6.10/cheqd-noded-0.6.10-linux-x86_64.tar.gz", + "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v0.6.10/cheqd-noded-0.6.10-linux-arm64.tar.gz" + }, + "previous_version_name": "v0.5", + "next_version_name": "v1" + }, { "name": "v1", - "recommended_version": "v1.4.4", + "recommended_version": "v1.4.5", "compatible_versions": [ "v1.2.5", "v1.3.0", "v1.4.0", - "v1.4.4" + "v1.4.2", + "v1.4.4", + "v1.4.5" ], - "cosmos_sdk_version": "0.46.10", + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.46.10-barberry", + "ibc_go_version": "v6.1.1", "consensus": { "type": "tendermint", "version": "0.34.26" }, + "proposal": 12, + "height": 6427280, "binaries": { - "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-amd64.tar.gz", - "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-arm64.tar.gz", - "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-amd64.tar.gz", - "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-arm64.tar.gz" + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-linux-arm64.tar.gz", + "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-darwin-amd64.tar.gz", + "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-darwin-arm64.tar.gz" }, + "previous_version_name": "v0.6", "next_version_name": "v2" }, { "name": "v2", "recommended_version": "v2.0.1", "compatible_versions": [ + "v2.0.0", "v2.0.1" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.47.10-height-mismatch", + "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "0.37.5" }, - "ibc_go_version": "v7.4.0", + "proposal": 48, + "height": 13024570, "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" }, + "previous_version_name": "v1", "next_version_name": "" } ] @@ -206,6 +300,10 @@ { "address": "https://cheq-rpc.kleomedes.network", "provider": "Kleomedes" + }, + { + "address": "https://cheqd-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "rest": [ @@ -248,6 +346,10 @@ { "address": "https://cheq-api.kleomedes.network", "provider": "Kleomedes" + }, + { + "address": "https://cheqd-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "grpc": [ @@ -278,6 +380,10 @@ { "address": "grpc-cheqd.blockval.io:9290", "provider": "Blockval" + }, + { + "address": "cheqd-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, @@ -319,6 +425,12 @@ "kind": "ping.pub", "url": "https://ping.wildsage.io/cheqd", "tx_page": "https://ping.wildsage.io/cheqd/tx/${txHash}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/cheqd", + "tx_page": "https://mainnet.whispernode.com/cheqd/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/cheqd/account/${accountAddress}" } ], "logo_URIs": { diff --git a/chihuahua/assetlist.json b/chihuahua/assetlist.json index 5bb4463a0f..809746f28d 100644 --- a/chihuahua/assetlist.json +++ b/chihuahua/assetlist.json @@ -234,6 +234,34 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bhuahua.png" }, "coingecko_id": "backbone-labs-staked-huahua" + }, + { + "description": "ashHUAHUA - Burned HUAHUA", + "extended_description": "ashHUAHUA - receipt token recieved when burning HUAHUA via ASH DAOs Furnace", + "denom_units": [ + { + "denom": "factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash", + "exponent": 0 + }, + { + "denom": "ashHUAHUA", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0", + "base": "factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash", + "name": "Burned HUAHUA", + "display": "ashHUAHUA", + "symbol": "ashHUAHUA", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/ashhuahua.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/ashhuahua.png" + } } ] } \ No newline at end of file diff --git a/chihuahua/chain.json b/chihuahua/chain.json index 5881491db3..8d2337d42b 100644 --- a/chihuahua/chain.json +++ b/chihuahua/chain.json @@ -33,16 +33,16 @@ }, "codebase": { "git_repo": "https://github.com/ChihuahuaChain/chihuahua/", - "recommended_version": "v6.0.1", + "recommended_version": "v7", "compatible_versions": [ - "v6.0.1" + "v7" ], - "cosmos_sdk_version": "v0.47.5", + "cosmos_sdk_version": "v0.47.8", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.4" }, - "ibc_go_version": "7.3.0", + "ibc_go_version": "7.4.0", "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.chihuahuad/data/wasm", @@ -131,6 +131,25 @@ "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.chihuahuad/data/wasm", + "next_version_name": "v7" + }, + { + "name": "v7", + "recommended_version": "v7", + "compatible_versions": [ + "v7" + ], + "proposal": 75, + "height": 12900000, + "cosmos_sdk_version": "v0.47.8", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "ibc_go_version": "7.4.0", + "cosmwasm_version": "v0.41.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.chihuahuad/data/wasm", "next_version_name": "" } ] @@ -399,4 +418,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/ashhuahua.png b/chihuahua/images/ashhuahua.png new file mode 100644 index 0000000000..40f9fdf108 Binary files /dev/null and b/chihuahua/images/ashhuahua.png differ diff --git a/comdex/chain.json b/comdex/chain.json index e60a971ace..3b6e6e2403 100644 --- a/comdex/chain.json +++ b/comdex/chain.json @@ -396,6 +396,12 @@ "kind": "ValidatorNode", "url": "https://explorer.validatornode.com/comdex", "tx_page": "https://explorer.validatornode.com/comdex/tx/${txHash}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/comdex", + "tx_page": "https://mainnet.whispernode.com/comdex/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/comdex/account/${accountAddress}" } ], "images": [ diff --git a/composable/assetlist.json b/composable/assetlist.json index 47ee5d68af..c87e635efd 100644 --- a/composable/assetlist.json +++ b/composable/assetlist.json @@ -35,14 +35,14 @@ "chain_name": "picasso", "base_denom": "ppica" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" }, "socials": { - "website": "https://picasso.xyz/", + "website": "https://picasso.network/", "twitter": "https://twitter.com/picasso_network" } }, @@ -133,10 +133,12 @@ "chain_name": "picasso", "base_denom": "79228162514264337593543950342" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } }, @@ -232,6 +234,7 @@ }, { "description": "The native token of Ethereum, bridged via IBC.", + "extended_description": "Ether is the native token of the Ethereum blockchain. It powers a wide range of decentralized applications and smart contracts on the platform. This specific version has been bridged through Picasso's implementation of IBC on Ethereum.", "denom_units": [ { "denom": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C", @@ -277,10 +280,15 @@ "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" } - ] + ], + "socials": { + "website": "https://ethereum.org/", + "twitter": "https://twitter.com/ethereum" + } }, { "description": "A stablecoin issued by Maker Protocol.", + "extended_description": "DAI, a stablecoin issued by the Maker Protocol, maintains a value pegged to the US dollar. This specific version has been bridged through Picasso's implementation of IBC on Ethereum.", "denom_units": [ { "denom": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533", @@ -324,10 +332,15 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" } - ] + ], + "socials": { + "website": "https://makerdao.com/", + "twitter": "https://twitter.com/MakerDAO" + } }, { "description": "The governance token of the Frax ecosystem.", + "extended_description": "Frax Shares is the governance and utility token of the Frax Protocol. It plays a crucial role in maintaining the stability of the FRAX stablecoin. Holders of FXS can participate in governance decisions and benefit from the protocol's growth and revenue, as the token captures fees.", "denom_units": [ { "denom": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29", @@ -373,10 +386,15 @@ "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" } - ] + ], + "socials": { + "website": "https://www.frax.com/", + "twitter": "https://twitter.com/fraxfinance" + } }, { - "description": "The first fractional-algorithmic stablecoin.", + "description": "The first fractional-algorithmic stablecoin by Frax Finance.", + "extended_description": "FRAX is a stablecoin designed to maintain a stable value to a peg of the US dollar. It is issued by the Frax Protocol, which employs a hybrid approach combining algorithmic mechanisms with collateral backing.", "denom_units": [ { "denom": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB", @@ -420,10 +438,15 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } - ] + ], + "socials": { + "website": "https://www.frax.com/", + "twitter": "https://twitter.com/fraxfinance" + } }, { "description": "A liquid ETH staking derivative designed to leverage the Frax ecosystem.", + "extended_description": "FrxETH is a stablecoin that is loosely pegged to ETH, meaning that 1 frxETH always represents 1 ETH.", "denom_units": [ { "denom": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90", @@ -469,10 +492,15 @@ "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" } - ] + ], + "socials": { + "website": "https://www.frax.com/", + "twitter": "https://twitter.com/fraxfinance" + } }, { "description": "A Liquid Staking Derivative designed to accrue the staking yield of the Frax ETH validators.", + "extended_description": "SFRXETH is a ERC-4626 vault designed to accrue the staking yield of the Frax ETH validators. It allows users to earn staking yield on their frxETH, a type of Frax Ether.", "denom_units": [ { "denom": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A", @@ -516,10 +544,15 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" } - ] + ], + "socials": { + "website": "https://www.frax.com/", + "twitter": "https://twitter.com/fraxfinance" + } }, { "description": "An ERC4626 staking vault that distributes part of the Frax Protocol yield weekly to stakers denominated in FRAX stablecoins. ", + "extended_description": "Staked FRAX (sFRAX) is an ERC4626 staking vault that distributes part of the Frax Protocol yield weekly to stakers denominated in FRAX stablecoins. The sFRAX token represents pro rata deposits within the vault and is always withdrawable for FRAX stablecoins at the pro rata rate at all times.", "denom_units": [ { "denom": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9", @@ -565,10 +598,15 @@ "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" } - ] + ], + "socials": { + "website": "https://www.frax.com/", + "twitter": "https://twitter.com/fraxfinance" + } }, { "description": "A stablecoin issued by Tether that is pegged 1:1 to the USD.", + "extended_description": "USDT, or Tether, is a widely used stablecoin pegged to the US dollar, designed to maintain a stable value and facilitate transactions. This specific version has been bridged through Picasso's implementation of IBC on Ethereum.", "denom_units": [ { "denom": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", @@ -584,7 +622,7 @@ ], "type_asset": "ics20", "base": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", - "name": "Tether", + "name": "Tether (Ethereum)", "display": "usdt", "symbol": "USDT", "traces": [ @@ -612,6 +650,939 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } + ], + "socials": { + "website": "https://www.tether.to/", + "twitter": "https://twitter.com/Tether_to" + } + }, + { + "description": "CRV is the governance token for Curve Finance.", + "denom_units": [ + { + "denom": "ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED", + "exponent": 0, + "aliases": [ + "crv-wei" + ] + }, + { + "denom": "crv", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED", + "name": "Curve DAO", + "display": "crv", + "symbol": "CRV", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xd533a949740bb3306d119cc777fa900ba034cd52" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crv.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xd533a949740bb3306d119cc777fa900ba034cd52" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crv.png" + } + ] + }, + { + "description": "An ERC-20 token issued Ethereum that represents Bitcoin.", + "denom_units": [ + { + "denom": "ibc/1507315B0C337368B85A7EC67C3956C508E1106EBD96336B1B092F7B2815B3E5", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] + }, + { + "denom": "wbtc", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/1507315B0C337368B85A7EC67C3956C508E1106EBD96336B1B092F7B2815B3E5", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "wBTC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png" + } + ] + }, + { + "description": "A token that represents staked ether in Lido.", + "denom_units": [ + { + "denom": "ibc/74F65FE91F672BC2524C039B3CD0211F6D370071209552533DF26D57743D5FFD", + "exponent": 0, + "aliases": [ + "steth-wei" + ] + }, + { + "denom": "steth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/74F65FE91F672BC2524C039B3CD0211F6D370071209552533DF26D57743D5FFD", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + } + ] + }, + { + "description": "Rocket Pool protocol's liquid staking token.", + "denom_units": [ + { + "denom": "ibc/207E7F34DFEBF714CED4900C1FD85BAF200230BF431EE8133EB26B98CB535EDC", + "exponent": 0, + "aliases": [ + "reth-wei" + ] + }, + { + "denom": "reth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/207E7F34DFEBF714CED4900C1FD85BAF200230BF431EE8133EB26B98CB535EDC", + "name": "Rocket Pool ETH", + "display": "reth", + "symbol": "rETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xae78736cd615f374d3085123a210448e74fc6393" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" + } + ] + }, + { + "description": "A collateralized-debt-position (CDP) stablecoin by Curve DAO.", + "denom_units": [ + { + "denom": "ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A", + "exponent": 0, + "aliases": [ + "crvusd-wei" + ] + }, + { + "denom": "crvusd", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A", + "name": "crvUSD", + "display": "crvusd", + "symbol": "crvUSD", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crvusd.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crvusd.png" + } + ] + }, + { + "description": "pxETH is built on top of the Pirex platform and forms the foundation of the Dinero protocol.", + "denom_units": [ + { + "denom": "ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821", + "exponent": 0, + "aliases": [ + "pxeth-wei" + ] + }, + { + "denom": "pxeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821", + "name": "Dinero Staked ETH", + "display": "pxeth", + "symbol": "pxETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x04c154b66cb340f3ae24111cc767e0184ed00cc6" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pxeth.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pxeth.png" + } + ] + }, + { + "description": "eETH is a natively restaked liquid staking token on Ethereum.", + "denom_units": [ + { + "denom": "ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B", + "exponent": 0, + "aliases": [ + "eeth-wei" + ] + }, + { + "denom": "eeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B", + "name": "ether.fi Staked ETH", + "display": "eeth", + "symbol": "eETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x35fa164735182de50811e8e2e824cfb9b6118ac2", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x35fa164735182de50811e8e2e824cfb9b6118ac2" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eeth.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x35fa164735182de50811e8e2e824cfb9b6118ac2" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eeth.png" + } + ] + }, + { + "description": "The native governance token of Ethena.", + "denom_units": [ + { + "denom": "ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929", + "exponent": 0, + "aliases": [ + "ena-wei" + ] + }, + { + "denom": "ena", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929", + "name": "Ethena", + "display": "ena", + "symbol": "ENA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x57e114b691db790c35207b2e685d4a43181e6061", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x57e114b691db790c35207b2e685d4a43181e6061" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x57e114b691db790c35207b2e685d4a43181e6061" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ena.png" + } + ] + }, + { + "description": "Ethena USDe is a synthetic dollar protocol built on Ethereum.", + "denom_units": [ + { + "denom": "ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983", + "exponent": 0, + "aliases": [ + "usde-wei" + ] + }, + { + "denom": "usde", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983", + "name": "Ethena USDe", + "display": "usde", + "symbol": "USDe", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x4c9edd5852cd905f086c759e8383e09bff1e68b3" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usde.png" + } + ] + }, + { + "description": "A Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer.", + "denom_units": [ + { + "denom": "ibc/0247E0E2C174135AADF4EA172D97FF5C15A64689A403E83603EAE4F0616DD365", + "exponent": 0, + "aliases": [ + "ezeth-wei" + ] + }, + { + "denom": "ezeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/0247E0E2C174135AADF4EA172D97FF5C15A64689A403E83603EAE4F0616DD365", + "name": "Renzo Restaked ETH", + "display": "ezeth", + "symbol": "ezETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xbf5495efe5db9ce00f80364c8b423567e58d2110" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ezeth.png" + } + ] + }, + { + "description": "PEPE is a deflationary memecoin launched on Ethereum. ", + "denom_units": [ + { + "denom": "ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05", + "exponent": 0, + "aliases": [ + "pepe-wei" + ] + }, + { + "denom": "pepe", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x6982508145454ce325ddbe47a25d4ec3d2311933" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png" + } + ] + }, + { + "description": "SOL is the native cryptocurrency of the Solana blockchain.", + "denom_units": [ + { + "denom": "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C", + "exponent": 0, + "aliases": [ + "Lamport" + ] + }, + { + "denom": "wsol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C", + "name": "Wrapped Solana", + "display": "wsol", + "symbol": "wSOL", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Solana" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "So11111111111111111111111111111111111111112", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/So11111111111111111111111111111111111111112" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "So11111111111111111111111111111111111111112" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + } + ] + }, + { + "description": "mSOL represents staked SOL in the Marinade stake pool.", + "denom_units": [ + { + "denom": "ibc/C280CB39B97E7CD33A0BF149CFD392C2A3F95FF896AFF89CFF2FA181479BED8D", + "exponent": 0 + }, + { + "denom": "msol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/C280CB39B97E7CD33A0BF149CFD392C2A3F95FF896AFF89CFF2FA181479BED8D", + "name": "Marinade Staked SOL", + "display": "msol", + "symbol": "mSOL", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/msol.png" + } + ] + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using Jito.", + "denom_units": [ + { + "denom": "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2", + "exponent": 0 + }, + { + "denom": "jitosol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2", + "name": "Jito Staked SOL", + "display": "jitosol", + "symbol": "jitoSOL", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/jitosol.png" + } + ] + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the BlazeStake protocol.", + "denom_units": [ + { + "denom": "ibc/F52A71607B3AA7BBA8A222A9176E9939E92AB3656A094289CD218907D45DB716", + "exponent": 0 + }, + { + "denom": "bsol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/F52A71607B3AA7BBA8A222A9176E9939E92AB3656A094289CD218907D45DB716", + "name": "BlazeStake Staked SOL", + "display": "bsol", + "symbol": "bSOL", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bsol.png" + } + ] + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the MarginFi protocol.", + "denom_units": [ + { + "denom": "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D", + "exponent": 0 + }, + { + "denom": "lst", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D", + "name": "Liquid Staking Token", + "display": "lst", + "symbol": "LST", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/lst.png" + } + ] + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the Edgevana protocol.", + "denom_units": [ + { + "denom": "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C", + "exponent": 0 + }, + { + "denom": "edgesol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C", + "name": "Edgevana Staked SOL", + "display": "edgesol", + "symbol": "edgeSOL", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/edgesol.png" + } + ] + }, + { + "description": "A liquid staked token that represents SOL staked to Helius's validator.", + "denom_units": [ + { + "denom": "ibc/531C52D572698BCBA29F44D959E73CD2148EE6542A3118F9E56621A28E1FF4C6", + "exponent": 0 + }, + { + "denom": "hsol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/531C52D572698BCBA29F44D959E73CD2148EE6542A3118F9E56621A28E1FF4C6", + "name": "Helius Staked SOL", + "display": "hsol", + "symbol": "hSOL", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "he1iusmfkpAdwvxLNGV8Y1iSbj4rUy6yMhEA3fotn9A", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/he1iusmfkpAdwvxLNGV8Y1iSbj4rUy6yMhEA3fotn9A" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "he1iusmfkpAdwvxLNGV8Y1iSbj4rUy6yMhEA3fotn9A" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/hsol.png" + } + ] + }, + { + "description": "A liquid staked token that represents SOL staked to Jupiter's validator.", + "denom_units": [ + { + "denom": "ibc/6976998E24F1CFC373A9F799C9CE901F5EC32C3E33B2B09384A05774D9339626", + "exponent": 0 + }, + { + "denom": "jupsol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/6976998E24F1CFC373A9F799C9CE901F5EC32C3E33B2B09384A05774D9339626", + "name": "Jupiter Staked SOL", + "display": "jupsol", + "symbol": "jupSOL", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/jupsol.png" + } + ] + }, + { + "description": "dogwifhat is a meme coin that operates on Solana.", + "denom_units": [ + { + "denom": "ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071", + "exponent": 0 + }, + { + "denom": "wif", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071", + "name": "dogwifhat", + "display": "wif", + "symbol": "WIF", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/wif.png" + } + ] + }, + { + "description": "Tether, issued natively on Solana.", + "denom_units": [ + { + "denom": "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575", + "name": "Tether", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/usdt.png" + } ] } ] diff --git a/composable/chain.json b/composable/chain.json index d48a3d62d5..99f148f11b 100644 --- a/composable/chain.json +++ b/composable/chain.json @@ -240,6 +240,11 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "id": "aa6398f9644e98fa3d04f7dbdd7740c995eb0530", + "address": "composable.seed.stavr.tech:20306", + "provider": "🔥STAVR🔥" } ], "persistent_peers": [ @@ -281,11 +286,11 @@ "provider": "AutoStake 🛡️ Slash Protected" }, { - "address": "https://composable-rpc.cogwheel.zone:443", - "provider": "Cogwheel" + "address": "https://picasso-rpc.cogwheel.zone:443", + "provider": "Cogwheel ⚙️" }, { - "address": "https://composable-rpc.lavenderfive.com:443", + "address": "https://picasso-rpc.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -293,11 +298,11 @@ "provider": "genznodes" }, { - "address": "https://rpc-composable.whispernode.com:443", + "address": "https://rpc-picasso.whispernode.com:443", "provider": "WhisperNode 🤐" }, { - "address": "https://composable-rpc.stake-town.com", + "address": "https://picasso-rpc.stake-town.com", "provider": "StakeTown" }, { @@ -319,6 +324,10 @@ { "address": "https://rpc.composable.citizenweb3.com:443", "provider": "Citizen Web3" + }, + { + "address": "https://composable.rpc.m.stavr.tech:443", + "provider": "🔥STAVR🔥" } ], "rest": [ @@ -331,11 +340,11 @@ "provider": "AutoStake 🛡️ Slash Protected" }, { - "address": "https://composable-api.cogwheel.zone:443", - "provider": "Cogwheel" + "address": "https://picasso-api.cogwheel.zone:443", + "provider": "Cogwheel ⚙️" }, { - "address": "https://composable-api.lavenderfive.com:443", + "address": "https://picasso-api.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -343,11 +352,11 @@ "provider": "genznodes" }, { - "address": "https://lcd-composable.whispernode.com:443", + "address": "https://api-picasso.whispernode.com:443", "provider": "WhisperNode 🤐" }, { - "address": "https://composable-api.stake-town.com", + "address": "https://picasso-api.stake-town.com", "provider": "StakeTown" }, { @@ -389,11 +398,11 @@ "provider": "Cosmos Spaces" }, { - "address": "https://composable-grpc.cogwheel.zone:443", - "provider": "Cogwheel" + "address": "https://picasso-grpc.cogwheel.zone:443", + "provider": "Cogwheel ⚙️" }, { - "address": "https://composable-grpc.lavenderfive.com:443", + "address": "https://picasso-grpc.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -401,7 +410,7 @@ "provider": "genznodes" }, { - "address": "composable-grpc.stake-town.com:443", + "address": "picasso-grpc.stake-town.com:443", "provider": "StakeTown" }, { @@ -431,6 +440,14 @@ { "address": "https://composable.grpc.moonbridge.team", "provider": "Moonbridge" + }, + { + "address": "composable.grpc.m.stavr.tech:9907", + "provider": "🔥STAVR🔥" + }, + { + "address": "grpc-picasso.whispernode.com:443", + "provider": "WhisperNode 🤐" } ] }, @@ -455,6 +472,12 @@ "kind": "🔥STAVR🔥", "url": "https://explorer.stavr.tech/Composable-Mainnet", "tx_page": "https://explorer.stavr.tech/Composable-Mainnet/tx/${txHash}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/picasso", + "tx_page": "https://mainnet.whispernode.com/picasso/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/picasso/account/${accountAddress}" } ], "images": [ diff --git a/conscious/assetlist.json b/conscious/assetlist.json index 26ab0a93cd..84f468be70 100644 --- a/conscious/assetlist.json +++ b/conscious/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "Cvn is a Layer-1 blockchain built to deliver on the promise of DeFi", + "extended_description": "Conscious Network is a public chain infrastructure that deeply integrates AI. It is based on a multi-layer blockchain network architecture consisting of Layer 1 and L2 Rollup, and introduces decentralized storage protocols to build a scalable Web3 AI infrastructure.", "denom_units": [ { "denom": "acvnt", diff --git a/coreum/assetlist.json b/coreum/assetlist.json index c2f42d1e36..5acc17dfdd 100644 --- a/coreum/assetlist.json +++ b/coreum/assetlist.json @@ -28,7 +28,8 @@ "staking", "wasm", "assets", - "nft" + "nft", + "XRPL" ], "images": [ { diff --git a/coreum/chain.json b/coreum/chain.json index 699e50edf3..703e8cb3ce 100644 --- a/coreum/chain.json +++ b/coreum/chain.json @@ -36,20 +36,20 @@ }, "codebase": { "git_repo": "https://github.com/CoreumFoundation/coreum", - "recommended_version": "v3.0.2", + "recommended_version": "v3.0.3", "compatible_versions": [ - "v3.0.2" + "v3.0.3" ], "binaries": { - "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.2/cored-linux-amd64", - "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.2/cored-linux-arm64" + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-amd64?checksum=sha256:1719a32e6f8e8813d00cd86e1d8d02e893324d4f59fa7a1b8cedc5836140ecef", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-arm64?checksum=sha256:cfbbad6803c0327407e4dd222a108505e6ff9e294d7c86e34b6b895b96b61bbd" }, "cosmos_sdk_version": "0.47", "consensus": { "type": "cometbft", "version": "0.37" }, - "cosmwasm_version": "0.30", + "cosmwasm_version": "0.44", "cosmwasm_enabled": true, "genesis": { "name": "v1", @@ -101,23 +101,23 @@ }, { "name": "v3", - "tag": "v3.0.2", + "tag": "v3.0.3", "proposal": 8, "height": 13480000, - "recommended_version": "v3.0.2", + "recommended_version": "v3.0.3", "compatible_versions": [ - "v3.0.2" + "v3.0.3" ], "cosmos_sdk_version": "0.47", "consensus": { "type": "cometbft", "version": "0.37" }, - "cosmwasm_version": "0.30", + "cosmwasm_version": "0.44", "cosmwasm_enabled": true, "binaries": { - "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.2/cored-linux-amd64", - "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.2/cored-linux-arm64" + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-amd64?checksum=sha256:1719a32e6f8e8813d00cd86e1d8d02e893324d4f59fa7a1b8cedc5836140ecef", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-arm64?checksum=sha256:cfbbad6803c0327407e4dd222a108505e6ff9e294d7c86e34b6b895b96b61bbd" } } ] @@ -334,6 +334,7 @@ "staking", "wasm", "assets", - "nft" + "nft", + "XRPL" ] } \ No newline at end of file diff --git a/cosmoshub/chain.json b/cosmoshub/chain.json index 6d23664cda..7405678408 100644 --- a/cosmoshub/chain.json +++ b/cosmoshub/chain.json @@ -33,17 +33,23 @@ }, "codebase": { "git_repo": "https://github.com/cosmos/gaia", - "recommended_version": "v15.2.0", + "recommended_version": "v16.0.0", "compatible_versions": [ - "v15.2.0" + "v16.0.0" ], + "cosmos_sdk_version": "v0.47.13-ics-lsm", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, "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" + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-darwin-arm64", + "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-darwin-amd64", + "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-windows-arm64.exe" }, "genesis": { "genesis_url": "https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz" @@ -222,6 +228,31 @@ "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": "v16" + }, + { + "name": "v16", + "tag": "v16.0.0", + "proposal": 914, + "height": 20440500, + "recommended_version": "v16.0.0", + "compatible_versions": [ + "v16.0.0" + ], + "cosmos_sdk_version": "v0.47.13-ics-lsm", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "binaries": { + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-darwin-arm64", + "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-darwin-amd64", + "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-windows-arm64.exe" + }, "next_version_name": "" } ] @@ -345,6 +376,10 @@ { "address": "https://rpc-cosmoshub.ecostake.com", "provider": "ecostake" + }, + { + "address": "https://go.getblock.io/17515cb3ec0e43b7817f182e5de6066a", + "provider": "GetBlock RPC Nodes" }, { "address": "https://rpc-cosmoshub.pupmos.network", @@ -697,6 +732,12 @@ "url": "https://inbloc.org", "tx_page": "https://inbloc.org/transactions/${txHash}", "account_page": "https://inbloc.org/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/cosmos", + "tx_page": "https://mainnet.whispernode.com/cosmos/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/cosmos/account/${accountAddress}" } ], "images": [ @@ -705,4 +746,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] -} \ No newline at end of file +} diff --git a/crescent/chain.json b/crescent/chain.json index 5c857d24a5..c2987c0cb2 100644 --- a/crescent/chain.json +++ b/crescent/chain.json @@ -281,12 +281,6 @@ ] }, "explorers": [ - { - "kind": "mintscan", - "url": "https://www.mintscan.io/crescent", - "tx_page": "https://www.mintscan.io/crescent/transactions/${txHash}", - "account_page": "https://www.mintscan.io/crescent/accounts/${accountAddress}" - }, { "kind": "ezstaking", "url": "https://ezstaking.app/crescent", diff --git a/cronos/chain.json b/cronos/chain.json index bfd953c2a2..8de91eeed4 100644 --- a/cronos/chain.json +++ b/cronos/chain.json @@ -25,35 +25,37 @@ }, "codebase": { "git_repo": "https://github.com/crypto-org-chain/cronos", - "recommended_version": "v1.2.1", + "recommended_version": "v1.2.2", "compatible_versions": [ "v1.2.0", - "v1.2.1" + "v1.2.1", + "v1.2.2" ], "binaries": { - "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" + "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_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.2.1", - "recommended_version": "v1.2.1", + "name": "v1.2.2", + "recommended_version": "v1.2.2", "compatible_versions": [ "v1.2.0", - "v1.2.1" + "v1.2.1", + "v1.2.2" ], "binaries": { - "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" + "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Windows_x86_64.zip" } } ] @@ -184,4 +186,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } ] -} \ No newline at end of file +} diff --git a/cudos/chain.json b/cudos/chain.json index abe2d9c153..ea4db4804e 100644 --- a/cudos/chain.json +++ b/cudos/chain.json @@ -142,6 +142,10 @@ { "address": "https://cudos-rpc.lavenderfive.com", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://cudos-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "rest": [ @@ -164,6 +168,10 @@ { "address": "https://cudos-api.lavenderfive.com/", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://cudos-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "grpc": [ @@ -178,6 +186,10 @@ { "address": "cudos-grpc.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "cudos-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, diff --git a/dhealth/assetlist.json b/dhealth/assetlist.json index 57bd2bf347..3c6801869e 100644 --- a/dhealth/assetlist.json +++ b/dhealth/assetlist.json @@ -4,6 +4,7 @@ "assets": [ { "description": "The native token of dHealth", + "extended_description": "dHealth Network is an Operating System for Web3 Healthcare. It provides Web3 components such as Decentralised Digital Identity, Digital Payment, and user-controlled data access to support dApps and business models at the intersection of healthcare and blockchain technology.", "denom_units": [ { "denom": "udhp", @@ -23,6 +24,10 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" }, "coingecko_id": "dhealth", + "socials": { + "website": "https://dhealth.com", + "twitter": "https://twitter.com/dhealth_network" + }, "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", diff --git a/doravota/chain.json b/doravota/chain.json index b378fd104c..7138d28a0f 100644 --- a/doravota/chain.json +++ b/doravota/chain.json @@ -58,7 +58,13 @@ ] }, "peers": { - "seeds": [], + "seeds": [ + { + "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", + "address": "seed.publicnode.com:26656", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], "persistent_peers": [] }, "apis": { @@ -70,6 +76,10 @@ { "address": "https://m-dora.rpc.utsa.tech", "provider": "lesnik | UTSA" + }, + { + "address": "https://dora-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "rest": [ @@ -80,12 +90,20 @@ { "address": "https://m-dora.api.utsa.tech", "provider": "lesnik | UTSA" + }, + { + "address": "https://dora-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "grpc": [ { "address": "vota-grpc.dorafactory.org:443", "provider": "dorafactory" + }, + { + "address": "dora-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, diff --git a/dydx/chain.json b/dydx/chain.json index ac8f12b9ad..406e89c18e 100644 --- a/dydx/chain.json +++ b/dydx/chain.json @@ -122,9 +122,10 @@ "name": "v4.1.0", "proposal": 53, "height": 14404200, - "recommended_version": "protocol/v4.1.0", + "recommended_version": "protocol/v4.1.2", "compatible_versions": [ - "protocol/v4.1.0" + "protocol/v4.1.0", + "protocol/v4.1.2" ], "binaries": { "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.1.0/dydxprotocold-v4.1.0-linux-amd64.tar.gz", @@ -274,6 +275,10 @@ { "address": "https://dydx-rpc.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://dydx.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" } ], "rest": [ @@ -328,6 +333,10 @@ { "address": "https://dydx-api.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://dydx-rest.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" } ], "grpc": [ diff --git a/dymension/chain.json b/dymension/chain.json index e7e71e302f..6811ed0047 100644 --- a/dymension/chain.json +++ b/dymension/chain.json @@ -94,6 +94,11 @@ "id": "86bd5cb6e762f673f1706e5889e039d5406b4b90", "address": "seed.dymension.node75.org:10956", "provider": "Pro-Nodes75" + }, + { + "id": "258f523c96efde50d5fe0a9faeea8a3e83be22ca", + "address": "seed.mainnet.dymension.aviaone.com:10290", + "provider": "AVIAONE 🟢" } ], "persistent_peers": [ @@ -234,6 +239,10 @@ { "address": "https://dymension-rpc.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc.mainnet.dymension.aviaone.com", + "provider": "AVIAONE 🟢" } ], "rest": [ @@ -348,6 +357,10 @@ { "address": "https://dymension-api.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://api.mainnet.dymension.aviaone.com", + "provider": "AVIAONE 🟢" } ], "grpc": [ @@ -434,6 +447,10 @@ { "address": "dymension-grpc.noders.services:12090", "provider": "[NODERS]TEAM" + }, + { + "address": "https://grpc.mainnet.dymension.aviaone.com:9092", + "provider": "AVIAONE 🟢" } ], "evm-http-jsonrpc": [ @@ -472,6 +489,12 @@ ] }, "explorers": [ + { + "kind": "mintscan", + "url": "https://www.mintscan.io/dymension", + "tx_page": "https://www.mintscan.io/dymension/tx/${txHash}", + "account_page": "https://www.mintscan.io/dymension/account/${accountAddress}" + }, { "kind": "ezstaking", "url": "https://ezstaking.app/dymension", @@ -513,6 +536,18 @@ "url": "https://explorer.posthuman.digital/dymension", "tx_page": "https://explorer.posthuman.digital/dymension/tx/${txHash}", "account_page": "https://explorer.posthuman.digital/dymension/account/${accountAddress}" + }, + { + "kind": "AVIAONE 🟢", + "url": "https://mainnet.explorer.aviaone.com/dymension", + "tx_page": "https://mainnet.explorer.aviaone.com/dymension/tx/${txHash}", + "account_page": "https://mainnet.explorer.aviaone.com/dymension/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/dymension", + "tx_page": "https://mainnet.whispernode.com/dymension/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/dymension/account/${accountAddress}" } ] } \ No newline at end of file diff --git a/echelon/assetlist.json b/echelon/assetlist.json index d0f76d1f6e..8c0283ac1d 100644 --- a/echelon/assetlist.json +++ b/echelon/assetlist.json @@ -28,4 +28,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/emoney/chain.json b/emoney/chain.json index 23e4f19674..d987108852 100644 --- a/emoney/chain.json +++ b/emoney/chain.json @@ -170,12 +170,6 @@ "tx_page": "https://ezstaking.app/emoney/txs/${txHash}", "account_page": "https://ezstaking.app/emoney/account/${accountAddress}" }, - { - "kind": "mintscan", - "url": "https://www.mintscan.io/emoney", - "tx_page": "https://www.mintscan.io/emoney/transactions/${txHash}", - "account_page": "https://www.mintscan.io/emoney/accounts/${accountAddress}" - }, { "kind": "ping.pub", "url": "https://ping.pub/e-money", diff --git a/empowerchain/chain.json b/empowerchain/chain.json index 720677dd7d..9b70920e22 100644 --- a/empowerchain/chain.json +++ b/empowerchain/chain.json @@ -312,6 +312,12 @@ "url": "https://explorer.declab.pro/Empower", "tx_page": "https://explorer.declab.pro/Empower/tx/${txHash}", "account_page": "https://explorer.declab.pro/Empower/account/{$accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/empowerchain", + "tx_page": "https://mainnet.whispernode.com/empowerchain/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/empowerchain/account/${accountAddress}" } ] } diff --git a/evmos/chain.json b/evmos/chain.json index 6d3200c0cd..2764a92555 100644 --- a/evmos/chain.json +++ b/evmos/chain.json @@ -36,9 +36,9 @@ }, "codebase": { "git_repo": "https://github.com/evmos/evmos", - "recommended_version": "v17.0.0", + "recommended_version": "v18.1.0", "compatible_versions": [ - "v17.0.0" + "v18.1.0" ], "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.5-evmos.2", "consensus": { @@ -47,11 +47,11 @@ }, "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" + "linux/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Windows_amd64.zip" }, "genesis": { "genesis_url": "https://archive.evmos.org/mainnet/genesis.json" @@ -183,11 +183,11 @@ }, { "name": "v17.0.0", - "tag": "v17.0.0", + "tag": "v17.0.1", "height": 20101000, - "recommended_version": "v17.0.0", + "recommended_version": "v17.0.1", "compatible_versions": [ - "v17.0.0" + "v17.0.1" ], "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.5-evmos.2", "consensus": { @@ -196,11 +196,57 @@ }, "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" + "linux/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Windows_amd64.zip" + }, + "next_version_name": "v18.0.0" + }, + { + "name": "v18.0.0", + "tag": "v18.0.1", + "height": 20396852, + "recommended_version": "v18.0.1", + "compatible_versions": [ + "v18.0.1" + ], + "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/v18.0.1/evmos_18.0.1_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v18.0.1/evmos_18.0.1_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v18.0.1/evmos_18.0.1_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v18.0.1/evmos_18.0.1_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v18.0.1/evmos_18.0.1_Windows_amd64.zip" + }, + "next_version_name": "v18.1.0" + }, + { + "name": "v18.1.0", + "tag": "v18.1.0", + "height": 21209000, + "recommended_version": "v18.1.0", + "compatible_versions": [ + "v18.1.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/v18.1.0/evmos_18.1.0_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Windows_amd64.zip" }, "next_version_name": "" } @@ -731,4 +777,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } ] -} \ No newline at end of file +} diff --git a/fetchhub/chain.json b/fetchhub/chain.json index b627a189e1..4f27a1abfa 100644 --- a/fetchhub/chain.json +++ b/fetchhub/chain.json @@ -85,6 +85,11 @@ "id": "937d7371c9381aa7ae5f411129419a893164becf", "address": "seed-fetch.ibs.team:16659", "provider": "Inter Blockchain Services" + }, + { + "id": "258f523c96efde50d5fe0a9faeea8a3e83be22ca", + "address": "seed.fetchhub-4.fetch.aviaone.com:10265", + "provider": "AVIAONE 🟢" } ], "persistent_peers": [ @@ -172,6 +177,10 @@ { "address": "https://fetch.rpc.nodeshub.online:443", "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "address": "https://rpc.fetchhub-4.fetch.aviaone.com", + "provider": "AVIAONE 🟢" } ], "rest": [ @@ -230,6 +239,10 @@ { "address": "https://fetch.api.nodeshub.online:443", "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "address": "https://api.fetchhub-4.fetch.aviaone.com/", + "provider": "AVIAONE 🟢" } ], "grpc": [ @@ -272,6 +285,10 @@ { "address": "fetch.grpc.nodeshub.online", "provider": "Nodes Hub" + }, + { + "address": "grpc.fetchhub-4.fetch.aviaone.com:9094", + "provider": "AVIAONE 🟢" } ] }, @@ -320,6 +337,12 @@ "url": "https://explorer.nodeshub.online/fetchhub/", "tx_page": "https://explorer.nodeshub.online/fetchhub/tx/${txHash}", "account_page": "https://explorer.nodeshub.online/fetchhub/accounts/${accountAddress}" + }, + { + "kind": "Blockchain Explorer by AVIAONE 🟢", + "url": "https://mainnet.explorer.aviaone.com/fetchhub", + "tx_page": "https://mainnet.explorer.aviaone.com/fetchhub/tx/${txHash}", + "account_page": "https://mainnet.explorer.aviaone.com/fetchhub/accounts/${accountAddress}" } ], "images": [ diff --git a/gitopia/chain.json b/gitopia/chain.json index f2a274e990..ad65f0909d 100644 --- a/gitopia/chain.json +++ b/gitopia/chain.json @@ -783,6 +783,12 @@ "url": "https://explorer.declab.pro/Gitopia", "tx_page": "https://explorer.declab.pro/Gitopia/tx/${txHash}", "account_page": "https://explorer.declab.pro/Gitopia/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/gitopia", + "tx_page": "https://mainnet.whispernode.com/gitopia/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/gitopia/account/${accountAddress}" } ], "logo_URIs": { diff --git a/gravitybridge/assetlist.json b/gravitybridge/assetlist.json index b94ccc7d71..30819eb4df 100644 --- a/gravitybridge/assetlist.json +++ b/gravitybridge/assetlist.json @@ -122,6 +122,10 @@ ], "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } ] @@ -142,6 +146,7 @@ "name": "USD Coin", "display": "gusdc", "symbol": "USDC", + "coingecko_id": "gravity-bridge-usdc", "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, @@ -165,6 +170,10 @@ ], "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] @@ -208,6 +217,10 @@ ], "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ] @@ -252,6 +265,10 @@ ], "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" } @@ -296,6 +313,10 @@ ], "images": [ { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" } ] @@ -333,8 +354,8 @@ "images": [ { "image_sync": { - "base_denom": "ethereum", - "chain_name": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" + "chain_name": "ethereum", + "base_denom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg" @@ -454,8 +475,8 @@ "images": [ { "image_sync": { - "base_denom": "ethereum", - "chain_name": "0x45804880De22913dAFE09f4980848ECE6EcbAf78" + "chain_name": "ethereum", + "base_denom": "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" diff --git a/haqq/chain.json b/haqq/chain.json index da481fc4af..96baff83ee 100644 --- a/haqq/chain.json +++ b/haqq/chain.json @@ -519,7 +519,7 @@ "provider": "Haqq" }, { - "address": "https://m-s1-tm.haqq.sh", + "address": "https://rpc.haqq.sh", "provider": "kioqq" }, { @@ -553,7 +553,7 @@ "provider": "Haqq" }, { - "address": "https://m-s1-sdk.haqq.sh", + "address": "https://sdk.haqq.sh", "provider": "kioqq" }, { @@ -591,7 +591,7 @@ "provider": "Haqq" }, { - "address": "grpc://m-s1-grpc.haqq.sh:1337", + "address": "grpc.haqq.sh:443", "provider": "kioqq" }, { @@ -633,7 +633,7 @@ "provider": "Haqq" }, { - "address": "https://m-s1-evm-rpc.haqq.sh", + "address": "https://evm.haqq.sh", "provider": "kioqq" }, { diff --git a/injective/assetlist.json b/injective/assetlist.json index 9f7778abfe..74950a09cc 100644 --- a/injective/assetlist.json +++ b/injective/assetlist.json @@ -484,6 +484,163 @@ "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": "A receipt token for lent INJ issued by the Neptune Protocol.", + "denom_units": [ + { + "denom": "inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f", + "exponent": 0 + }, + { + "denom": "nINJ", + "exponent": 18 + } + ], + "base": "inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f", + "name": "Neptune Receipt INJ", + "display": "nINJ", + "symbol": "nINJ", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninj.png" + } + ] + }, + { + "description": "A receipt token for lent ATOM issued by the Neptune Protocol.", + "denom_units": [ + { + "denom": "inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780", + "exponent": 0 + }, + { + "denom": "nATOM", + "exponent": 6 + } + ], + "base": "inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780", + "name": "Neptune Receipt ATOM", + "display": "nATOM", + "symbol": "nATOM", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/natom.png" + } + ] + }, + { + "description": "A receipt token for lent WETH issued by the Neptune Protocol.", + "denom_units": [ + { + "denom": "inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt", + "exponent": 0 + }, + { + "denom": "nWETH", + "exponent": 18 + } + ], + "base": "inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt", + "name": "Neptune Receipt WETH", + "display": "nWETH", + "symbol": "nWETH", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nweth.png" + } + ] + }, + { + "description": "A receipt token for lent USDT issued by the Neptune Protocol.", + "denom_units": [ + { + "denom": "inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s", + "exponent": 0 + }, + { + "denom": "nUSDT", + "exponent": 6 + } + ], + "base": "inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s", + "name": "Neptune Receipt USDT", + "display": "nUSDT", + "symbol": "nUSDT", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nusdt.png" + } + ] + }, + { + "description": "A receipt token for lent TIA issued by the Neptune Protocol.", + "denom_units": [ + { + "denom": "inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv", + "exponent": 0 + }, + { + "denom": "nTIA", + "exponent": 6 + } + ], + "base": "inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv", + "name": "Neptune Receipt TIA", + "display": "nTIA", + "symbol": "nTIA", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ntia.png" + } + ] + }, + { + "description": "Ninja Blaze Token", + "denom_units": [ + { + "denom": "ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D", + "exponent": 0, + "aliases": [ + "uNBZ" + ] + }, + { + "denom": "NBZ", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D", + "name": "Ninja Blaze Token", + "display": "NBZ", + "symbol": "NBZ", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", + "channel_id": "channel-60" + }, + "chain": { + "channel_id": "channel-177", + "path": "transfer/channel-177/factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png" + } } ] } \ No newline at end of file diff --git a/injective/chain.json b/injective/chain.json index 98999c3924..684f6b4df2 100644 --- a/injective/chain.json +++ b/injective/chain.json @@ -266,6 +266,10 @@ { "address": "https://injective-rpc.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://rpc-injective.ecostake.com", + "provider": "ecostake" } ], "rest": [ @@ -320,6 +324,10 @@ { "address": "https://injective-api.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://rest-injective.ecostake.com", + "provider": "ecostake" } ], "grpc": [ @@ -414,6 +422,12 @@ "kind": "Stakeflow", "url": "https://stakeflow.io/injective", "account_page": "https://stakeflow.io/injective/accounts/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/injective", + "tx_page": "https://mainnet.whispernode.com/injective/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/injective/account/${accountAddress}" } ], "images": [ @@ -422,4 +436,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" } ] -} \ No newline at end of file +} diff --git a/injective/images/natom.png b/injective/images/natom.png new file mode 100644 index 0000000000..f2c841f33a Binary files /dev/null and b/injective/images/natom.png differ diff --git a/injective/images/ninj.png b/injective/images/ninj.png new file mode 100644 index 0000000000..27c085f3b0 Binary files /dev/null and b/injective/images/ninj.png differ diff --git a/injective/images/ntia.png b/injective/images/ntia.png new file mode 100644 index 0000000000..9d09bfd12f Binary files /dev/null and b/injective/images/ntia.png differ diff --git a/injective/images/nusdt.png b/injective/images/nusdt.png new file mode 100644 index 0000000000..ff2ecd99ca Binary files /dev/null and b/injective/images/nusdt.png differ diff --git a/injective/images/nweth.png b/injective/images/nweth.png new file mode 100644 index 0000000000..29a0842d93 Binary files /dev/null and b/injective/images/nweth.png differ diff --git a/jackal/chain.json b/jackal/chain.json index 12f1f5e0ba..34f414162b 100644 --- a/jackal/chain.json +++ b/jackal/chain.json @@ -449,6 +449,12 @@ "kind": "Big Dipper", "url": "https://bigdipper.live/jackal", "tx_page": "https://bigdipper.live/jackal/transactions/${txHash}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/jackal", + "tx_page": "https://mainnet.whispernode.com/jackal/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/jackal/account/${accountAddress}" } ], "images": [ diff --git a/juno/assetlist.json b/juno/assetlist.json index 2b8da6c38a..494e28d728 100644 --- a/juno/assetlist.json +++ b/juno/assetlist.json @@ -681,6 +681,7 @@ }, { "description": "The native token cw20 for PHMN on Juno Chain", + "extended_description": "$PHMN is the governance token of a distributed validator. Similar to PoS chains, each holder possesses voting rights proportionate to the number of locked tokens. PHMN holders can govern the POSTHUMAN validator via DAODAO. For instance, decisions such as diversifying the treasury, updating the validator's commission rate, or exiting the network are determined by the PHMN community.", "type_asset": "cw20", "address": "juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", "denom_units": [ @@ -707,7 +708,11 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg" } - ] + ], + "socials": { + "website": "https://posthuman.digital/", + "twitter": "https://twitter.com/POSTHUMAN_DVS" + } }, { "description": "The native token cw20 for Hopers on Juno Chain", @@ -2166,6 +2171,58 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png" } ] + }, + { + "description": "Airdrop For All [AFA - New Name on Cosmos Ecosystem, A4A - Old Name on TurtleNetwork] is a token from turtleNetwork towards cosmos ecosystem.", + "type_asset": "cw20", + "address": "juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", + "denom_units": [ + { + "denom": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", + "exponent": 0 + } + ], + "base": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", + "name": "Airdrop For All", + "display": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", + "symbol": "AFA", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png" + } + }, + { + "description": "The token for the Arena DAO", + "type_asset": "sdk.coin", + "address": "juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k", + "denom_units": [ + { + "denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", + "exponent": 0 + }, + { + "denom": "arena", + "exponent": 6 + } + ], + "base": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", + "name": "Arena Token", + "display": "arena", + "symbol": "ARENA", + "images": [ + { + "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" + } + ], + "logo_URIs": { + "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" + } } ] } diff --git a/juno/chain.json b/juno/chain.json index 73c58c70c0..5305c9bac8 100644 --- a/juno/chain.json +++ b/juno/chain.json @@ -724,6 +724,12 @@ "url": "https://explorer.nodeshub.online/juno/", "tx_page": "https://explorer.nodeshub.online/juno/tx/${txHash}", "account_page": "https://explorer.nodeshub.online/juno/accounts/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/juno", + "tx_page": "https://mainnet.whispernode.com/juno/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/juno/account/${accountAddress}" } ], "images": [ diff --git a/juno/images/afa.png b/juno/images/afa.png new file mode 100644 index 0000000000..604fe23c43 Binary files /dev/null and b/juno/images/afa.png differ diff --git a/kujira/assetlist.json b/kujira/assetlist.json index 7299968de0..89e52db3e9 100644 --- a/kujira/assetlist.json +++ b/kujira/assetlist.json @@ -573,7 +573,7 @@ "type": "ibc", "counterparty": { "chain_name": "axelar", - "base_denom": "wawax-wei", + "base_denom": "wavax-wei", "channel_id": "channel-14" }, "chain": { @@ -584,6 +584,10 @@ ], "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "wavax-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } ], @@ -847,6 +851,10 @@ ], "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "weth-wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } ], @@ -931,7 +939,7 @@ "images": [ { "image_sync": { - "chain_name": "luna", + "chain_name": "terra2", "base_denom": "uluna" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", @@ -1020,7 +1028,7 @@ "images": [ { "image_sync": { - "chain_name": "scrt", + "chain_name": "secretnetwork", "base_denom": "uscrt" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", @@ -1232,7 +1240,7 @@ }, "chain": { "channel_id": "channel-32", - "path": "transfer/channel-32/uatom" + "path": "transfer/channel-32/stuatom" } } ], @@ -1244,7 +1252,7 @@ { "image_sync": { "chain_name": "stride", - "base_denom": "statom" + "base_denom": "stuatom" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" @@ -1330,6 +1338,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stuosmo" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" } @@ -2276,6 +2288,7 @@ "name": "NAMI", "display": "nami", "symbol": "NAMI", + "coingecko_id": "nami-protocol", "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" diff --git a/kujira/chain.json b/kujira/chain.json index 07b7b7394c..35f81c42b4 100644 --- a/kujira/chain.json +++ b/kujira/chain.json @@ -536,6 +536,12 @@ "url": "https://atomscan.com/kujira", "tx_page": "https://atomscan.com/kujira/transactions/${txHash}", "account_page": "https://atomscan.com/kujira/accounts/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/kujira", + "tx_page": "https://mainnet.whispernode.com/kujira/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/kujira/account/${accountAddress}" } ], "logo_URIs": { diff --git a/kyve/chain.json b/kyve/chain.json index 7f705a43e3..4d696d92b7 100644 --- a/kyve/chain.json +++ b/kyve/chain.json @@ -148,6 +148,11 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "kyve-mainnet-seed.autostake.com:27106", + "provider": "AutoStake 🛡️ Slash Protected" } ], "persistent_peers": [ @@ -190,6 +195,11 @@ "id": "73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d", "address": "kyve.declab.pro:26618", "provider": "Decloud Nodes Lab" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "kyve-mainnet-peer.autostake.com:27106", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, @@ -242,6 +252,10 @@ { "address": "https://kyve_mainnet_rpc.chain.whenmoonwhenlambo.money", "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://kyve-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], "rest": [ @@ -292,6 +306,10 @@ { "address": "https://kyve_mainnet_api.chain.whenmoonwhenlambo.money", "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://kyve-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], "grpc": [ @@ -326,6 +344,10 @@ { "address": "kyve-grpc.noders.services:15090", "provider": "[NODERS]TEAM" + }, + { + "address": "kyve-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, @@ -379,4 +401,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg" } ] -} \ No newline at end of file +} diff --git a/lava/chain.json b/lava/chain.json index a3242d8394..cb10a03408 100644 --- a/lava/chain.json +++ b/lava/chain.json @@ -90,6 +90,21 @@ "id": "cec848e7d4c5a7ae305b27cda133d213435c110f", "address": "seed-lava.ibs.team:16680", "provider": "Inter Blockchain Services" + }, + { + "id": "258f523c96efde50d5fe0a9faeea8a3e83be22ca", + "address": "seed.lava-mainnet-1.lava.aviaone.com:10291", + "provider": "AVIAONE" + }, + { + "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", + "address": "seed.publicnode.com:26656", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "id": "b9dfd3f222e65ae605efc29dc9e3faecdc3b71d0", + "address": "lava.seed.stavr.tech:197", + "provider": "🔥STAVR🔥" } ] }, @@ -110,6 +125,22 @@ { "address": "https://lava-rpc.ibs.team:443", "provider": "Inter Blockchain Services" + }, + { + "address": "https://rpc.lava-mainnet-1.lava.aviaone.com:443", + "provider": "AVIAONE" + }, + { + "address": "https://lava-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://lava.rpc.m.stavr.tech:443", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://lava.rpc-archive.m.stavr.tech:443", + "provider": "🔥STAVR🔥" } ], "rest": [ @@ -117,13 +148,39 @@ "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" + }, + { + "address": "https://api.lava-mainnet-1.lava.aviaone.com", + "provider": "AVIAONE" + }, + { + "address": "https://lava-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "https://lava.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://lava.api-archive.m.stavr.tech", + "provider": "🔥STAVR🔥" + } + ], + "grpc": [ + { + "address": "lava-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" + }, + { + "address": "lava.grpc.m.stavr.tech:443", + "provider": "🔥STAVR🔥" + }, + { + "address": "lava.grpc-archive.m.stavr.tech:443", + "provider": "🔥STAVR🔥" } ] }, @@ -145,4 +202,4 @@ "indexing", "incentivized public rpc" ] -} \ No newline at end of file +} diff --git a/lumnetwork/chain.json b/lumnetwork/chain.json index 532c63654f..34b7a5c388 100644 --- a/lumnetwork/chain.json +++ b/lumnetwork/chain.json @@ -33,23 +33,23 @@ }, "codebase": { "git_repo": "https://github.com/lum-network/chain", - "recommended_version": "v1.6.5", + "recommended_version": "v1.6.6", "compatible_versions": [ - "v1.6.5" + "v1.6.6" ], - "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "v7.2.0", + "cosmos_sdk_version": "v0.47.11", + "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.5" }, "binaries": { - "linux/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_ubuntu-latest_amd64.zip", - "linux/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_ubuntu-latest_arm64.zip", - "darwin/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_macos-latest_amd64.zip", - "darwin/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_macos-latest_arm64.zip", - "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_windows-latest_amd64.zip", - "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_windows-latest_arm64.zip" + "linux/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_ubuntu-latest_amd64.zip", + "linux/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_ubuntu-latest_arm64.zip", + "darwin/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_macos-latest_amd64.zip", + "darwin/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_macos-latest_arm64.zip", + "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_windows-latest_amd64.zip", + "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_windows-latest_arm64.zip" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/lum-network/mainnet/master/genesis.json" @@ -214,6 +214,30 @@ "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_windows-latest_amd64.zip", "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_windows-latest_arm64.zip" }, + "next_version_name": "v1.6.6" + }, + { + "name": "v1.6.6", + "proposal": 106, + "height": 12969000, + "recommended_version": "v1.6.6", + "compatible_versions": [ + "v1.6.6" + ], + "cosmos_sdk_version": "v0.47.11", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "binaries": { + "linux/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_ubuntu-latest_amd64.zip", + "linux/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_ubuntu-latest_arm64.zip", + "darwin/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_macos-latest_amd64.zip", + "darwin/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_macos-latest_arm64.zip", + "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_windows-latest_amd64.zip", + "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_windows-latest_arm64.zip" + }, "next_version_name": "" } ] diff --git a/mantrachain/assetlist.json b/mantrachain/assetlist.json new file mode 100644 index 0000000000..cb1de3c984 --- /dev/null +++ b/mantrachain/assetlist.json @@ -0,0 +1,62 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "mantrachain", + "assets": [ + { + "description": "The native token of MANTRA", + "extended_description": "The first RWA Layer 1 Blockchain, capable of adherence and enforcement of real world regulatory requirements.", + "denom_units": [ + { + "denom": "uom", + "exponent": 0 + }, + { + "denom": "om", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "base": "uom", + "name": "MANTRA Chain", + "display": "om", + "symbol": "OM", + "keywords": [ + "mantra", + "staking", + "delegating", + "governance", + "regulation", + "defi" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", + "theme": { + "circle": true + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg", + "theme": { + "dark_mode": true, + "circle": true + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg", + "theme": { + "dark_mode": false, + "circle": true + } + } + ], + "socials": { + "website": "https://www.mantrachain.io/", + "twitter": "https://x.com/MANTRA_Chain" + } + } + ] +} diff --git a/mantrachain/images/OM-Darkmatt.png b/mantrachain/images/OM-Darkmatt.png new file mode 100644 index 0000000000..e4cd19dcd0 Binary files /dev/null and b/mantrachain/images/OM-Darkmatt.png differ diff --git a/mantrachain/images/OM-Darkmatt.svg b/mantrachain/images/OM-Darkmatt.svg new file mode 100644 index 0000000000..4836b15441 --- /dev/null +++ b/mantrachain/images/OM-Darkmatt.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/mantrachain/images/OM-Prim-Col.png b/mantrachain/images/OM-Prim-Col.png new file mode 100644 index 0000000000..1a73d3eef4 Binary files /dev/null and b/mantrachain/images/OM-Prim-Col.png differ diff --git a/mantrachain/images/OM-Prim-Col.svg b/mantrachain/images/OM-Prim-Col.svg new file mode 100644 index 0000000000..28e4a586ab --- /dev/null +++ b/mantrachain/images/OM-Prim-Col.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/mantrachain/images/OM-WHT.png b/mantrachain/images/OM-WHT.png new file mode 100644 index 0000000000..b0ff62b751 Binary files /dev/null and b/mantrachain/images/OM-WHT.png differ diff --git a/mantrachain/images/OM-WHT.svg b/mantrachain/images/OM-WHT.svg new file mode 100644 index 0000000000..03ea3e59e0 --- /dev/null +++ b/mantrachain/images/OM-WHT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/migaloo/assetlist.json b/migaloo/assetlist.json index 27da03c412..683ab5cbcb 100644 --- a/migaloo/assetlist.json +++ b/migaloo/assetlist.json @@ -420,6 +420,10 @@ "coingecko_id": "terra-luna-2", "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "uluna" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } @@ -597,6 +601,52 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png" } ] + }, + { + "denom_units": [ + { + "denom": "ibc/721B42229246EEDA7A656DB17E494127F91E84AD63E21852737628321892A928", + "exponent": 0, + "aliases": [ + "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind" + ] + }, + { + "denom": "wind", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/721B42229246EEDA7A656DB17E494127F91E84AD63E21852737628321892A928", + "name": "Wind Token", + "display": "wind", + "symbol": "WIND", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "juno", + "base_denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "channel_id": "channel-210" + }, + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "juno", + "base_denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png" + } } ] } \ No newline at end of file diff --git a/neura/assetlist.json b/neura/assetlist.json new file mode 100644 index 0000000000..32bfb4dfac --- /dev/null +++ b/neura/assetlist.json @@ -0,0 +1,47 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "neura", + "assets": [ + { + "description": "ANKR: The native EVM, governance, and staking token for Neura, enabling secure transactions, and seamless GPU resourcing within the ecosystem.", + "denom_units": [ + { + "denom": "atankr", + "exponent": 0 + }, + { + "denom": "ankr", + "exponent": 18 + } + ], + "base": "atankr", + "name": "Neura", + "display": "ankr", + "symbol": "ANKR", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4" + }, + "provider": "Neura" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg" + } + ], + "coingecko_id": "ankr", + "socials": { + "website": "https://www.ankr.com", + "twitter": "https://x.com/ankr" + } + } + ] +} diff --git a/neura/chain.json b/neura/chain.json new file mode 100644 index 0000000000..0813c7e7ea --- /dev/null +++ b/neura/chain.json @@ -0,0 +1,47 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "neura", + "chain_id": "neura_266-1", + "bech32_prefix": "neura", + "pretty_name": "Neura", + "website": "https://www.neuraprotocol.io/", + "description": "Neura is an AI-centric, EVM-compatible Layer 1 blockchain built on the Cosmos SDK. We democratize GPU access and revolutionize AI project funding with IMO’s to advance AI development.", + "status": "upcoming", + "network_type": "mainnet", + "node_home": "$HOME/.neurad", + "daemon_name": "neurad", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "atankr" + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "atankr" + } + ] + }, + "codebase": { + "versions": [ + { + "name": "v0.0.1", + "height": 0 + } + ] + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png" + } + ] +} \ No newline at end of file diff --git a/neura/images/neura.png b/neura/images/neura.png new file mode 100644 index 0000000000..ed01b7dee2 Binary files /dev/null and b/neura/images/neura.png differ diff --git a/neutron/assetlist.json b/neutron/assetlist.json index 9fb8ef58be..c4e3e5c036 100644 --- a/neutron/assetlist.json +++ b/neutron/assetlist.json @@ -1109,6 +1109,58 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png" } ] + }, + { + "denom_units": [ + { + "denom": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + "exponent": 0, + "aliases": [ + "utakumi" + ] + }, + { + "denom": "takumi", + "exponent": 6 + } + ], + "base": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + "name": "Takumi Asano", + "display": "takumi", + "symbol": "TAKUMI", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/TAKUMI.png" + } + ] + }, + { + "name": "Ninja Blaze Token", + "description": "Ninja Blaze Token", + "denom_units": [ + { + "denom": "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", + "exponent": 0, + "aliases": [ + "uNBZ" + ] + }, + { + "denom": "NBZ", + "exponent": 6 + } + ], + "base": "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", + "display": "NBZ", + "symbol": "NBZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png" + } + ] } ] -} \ No newline at end of file +} diff --git a/neutron/chain.json b/neutron/chain.json index 9421b7bfc5..6ff3e1984d 100644 --- a/neutron/chain.json +++ b/neutron/chain.json @@ -62,12 +62,12 @@ }, "codebase": { "git_repo": "https://github.com/neutron-org/neutron", - "recommended_version": "v3.0.2", + "recommended_version": "v3.0.5", "compatible_versions": [ - "v3.0.2" + "v3.0.5" ], "binaries": { - "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v3.0.2/neutrond-linux-amd64" + "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v3.0.5/neutrond-linux-amd64" }, "cosmos_sdk_version": "neutron-org/cosmos-sdk v0.47.10-neutron", "consensus": { @@ -76,7 +76,7 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.2", + "ibc_go_version": "v7.4.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/neutron-org/mainnet-assets/main/neutron-1-genesis.json" }, @@ -138,6 +138,27 @@ "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, "ibc_go_version": "v7.3.2", + "next_version_name": "v3.0.5" + }, + { + "name": "v3.0.5", + "proposal": 37, + "height": 10525000, + "recommended_version": "v3.0.5", + "compatible_versions": [ + "v3.0.5" + ], + "binaries": { + "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v3.0.5/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.4.0", "next_version_name": "" } ] @@ -299,6 +320,12 @@ "url": "https://ezstaking.app/neutron", "tx_page": "https://ezstaking.app/neutron/txs/${txHash}", "account_page": "https://ezstaking.app/neutron/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/neutron", + "tx_page": "https://mainnet.whispernode.com/neutron/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/neutron/account/${accountAddress}" } ], "images": [ @@ -307,4 +334,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 index 1efba9635c..2fadd69215 100644 Binary files a/neutron/images/ATOM1KLFGc.png and b/neutron/images/ATOM1KLFGc.png differ diff --git a/neutron/images/NBZ.png b/neutron/images/NBZ.png new file mode 100644 index 0000000000..7237d687a6 Binary files /dev/null and b/neutron/images/NBZ.png differ diff --git a/neutron/images/takumi.png b/neutron/images/takumi.png new file mode 100644 index 0000000000..40147056dc Binary files /dev/null and b/neutron/images/takumi.png differ diff --git a/nibiru/assetlist.json b/nibiru/assetlist.json index e4f471f66a..7ab8f4f391 100644 --- a/nibiru/assetlist.json +++ b/nibiru/assetlist.json @@ -70,4 +70,4 @@ "symbol": "NPP" } ] -} +} \ No newline at end of file diff --git a/nibiru/chain.json b/nibiru/chain.json index 62aac090a2..1ebc3a8435 100644 --- a/nibiru/chain.json +++ b/nibiru/chain.json @@ -9,9 +9,7 @@ "bech32_prefix": "nibi", "daemon_name": "nibid", "node_home": "$HOME/.nibid", - "key_algos": [ - "secp256k1" - ], + "key_algos": ["secp256k1"], "slip44": 118, "fees": { "fee_tokens": [ @@ -36,15 +34,13 @@ }, "codebase": { "git_repo": "https://github.com/NibiruChain/nibiru", - "recommended_version": "v1.2.0", - "compatible_versions": [ - "v1.2.0" - ], + "recommended_version": "v1.3.0", + "compatible_versions": ["v1.3.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" + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.3.0/nibid_1.3.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.3.0/nibid_1.3.0_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.3.0/nibid_1.3.0_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.3.0/nibid_1.3.0_darwin_arm64.tar.gz" }, "cosmos_sdk_version": "v0.47.10", "consensus": { @@ -61,9 +57,7 @@ { "name": "v1.0.0", "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], + "compatible_versions": ["v1.0.0"], "tag": "v1.0.0", "height": 1, "consensus": { @@ -84,9 +78,7 @@ { "name": "v1.0.1", "recommended_version": "v1.0.1", - "compatible_versions": [ - "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", @@ -109,9 +101,7 @@ { "name": "v1.0.2", "recommended_version": "v1.0.2", - "compatible_versions": [ - "v1.0.2" - ], + "compatible_versions": ["v1.0.2"], "tag": "v1.0.2", "binaries": { "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.2/nibid_1.0.2_linux_amd64.tar.gz", @@ -134,9 +124,7 @@ { "name": "v1.0.3", "recommended_version": "v1.0.3", - "compatible_versions": [ - "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", @@ -159,9 +147,7 @@ { "name": "v1.1.0", "recommended_version": "v1.1.0", - "compatible_versions": [ - "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", @@ -184,9 +170,7 @@ { "name": "v1.2.0", "recommended_version": "v1.2.0", - "compatible_versions": [ - "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", @@ -204,6 +188,29 @@ "ibc_go_version": "v7.3.2", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, + "next_version_name": "v1.3.0" + }, + { + "name": "v1.3.0", + "recommended_version": "v1.3.0", + "compatible_versions": ["v1.3.0"], + "tag": "v1.3.0", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.3.0/nibid_1.3.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.3.0/nibid_1.3.0_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.3.0/nibid_1.3.0_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.3.0/nibid_1.3.0_darwin_arm64.tar.gz" + }, + "proposal": 12, + "height": 6281429, + "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": "" } ] @@ -270,6 +277,12 @@ ] }, "apis": { + "wss": [ + { + "address": "wss://rpc.nibiru.fi/websocket", + "provider": "Nibiru Foundation" + } + ], "rpc": [ { "address": "https://rpc.nibiru.fi", @@ -314,6 +327,10 @@ { "address": "https://nibiru-mainnet.rpc.stakevillage.net:443", "provider": "Stake Village" + }, + { + "address": "https://nibiru-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "rest": [ @@ -364,6 +381,10 @@ { "address": "https://nibiru-mainnet.api.stakevillage.net", "provider": "Stake Village" + }, + { + "address": "https://nibiru-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "grpc": [ @@ -410,6 +431,10 @@ { "address": "nibiru-mainnet.grpc.stakevillage.net:443", "provider": "Stake Village" + }, + { + "address": "nibiru-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, @@ -457,4 +482,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] -} \ No newline at end of file +} diff --git a/nibiru/images/nibiru.png b/nibiru/images/nibiru.png index fe66fc36c7..46dbd64884 100644 Binary files a/nibiru/images/nibiru.png and b/nibiru/images/nibiru.png differ diff --git a/nibiru/images/nibiru.svg b/nibiru/images/nibiru.svg index 0dc977565f..15eabe343f 100644 --- a/nibiru/images/nibiru.svg +++ b/nibiru/images/nibiru.svg @@ -1,19 +1,16 @@ - - - - + + + - - - - - - - - - - - + + + + + + + + + diff --git a/nim/chain.json b/nim/chain.json index b8fb9aaa5e..b699a5cad1 100644 --- a/nim/chain.json +++ b/nim/chain.json @@ -40,6 +40,10 @@ } ], "codebase": { + "git_repo": "https://github.com/Nim-Network-Foundation/mainnet", + "genesis": { + "genesis_url": "https://github.com/Nim-Network-Foundation/mainnet/raw/main/genesis.json" + }, "recommended_version": "v2.1.3-rc02", "compatible_versions": [ "v2.1.3-rc02" diff --git a/noble/assetlist.json b/noble/assetlist.json index 444fef3053..fa28770922 100644 --- a/noble/assetlist.json +++ b/noble/assetlist.json @@ -102,6 +102,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } @@ -124,7 +128,7 @@ ], "base": "uusdc", "display": "usdc", - "name": "USD Coin", + "name": "USDC", "symbol": "USDC", "coingecko_id": "usd-coin", "traces": [ @@ -147,6 +151,36 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } ] + }, + { + "description": "USDLR is a fiat-backed stablecoin issued by Stable. Stable pays DeFi protocols who distribute USDLR.", + "denom_units": [ + { + "denom": "uusdlr", + "exponent": 0, + "aliases": [ + "microusdlr" + ] + }, + { + "denom": "usdlr", + "exponent": 6 + } + ], + "base": "uusdlr", + "display": "usdlr", + "name": "USDLR by Stable", + "symbol": "USDLR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg" + } + ] } ] } \ No newline at end of file diff --git a/noble/chain.json b/noble/chain.json index 38603385d7..7fc091380d 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.1.2", + "recommended_version": "v4.1.3", "compatible_versions": [ - "v4.1.2" + "v4.1.3" ], "cosmos_sdk_version": "v0.45.16", "consensus": { @@ -165,11 +165,11 @@ }, { "name": "fusion", - "tag": "v4.1.2", + "tag": "v4.1.3", "height": 5797500, - "recommended_version": "v4.1.2", + "recommended_version": "v4.1.3", "compatible_versions": [ - "v4.1.2" + "v4.1.3" ], "cosmos_sdk_version": "v0.45.16", "consensus": { diff --git a/nolus/chain.json b/nolus/chain.json index adbb705595..50e5d6722f 100644 --- a/nolus/chain.json +++ b/nolus/chain.json @@ -38,16 +38,16 @@ "git_repo": "https://github.com/nolus-protocol/nolus-core", "recommended_version": "v0.5.2", "compatible_versions": [ - "v0.5.2" + "v0.5.3" ], - "cosmos_sdk_version": "nolus-protocol/cosmos-sdk v0.47.6-nolus", + "cosmos_sdk_version": "nolus-protocol/cosmos-sdk v0.47.8-nolus", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.4" }, "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", + "ibc_go_version": "7.4.0", "ics_enabled": [ "ics20-1", "ics27-1" @@ -198,6 +198,28 @@ "ics20-1", "ics27-1" ], + "next_version_name": "v0.5.3" + }, + { + "name": "v0.5.3", + "proposal": 104, + "height": 4922500, + "recommended_version": "v0.5.3", + "compatible_versions": [ + "v0.5.3" + ], + "cosmos_sdk_version": "nolus-protocol/cosmos-sdk v0.47.8-nolus", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "neutron-org/wasmd v0.45.0", + "cosmwasm_enabled": true, + "ibc_go_version": "7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ], "next_version_name": "" } ] diff --git a/nomic/chain.json b/nomic/chain.json index bb5db772c4..0cb35da7a3 100644 --- a/nomic/chain.json +++ b/nomic/chain.json @@ -144,6 +144,12 @@ "url": "https://nomic.zenscan.io/index.php", "account_page": "https://nomic.zenscan.io/address.php?address=${accountAddress}", "tx_page": "https://nomic.zenscan.io/transaction.php?hash=${txHash}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/nomic", + "tx_page": "https://mainnet.whispernode.com/nomic/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/nomic/account/${accountAddress}" } ], "images": [ diff --git a/omniflixhub/chain.json b/omniflixhub/chain.json index de7afe564e..6b90187b56 100644 --- a/omniflixhub/chain.json +++ b/omniflixhub/chain.json @@ -12,9 +12,9 @@ "slip44": 118, "codebase": { "git_repo": "https://github.com/OmniFlix/omniflixhub", - "recommended_version": "4.0.0", + "recommended_version": "v4.1.0", "compatible_versions": [ - "v4.0.0" + "v4.1.0" ], "cosmos_sdk_version": "v0.47.10", "ibc_go_version": "v7.4.0", @@ -142,12 +142,12 @@ "name": "v4", "proposal": 36, "height": 11914000, - "recommended_version": "v4.0.0", + "recommended_version": "v4.1.0", "compatible_versions": [ - "v4.0.0" + "v4.1.0" ], "cosmos_sdk_version": "v0.47.10", - "ibc_go_version": "v7.3.4", + "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -345,7 +345,7 @@ }, { "address": "https://omniflix.api.staking-explorer.com", - "provider": "Daily DROP | 1% Fee" + "provider": "Daily DROP | 3% Fee" }, { "address": "https://api.omniflix.stakeup.tech", @@ -451,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/oraichain/chain.json b/oraichain/chain.json index 75841d5d9a..1c7f734dbb 100644 --- a/oraichain/chain.json +++ b/oraichain/chain.json @@ -128,6 +128,11 @@ "id": "bdf3f54758e6a712d13fbcda9f49b01f3c1c73b2", "address": "seed.orai.mortysnode.nl:26656", "provider": "Morty's Nodes" + }, + { + "id": "4babdcd4c81d589e789db3b294eebcd779f2227c", + "address": "orai.seed.stavr.tech:2056", + "provider": "🔥STAVR🔥" } ], "persistent_peers": [ @@ -211,6 +216,14 @@ { "address": "https://rpc.orai.mortysnode.nl", "provider": "Morty's Nodes" + }, + { + "address": "https://orai.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://oraichain-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "rest": [ @@ -233,6 +246,14 @@ { "address": "https://mainnet-orai-api.konsortech.xyz", "provider": "KonsorTech" + }, + { + "address": "https://orai.api.m.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://oraichain-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "grpc": [ @@ -255,6 +276,14 @@ { "address": "mainnet-orai.konsortech.xyz:33090", "provider": "KonsorTech" + }, + { + "address": "orai.grpc.m.stavr.tech:110", + "provider": "🔥STAVR🔥" + }, + { + "address": "oraichain-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, @@ -285,6 +314,12 @@ "url": "https://explorer.konsortech.xyz/oraichain", "tx_page": "https://explorer.konsortech.xyz/oraichain/transactions/${txHash}", "account_page": "https://explorer.konsortech.xyz/oraichain/accounts/${accountAddress}" + }, + { + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/Orai-Mainnet", + "tx_page": "https://explorer.stavr.tech/Orai-Mainnet/transactions/${txHash}", + "account_page": "https://explorer.stavr.tech/Orai-Mainnet/accounts/${accountAddress}" } ], "images": [ diff --git a/osmosis/assetlist.json b/osmosis/assetlist.json index 085ee51e61..f554c4d2b1 100644 --- a/osmosis/assetlist.json +++ b/osmosis/assetlist.json @@ -332,6 +332,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "uusdt" + }, "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" }, @@ -455,6 +459,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "busd-wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg" } @@ -793,6 +801,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra", + "base_denom": "uluna" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg" } @@ -838,6 +850,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "ujuno" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" } @@ -899,6 +915,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "dot-planck" + }, "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" }, @@ -947,6 +967,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "evmos", + "base_denom": "aevmos" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } @@ -992,6 +1016,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kava", + "base_denom": "ukava" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg" } @@ -1037,6 +1065,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "uscrt" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" } @@ -1093,6 +1125,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra", + "base_denom": "uusd" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg" } @@ -1187,6 +1223,10 @@ }, "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" } @@ -1232,6 +1272,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "persistence", + "base_denom": "uxprt" + }, "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" } @@ -1307,6 +1351,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "persistence", + "base_denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444" + }, "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" } @@ -1352,6 +1400,10 @@ }, "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" } @@ -1397,6 +1449,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "regen", + "base_denom": "uregen" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg" } @@ -1442,6 +1498,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "sentinel", + "base_denom": "udvpn" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg" } @@ -1487,6 +1547,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "irisnet", + "base_denom": "uiris" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" } @@ -1532,6 +1596,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "starname", + "base_denom": "uiov" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg" } @@ -1577,6 +1645,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "emoney", + "base_denom": "ungm" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg" } @@ -1622,6 +1694,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "emoney", + "base_denom": "eeur" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg" } @@ -1667,6 +1743,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "likecoin", + "base_denom": "nanolike" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg" } @@ -1712,6 +1792,10 @@ }, "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" } @@ -1757,6 +1841,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bitcanna", + "base_denom": "ubcna" + }, "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" } @@ -1802,6 +1890,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bitsong", + "base_denom": "ubtsg" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg" } @@ -1847,6 +1939,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kichain", + "base_denom": "uxki" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg" } @@ -1892,6 +1988,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "panacea", + "base_denom": "umed" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg" } @@ -1933,6 +2033,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bostrom", + "base_denom": "boot" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg" } @@ -1978,6 +2082,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "comdex", + "base_denom": "ucmdx" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" } @@ -2023,6 +2131,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "cheqd", + "base_denom": "ncheq" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg" } @@ -2068,6 +2180,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "lumnetwork", + "base_denom": "ulum" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg" } @@ -2113,9 +2229,16 @@ }, "images": [ { + "image_sync": { + "chain_name": "vidulum", + "base_denom": "uvdl" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" } + ], + "keywords": [ + "osmosis_unstable" ] }, { @@ -2158,6 +2281,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "desmos", + "base_denom": "udsm" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg" } @@ -2202,6 +2329,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "dig", + "base_denom": "udig" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" } ], @@ -2257,6 +2388,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "sommelier", + "base_denom": "usomm" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg" } @@ -2302,6 +2437,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bandchain", + "base_denom": "uband" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg" } @@ -2347,6 +2486,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "konstellation", + "base_denom": "udarc" + }, "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" } @@ -2395,6 +2538,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "umee", + "base_denom": "uumee" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg" } @@ -2440,6 +2587,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "ugraviton" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg" } @@ -2485,6 +2636,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "decentr", + "base_denom": "udec" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg" } @@ -2532,6 +2687,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl" + }, "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" } @@ -2580,6 +2739,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "carbon", + "base_denom": "swth" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg" } @@ -2625,6 +2788,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "cerberus", + "base_denom": "ucrbrus" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg" } @@ -2673,6 +2840,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "fetchhub", + "base_denom": "afet" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg" } @@ -2718,6 +2889,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "assetmantle", + "base_denom": "umntl" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg" } @@ -2765,6 +2940,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg" } @@ -2810,6 +2989,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "injective", + "base_denom": "inj" + }, "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" } @@ -2866,6 +3049,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra", + "base_denom": "ukrw" + }, "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" } @@ -2911,6 +3098,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "microtick", + "base_denom": "utick" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg" } @@ -2959,6 +3150,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "sifchain", + "base_denom": "rowan" + }, "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" } @@ -3004,6 +3199,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "shentu", + "base_denom": "uctk" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg" } @@ -3051,6 +3250,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z" + }, "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" } @@ -3098,6 +3301,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg" } @@ -3158,6 +3365,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "frax-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } ] @@ -3218,6 +3429,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + }, "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" }, @@ -3281,6 +3496,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" }, { @@ -3305,7 +3524,7 @@ ], "type_asset": "ics20", "base": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "name": "USD Coin (Gravity Bridge)", + "name": "USDC (Gravity Bridge)", "display": "gusdc", "symbol": "USDC.grv", "traces": [ @@ -3343,6 +3562,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, { @@ -3405,6 +3628,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" }, { @@ -3467,6 +3694,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" }, { @@ -3516,6 +3747,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg" } @@ -3561,6 +3796,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "provenance", + "base_denom": "nhash" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg" } @@ -3606,6 +3845,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "galaxy", + "base_denom": "uglx" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg" } @@ -3650,6 +3893,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg" } @@ -3697,6 +3944,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g" + }, "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" } @@ -3742,6 +3993,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "meme", + "base_denom": "umeme" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg" } @@ -3788,6 +4043,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png" } ] @@ -3833,6 +4092,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png" } ] @@ -3877,6 +4140,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "uluna" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } @@ -3922,6 +4189,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "rizon", + "base_denom": "uatolo" + }, "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" } @@ -3967,6 +4238,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kava", + "base_denom": "hard" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg" } @@ -4012,6 +4287,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kava", + "base_denom": "swp" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg" } @@ -4065,6 +4344,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "link-wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" } @@ -4110,6 +4393,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "genesisl1", + "base_denom": "el1" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg" } @@ -4165,6 +4452,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "aave-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" } ], @@ -4219,6 +4510,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "ape-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" } ], @@ -4273,6 +4568,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "mkr-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" } ] @@ -4332,6 +4631,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "rai-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" } ] @@ -4383,6 +4686,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "shib-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" } ], @@ -4430,6 +4737,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kujira", + "base_denom": "ukuji" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" } @@ -4475,6 +4786,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "tgrade", + "base_denom": "utgd" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg" } @@ -4519,6 +4834,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "echelon", + "base_denom": "aechelon" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg" } ] @@ -4563,6 +4882,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "odin", + "base_denom": "loki" + }, "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" } @@ -4608,6 +4931,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "odin", + "base_denom": "mGeo" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg" } @@ -4656,8 +4983,12 @@ }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg" + "image_sync": { + "chain_name": "odin", + "base_denom": "mO9W" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg" } ], "keywords": [ @@ -4705,6 +5036,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kichain", + "base_denom": "cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png" } ] @@ -4760,11 +5095,17 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + "image_sync": { + "chain_name": "axelar", + "base_denom": "wglmr-wei" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png" } ] }, @@ -4810,6 +5151,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se" + }, "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" } @@ -4857,6 +5202,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg" } @@ -4902,6 +5251,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "crescent", + "base_denom": "ucre" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" } @@ -4947,6 +5300,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "lumenx", + "base_denom": "ulumen" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg" } @@ -4995,6 +5352,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "oraichain", + "base_denom": "orai" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg" } @@ -5041,6 +5402,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "cudos", + "base_denom": "acudos" + }, "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" } @@ -5086,6 +5451,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kava", + "base_denom": "usdx" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg" } @@ -5131,6 +5500,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "agoric", + "base_denom": "ubld" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg" } @@ -5176,6 +5549,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "agoric", + "base_denom": "uist" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg" } @@ -5223,6 +5600,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv" + }, "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" } @@ -5270,6 +5651,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3" + }, "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" } @@ -5427,6 +5812,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stustars" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" } @@ -5474,6 +5863,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg" } @@ -5521,6 +5914,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg" } @@ -5566,6 +5963,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "uaxl" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" } @@ -5611,6 +6012,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "rebus", + "base_denom": "arebus" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg" } @@ -5712,6 +6117,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stujuno" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" } @@ -5814,6 +6223,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png" } ] @@ -5858,6 +6271,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "lambda", + "base_denom": "ulamb" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg" } @@ -5903,6 +6320,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kujira", + "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" } @@ -5948,8 +6369,12 @@ }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png" + "image_sync": { + "chain_name": "unification", + "base_denom": "nund" + }, + "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" } ] }, @@ -5993,6 +6418,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "jackal", + "base_denom": "ujkl" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg" } @@ -6040,6 +6469,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej" + }, "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" } @@ -6087,6 +6520,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt" + }, "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" } @@ -6133,8 +6570,15 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg" } + ], + "keywords": [ + "osmosis_unstable" ] }, { @@ -6179,6 +6623,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg" } @@ -6226,6 +6674,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg" } @@ -6271,6 +6723,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "beezee", + "base_denom": "ubze" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg" } @@ -6317,6 +6773,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png" } ] @@ -6361,6 +6821,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "acrechain", + "base_denom": "aacre" + }, "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" } @@ -6406,6 +6870,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "comdex", + "base_denom": "ucmst" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg" } @@ -6451,6 +6919,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "imversed", + "base_denom": "aimv" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg" } @@ -6496,6 +6968,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "medasdigital", + "base_denom": "umedas" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg" } @@ -6506,6 +6982,7 @@ }, { "description": "The native token cw20 for PHMN on Juno Chain", + "extended_description": "$PHMN is the governance token of a distributed validator. Similar to PoS chains, each holder possesses voting rights proportionate to the number of locked tokens. PHMN holders can govern the POSTHUMAN validator via DAODAO. For instance, decisions such as diversifying the treasury, updating the validator's commission rate, or exiting the network are determined by the PHMN community.", "denom_units": [ { "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", @@ -6546,10 +7023,18 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg" } - ] + ], + "socials": { + "website": "https://posthuman.digital/", + "twitter": "https://twitter.com/POSTHUMAN_DVS" + } }, { "description": "The native token cw20 for Amber on Secret Network", @@ -6593,6 +7078,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852" + }, "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" } @@ -6638,6 +7127,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "onomy", + "base_denom": "anom" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg" } @@ -6745,6 +7238,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "dyson", + "base_denom": "dys" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg" } @@ -6792,6 +7289,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n" + }, "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" } @@ -6837,6 +7338,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "acrechain", + "base_denom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c" + }, "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" } @@ -6882,6 +7387,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "planq", + "base_denom": "aplanq" + }, "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" } @@ -6946,6 +7455,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "wftm-wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg" } @@ -6991,6 +7504,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "canto", + "base_denom": "acanto" + }, "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" } @@ -7045,6 +7562,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqstars" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg" } @@ -7092,6 +7613,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg" } @@ -7277,6 +7802,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "mars", + "base_denom": "umars" + }, "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" } @@ -7322,6 +7851,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "acrechain", + "base_denom": "erc20/0xAE6D3334989a22A65228732446731438672418F2" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg" } @@ -7374,6 +7907,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stuluna" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" } @@ -7403,7 +7940,7 @@ "type": "liquid-stake", "counterparty": { "chain_name": "evmos", - "base_denom": "uaevmos" + "base_denom": "aevmos" }, "provider": "Stride" }, @@ -7426,6 +7963,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "staevmos" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" } @@ -7473,6 +8014,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg" } @@ -7518,6 +8063,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "8ball", + "base_denom": "uebl" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg" } @@ -7572,6 +8121,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqatom" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg" } @@ -7617,6 +8170,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "comdex", + "base_denom": "uharbor" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg" } @@ -7671,6 +8228,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqregen" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg" } @@ -7717,6 +8278,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png" } ] @@ -7761,6 +8326,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqck" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" } ] @@ -7805,6 +8374,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "arkh", + "base_denom": "arkh" + }, "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" } @@ -7862,6 +8435,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqosmo" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg" } @@ -7908,6 +8485,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "noble", + "base_denom": "ufrienzies" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" } @@ -7953,6 +8534,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "uwhale" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg" } @@ -7999,6 +8584,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png" } ] @@ -8045,6 +8634,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg" } @@ -8091,6 +8684,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png" } ] @@ -8137,6 +8734,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg" } @@ -8182,6 +8783,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "regen", + "base_denom": "eco.uC.NCT" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg" } @@ -8228,6 +8833,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png" } ] @@ -8273,6 +8882,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png" } ] @@ -8318,6 +8931,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png" } ] @@ -8363,6 +8980,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png" } ] @@ -8408,6 +9029,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png" } ] @@ -8453,6 +9078,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png" } ] @@ -8498,6 +9127,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png" } ] @@ -8542,6 +9175,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "omniflixhub", + "base_denom": "uflix" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg" } @@ -8588,6 +9225,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png" } ] @@ -8633,6 +9274,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png" } ] @@ -8679,6 +9324,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg" } @@ -8725,6 +9374,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png" } ] @@ -8770,6 +9423,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png" } ] @@ -8876,6 +9533,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png" } ] @@ -8922,6 +9583,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "secretnetwork", + "base_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg" } @@ -8970,6 +9635,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bluzelle", + "base_denom": "ubnt" + }, "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" } @@ -9027,6 +9696,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "arb-wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" } @@ -9073,6 +9746,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png" } ] @@ -9118,11 +9795,16 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png" } ] }, { + "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.", "denom_units": [ { "denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", @@ -9170,9 +9852,16 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "pepe-wei" + }, "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" ] }, { @@ -9258,6 +9947,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "cbeth-wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" } ] @@ -9318,6 +10011,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "reth-wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" } ] @@ -9386,6 +10083,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelar", + "base_denom": "sfrxeth-wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" } ] @@ -9504,6 +10205,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gitopia", + "base_denom": "ulore" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg" }, @@ -9553,6 +10258,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png" } ] @@ -9604,6 +10313,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stuumee" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" } @@ -9727,6 +10440,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png" } ] @@ -9772,6 +10489,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png" } ] @@ -9816,6 +10537,10 @@ }, "images": [ { + "image_sync": { + "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" } @@ -9862,6 +10587,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png" } ] @@ -9883,7 +10612,7 @@ ], "type_asset": "ics20", "base": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "name": "Composable", + "name": "Picasso", "display": "pica", "symbol": "PICA", "traces": [ @@ -9893,7 +10622,7 @@ "chain_name": "picasso", "base_denom": "ppica" }, - "provider": "Composable Finance" + "provider": "Picasso" }, { "type": "ibc", @@ -9909,7 +10638,7 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" }, "images": [ { @@ -9917,7 +10646,7 @@ "chain_name": "picasso", "base_denom": "ppica" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/picasso/images/pica.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" } ] }, @@ -9981,6 +10710,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "composable", + "base_denom": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" } ] @@ -10053,11 +10786,17 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + "image_sync": { + "chain_name": "composable", + "base_denom": "ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" } ] }, @@ -10153,6 +10892,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "archway", + "base_denom": "aarch" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" } @@ -10197,6 +10940,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "empowerchain", + "base_denom": "umpwr" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" } ] @@ -10242,6 +10989,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png" } ] @@ -10286,6 +11037,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kyve", + "base_denom": "ukyve" + }, "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" } @@ -10425,6 +11180,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "sei", + "base_denom": "usei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" } @@ -10479,6 +11238,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqsomm" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg" } @@ -10523,6 +11286,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "passage", + "base_denom": "upasg" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" } ] @@ -10574,6 +11341,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stusomm" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg" } @@ -10635,6 +11406,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } ] @@ -10687,6 +11462,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png" } ] @@ -10806,6 +11585,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" } ] @@ -10858,6 +11641,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" }, { @@ -10908,6 +11695,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kujira", + "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg" } @@ -10951,6 +11742,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png" } ] @@ -11079,6 +11874,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp" + }, "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" }, @@ -11105,7 +11904,7 @@ ], "type_asset": "ics20", "base": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "name": "USD Coin", + "name": "USDC", "display": "usdc", "symbol": "USDC", "traces": [ @@ -11262,6 +12061,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "xpla", + "base_denom": "axpla" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg" } @@ -11306,6 +12109,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "sei", + "base_denom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png" } ] @@ -11350,6 +12157,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "evmos", + "base_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9" + }, "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" } @@ -11395,6 +12206,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "realio", + "base_denom": "ario" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg" } @@ -11494,6 +12309,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "sge", + "base_denom": "usge" + }, "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" } @@ -11538,6 +12357,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stafihub", + "base_denom": "ufis" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg" } ] @@ -11589,6 +12412,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stafihub", + "base_denom": "uratom" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg" } ] @@ -11633,6 +12460,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stargaze", + "base_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg" } @@ -11677,6 +12508,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "doravota", + "base_denom": "peaka" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg" }, { @@ -11724,6 +12559,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "coreum", + "base_denom": "ucore" + }, "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" } @@ -11733,10 +12572,12 @@ "staking", "wasm", "assets", - "nft" + "nft", + "XRPL" ] }, { + "description": "The native token of the Celestia blockchain.", "denom_units": [ { "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", @@ -11876,6 +12717,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "fxcore", + "base_denom": "FX" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" } @@ -12058,6 +12903,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "kujira", + "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" } ] @@ -12102,6 +12951,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stargaze", + "base_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg" } @@ -12170,6 +13023,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } ] @@ -12268,6 +13125,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "qwoyn", + "base_denom": "uqwoyn" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" } ], @@ -12311,6 +13172,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bostrom", + "base_denom": "hydrogen" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg" } @@ -12352,6 +13217,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bostrom", + "base_denom": "tocyb" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg" } @@ -12400,6 +13269,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bostrom", + "base_denom": "millivolt" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg" } @@ -12448,6 +13321,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "bostrom", + "base_denom": "milliampere" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg" } @@ -12493,6 +13370,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "source", + "base_denom": "usource" + }, "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" } @@ -12549,6 +13430,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg" } ] @@ -12684,6 +13569,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "chihuahua", + "base_denom": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png" } ], @@ -12731,6 +13620,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png" } ] @@ -12813,6 +13706,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg" } ] @@ -12857,6 +13754,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg" } @@ -12901,6 +13802,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png" } ] @@ -12945,6 +13850,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "haqq", + "base_denom": "aISLM" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg" } @@ -13157,6 +14066,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "injective", + "base_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png" } ] @@ -13202,6 +14115,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png" } ] @@ -13245,6 +14162,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "nyx", + "base_denom": "unyx" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png" } ], @@ -13334,6 +14255,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "chihuahua", + "base_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png" } ] @@ -13378,6 +14303,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png" } ] @@ -13423,6 +14352,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png" } ] @@ -13466,6 +14399,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "chihuahua", + "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" } ] @@ -13613,6 +14550,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png" } ] @@ -13658,6 +14599,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png" } ] @@ -13755,6 +14700,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg" } ] @@ -13807,6 +14756,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stadydx" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg" } @@ -13860,6 +14813,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stutia" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg" } @@ -13913,6 +14870,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stusaga" + }, "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" } @@ -13965,6 +14926,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stinj" + }, "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" } @@ -14075,6 +15040,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "dymension", + "base_denom": "adym" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg" } @@ -14151,6 +15120,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg" } ] @@ -14298,6 +15271,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "humans", + "base_denom": "aheart" + }, "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": { @@ -14346,6 +15323,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "evmos", + "base_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280" + }, "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" } @@ -14391,6 +15372,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "scorum", + "base_denom": "nscr" + }, "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" } @@ -14435,6 +15420,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "chain4energy", + "base_denom": "uc4e" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" } ], @@ -14483,6 +15472,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png" } ] @@ -14551,6 +15544,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "source", + "base_denom": "ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png" } ] @@ -14594,6 +15591,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "pylons", + "base_denom": "ubedrock" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png" } ] @@ -14650,6 +15651,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png" } ] @@ -14698,8 +15703,12 @@ }, "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" + "image_sync": { + "chain_name": "aioz", + "base_denom": "attoaioz" + }, + "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" } ] }, @@ -14751,6 +15760,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stadym" + }, "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" } @@ -14795,13 +15808,17 @@ }, "images": [ { + "image_sync": { + "chain_name": "odin", + "base_denom": "udoki" + }, "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.", + "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 limited 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", @@ -14870,6 +15887,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png" } ] @@ -14976,6 +15997,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "sei", + "base_denom": "cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png" } ], @@ -15023,6 +16048,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "nibiru", + "base_denom": "unibi" + }, "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" } @@ -15123,6 +16152,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "conscious", + "base_denom": "acvnt" + }, "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" } @@ -15202,6 +16235,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3" + }, "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" } @@ -15236,10 +16273,12 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png" } - ] + ], + "coingecko_id": "mad-scientists" }, { "description": "BackBone Labs Liquid Staked OSMO", + "extended_description": "bOSMO - solving capital inefficiencies in the NFT market space", "denom_units": [ { "denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", @@ -15264,27 +16303,29 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png" } ], - "keywords": [ - "osmosis_unlisted" - ] + "socials": { + "website": "https://app.backbonelabs.io/", + "twitter": "https://twitter.com/BackBone_Labs" + } }, { "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", "denom_units": [ { - "denom": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "denom": "ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE", "exponent": 0, "aliases": [ - "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78" + "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" ] }, { "denom": "PUNDIX", - "exponent": 18 + "exponent": 18, + "aliases": [] } ], "type_asset": "ics20", - "base": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "base": "ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE", "name": "Pundi X Token", "display": "PUNDIX", "symbol": "PUNDIX", @@ -15294,36 +16335,18 @@ "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" + "channel_id": "channel-19" }, "chain": { - "channel_id": "channel-12618", - "path": "transfer/channel-12618/transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + "channel_id": "channel-2716", + "path": "transfer/channel-2716/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" ] }, { @@ -15386,6 +16409,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "composable", + "base_denom": "ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" } ] @@ -15437,6 +16464,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png" } ] @@ -15445,7 +16476,7 @@ "description": "The native token of dHealth", "denom_units": [ { - "denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "denom": "ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33", "exponent": 0, "aliases": [ "udhp" @@ -15457,7 +16488,7 @@ } ], "type_asset": "ics20", - "base": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "base": "ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33", "name": "dHealth", "display": "dhp", "symbol": "DHP", @@ -15467,26 +16498,19 @@ "counterparty": { "chain_name": "dhealth", "base_denom": "udhp", - "channel_id": "channel-1" + "channel_id": "channel-4" }, "chain": { - "channel_id": "channel-38776", - "path": "transfer/channel-38776/udhp" + "channel_id": "channel-75030", + "path": "transfer/channel-75030/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" ] }, { @@ -15529,6 +16553,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "furya", + "base_denom": "ufury" + }, "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": { @@ -15538,8 +16566,7 @@ ], "keywords": [ "gaming", - "staking", - "osmosis_unlisted" + "staking" ] }, { @@ -15582,6 +16609,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "saga", + "base_denom": "usaga" + }, "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": { @@ -15639,6 +16670,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png" } ] @@ -15647,7 +16682,7 @@ "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", "denom_units": [ { - "denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "denom": "ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7", "exponent": 0, "aliases": [ "shido" @@ -15659,7 +16694,7 @@ } ], "type_asset": "ics20", - "base": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "base": "ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7", "name": "Shido", "display": "SHIDO", "symbol": "SHIDO", @@ -15672,15 +16707,11 @@ "channel_id": "channel-0" }, "chain": { - "channel_id": "channel-38921", - "path": "transfer/channel-38921/shido" + "channel_id": "channel-73755", + "path": "transfer/channel-73755/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", @@ -15731,6 +16762,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "cifer", + "base_denom": "ucif" + }, "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" } @@ -15778,6 +16813,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "injective", + "base_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png" } ] @@ -15816,6 +16855,50 @@ "twitter": "https://twitter.com/IBCmemecoin" } }, + { + "description": "The token of Crowdpunk DAO", + "denom_units": [ + { + "denom": "ibc/B87F0F5255CC658408F167C2F7B987A8D914622E1F73BCC267406360588F2B1E", + "exponent": 0, + "aliases": [ + "erc20/0xfbf4318d24a93753f11d365a6dcf8b830e98ab0f" + ] + }, + { + "denom": "crowdp", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/B87F0F5255CC658408F167C2F7B987A8D914622E1F73BCC267406360588F2B1E", + "name": "Crowdpunk DAO", + "display": "crowdp", + "symbol": "CROWDP", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "evmos", + "base_denom": "erc20/0xfbf4318d24a93753f11d365a6dcf8b830e98ab0f", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-204", + "path": "transfer/channel-204/erc20/0xfbf4318d24a93753f11d365a6dcf8b830e98ab0f" + } + } + ], + "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" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, { "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", "denom_units": [ @@ -15913,6 +16996,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg" } ], @@ -16039,406 +17126,2601 @@ ] }, { - "description": "The Revenue & Governance token of Unstake.fi", + "description": "Bernese Mountain Dog. Thematic dog token to have fun and be friends with all other dog tokens. Fixed supply 132M", "denom_units": [ { - "denom": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", - "exponent": 0, - "aliases": [ - "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" - ] + "denom": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", + "exponent": 0 }, { - "denom": "nstk", + "denom": "BERNESE", "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" - } - } - ], + "type_asset": "sdk.coin", + "address": "osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss", + "base": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", + "name": "BERNESE", + "display": "BERNESE", + "symbol": "BERNESE", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png" } ] }, { + "description": "The native token of Ethereum, bridged via IBC.", "denom_units": [ { - "denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "denom": "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", "exponent": 0, "aliases": [ - "avalanche-uusdc" + "wei", + "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C" ] }, { - "denom": "avalanche-usdc", - "exponent": 6 + "denom": "eth", + "exponent": 18 } ], "type_asset": "ics20", - "base": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", - "name": "Wormhole USDC(Avalanche)", - "display": "avalanche-usdc", - "symbol": "avalanche.USDC.wh", + "base": "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", + "name": "Ethereum", + "display": "eth", + "symbol": "ETH.pica", "traces": [ { "type": "ibc", "counterparty": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "chain_name": "ethereum", + "base_denom": "wei", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/wei" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C", "channel_id": "channel-3" }, "chain": { - "channel_id": "channel-2186", - "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4" + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/wei" } } ], "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" + "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" } - ], - "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.", + "description": "A stablecoin issued by Maker Protocol.", "denom_units": [ { - "denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "denom": "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", "exponent": 0, "aliases": [ - "unom" + "dai-wei", + "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533" ] }, { - "denom": "nom", - "exponent": 6 + "denom": "dai", + "exponent": 18 } ], "type_asset": "ics20", - "base": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", - "name": "Nomic", - "display": "nom", - "symbol": "nomic.NOM", + "base": "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", + "name": "Dai", + "display": "dai", + "symbol": "DAI.pica", "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "MakerDAO" + }, { "type": "ibc", "counterparty": { - "chain_name": "nomic", - "base_denom": "unom", - "channel_id": "channel-1" + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f", + "channel_id": "channel-2" }, "chain": { - "channel_id": "channel-6897", - "path": "transfer/channel-6897/unom" + "channel_id": "channel-52", + "path": "transfer/channel-52/0x6b175474e89094c44da98b954eedeac495271d0f" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x6b175474e89094c44da98b954eedeac495271d0f" } } ], "images": [ { "image_sync": { - "chain_name": "nomic", - "base_denom": "unom" + "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/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", + "exponent": 0, + "aliases": [ + "fxs-wei", + "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29" + ] + }, + { + "denom": "fxs", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", + "name": "Frax Shares", + "display": "fxs", + "symbol": "FXS.pica", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0" + } + } + ], + "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 by Frax Finance.", + "denom_units": [ + { + "denom": "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", + "exponent": 0, + "aliases": [ + "frax-wei", + "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB" + ] + }, + { + "denom": "frax", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", + "name": "Frax", + "display": "frax", + "symbol": "FRAX.pica", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Frax Protocol" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x853d955acef822db058eb8505911ed77f175b99e" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x853d955acef822db058eb8505911ed77f175b99e" + } + } + ], + "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 stablecoin issued by Tether that is pegged 1:1 to the USD.", + "denom_units": [ + { + "denom": "ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3", + "exponent": 0, + "aliases": [ + "uusdt", + "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD" + ] + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3", + "name": "Tether (Ethereum)", + "display": "usdt", + "symbol": "USDT.pica", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Tether" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xdac17f958d2ee523a2206206994597c13d831ec7" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0xdac17f958d2ee523a2206206994597c13d831ec7" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.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/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", + "exponent": 0, + "aliases": [ + "sfrax-wei", + "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9" + ] + }, + { + "denom": "sfrax", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", + "name": "Staked FRAX", + "display": "sfrax", + "symbol": "sFRAX.pica", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Frax Protocol" + }, + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" + }, + "provider": "Frax" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32" + } + } + ], + "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 liquid ETH staking derivative designed to leverage the Frax ecosystem.", + "denom_units": [ + { + "denom": "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", + "exponent": 0, + "aliases": [ + "frxeth-wei", + "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90" + ] + }, + { + "denom": "frxeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", + "name": "Frax Ether", + "display": "frxeth", + "symbol": "frxETH.pica", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Frax" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x5e8422345238f34275888049021821e8e08caa1f" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x5e8422345238f34275888049021821e8e08caa1f" + } + } + ], + "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/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", + "exponent": 0, + "aliases": [ + "sfrxeth-wei", + "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A" + ] + }, + { + "denom": "sfrxeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", + "name": "Frax Staked Ether", + "display": "sfrxeth", + "symbol": "sfrxETH.pica", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Frax" + }, + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f" + }, + "provider": "Frax" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xac3e018457b222d93114458476f3e3416abbe38f" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0xac3e018457b222d93114458476f3e3416abbe38f" + } + } + ], + "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": "Adam Clay a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", + "exponent": 0, + "aliases": [ + "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09" + ] + }, + { + "denom": "clay", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", + "name": "Adam Clay FanToken", + "display": "clay", + "symbol": "CLAY", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "bitsong", + "base_denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-73", + "path": "transfer/channel-73/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09" + } + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + } + ] + }, + { + "description": "404Deep Records a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", + "exponent": 0, + "aliases": [ + "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A" + ] + }, + { + "denom": "404dr", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", + "name": "404Deep Records Fantoken", + "display": "404dr", + "symbol": "404DR", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "bitsong", + "base_denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-73", + "path": "transfer/channel-73/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A" + } + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + } + ] + }, + { + "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": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", + "exponent": 0 + }, + { + "denom": "wLIBRA", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p", + "base": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", + "name": "Wrapped Libra Coin (LibraBridge)", + "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": "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": [ + "anim", + "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942" + ] + }, + { + "denom": "nim", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", + "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" + } + }, + { + "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" + } + } + ], + "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" + }, + "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" + } + ], + "keywords": [ + "gaming", + "AI", + "osmosis_unstable" + ], + "socials": { + "website": "https://ai.nim.network/", + "twitter": "https://twitter.com/nim_network" + } + }, + { + "description": "The native token of SEDA Chain.", + "denom_units": [ + { + "denom": "ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8", + "exponent": 0, + "aliases": [ + "aseda" + ] + }, + { + "denom": "seda", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8", + "name": "SEDA", + "display": "seda", + "symbol": "SEDA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "seda", + "base_denom": "aseda", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-75016", + "path": "transfer/channel-75016/aseda" + } + } + ], + "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" + } + ] + }, + { + "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": "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", + "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" + } + ] + }, + { + "description": "Uhm, Power Bottom", + "denom_units": [ + { + "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb", + "exponent": 0 + }, + { + "denom": "PBB", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb", + "name": "Power Bottom", + "display": "PBB", + "symbol": "PBB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/PBB.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/PBB.png" + } + ] + }, + { + "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": "Airdrop For All [AFA - New Name on Cosmos Ecosystem, A4A - Old Name on TurtleNetwork] is a token from turtleNetwork towards cosmos ecosystem.", + "denom_units": [ + { + "denom": "ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995", + "exponent": 0, + "aliases": [ + "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg" + ] + } + ], + "type_asset": "ics20", + "base": "ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995", + "name": "Airdrop For All", + "display": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", + "symbol": "AFA", + "traces": [ + { + "type": "ibc-cw20", + "counterparty": { + "chain_name": "juno", + "base_denom": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", + "port": "wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn", + "channel_id": "channel-47" + }, + "chain": { + "port": "transfer", + "channel_id": "channel-169", + "path": "transfer/channel-169/cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg" + } + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png" + } + ] + }, + { + "description": "Like cosmos, but shit", + "denom_units": [ + { + "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "exponent": 0 + }, + { + "denom": "SHITMOS", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "name": "Shitmos", + "display": "SHITMOS", + "symbol": "SHITMOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/SHITMOS.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/SHITMOS.png" + } + ] + }, + { + "description": "Quicksilver Liquid Staked JUNO", + "denom_units": [ + { + "denom": "ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54", + "exponent": 0, + "aliases": [ + "uqjuno" + ] + }, + { + "denom": "qjuno", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54", + "name": "Quicksilver Liquid Staked JUNO", + "display": "qjuno", + "symbol": "qJUNO", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "juno", + "base_denom": "ujuno" + }, + "provider": "Quicksilver" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "quicksilver", + "base_denom": "uqjuno", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-522", + "path": "transfer/channel-522/uqjuno" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqjuno" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked SAGA", + "denom_units": [ + { + "denom": "ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13", + "exponent": 0, + "aliases": [ + "uqsaga" + ] + }, + { + "denom": "qsaga", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13", + "name": "Quicksilver Liquid Staked SAGA", + "display": "qsaga", + "symbol": "qSAGA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "saga", + "base_denom": "usaga" + }, + "provider": "Quicksilver" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "quicksilver", + "base_denom": "uqsaga", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-522", + "path": "transfer/channel-522/uqsaga" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqsaga" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked DYDX", + "denom_units": [ + { + "denom": "ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27", + "exponent": 0, + "aliases": [ + "aqdydx" + ] + }, + { + "denom": "qdydx", + "exponent": 18, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27", + "name": "Quicksilver Liquid Staked DYDX", + "display": "qdydx", + "symbol": "qDYDX", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "dydx", + "base_denom": "adydx" + }, + "provider": "Quicksilver" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "quicksilver", + "base_denom": "aqdydx", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-522", + "path": "transfer/channel-522/aqdydx" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "aqdydx" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked BLD", + "denom_units": [ + { + "denom": "ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7", + "exponent": 0, + "aliases": [ + "uqbld" + ] + }, + { + "denom": "qbld", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7", + "name": "Quicksilver Liquid Staked BLD", + "display": "qbld", + "symbol": "qBLD", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "agoric", + "base_denom": "ubld" + }, + "provider": "Quicksilver" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "quicksilver", + "base_denom": "uqbld", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-522", + "path": "transfer/channel-522/uqbld" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "quicksilver", + "base_denom": "uqbld" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg" + } + ] + }, + { + "description": "PEPE is a deflationary memecoin launched on Ethereum. ", + "denom_units": [ + { + "denom": "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", + "exponent": 0, + "aliases": [ + "pepe-wei", + "ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05" + ] + }, + { + "denom": "pepe", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE.pica", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x6982508145454ce325ddbe47a25d4ec3d2311933" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x6982508145454ce325ddbe47a25d4ec3d2311933" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "CRV is the governance token for Curve Finance.", + "denom_units": [ + { + "denom": "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", + "exponent": 0, + "aliases": [ + "crv-wei", + "ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED" + ] + }, + { + "denom": "crv", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", + "name": "Curve DAO", + "display": "crv", + "symbol": "CRV.pica", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xd533a949740bb3306d119cc777fa900ba034cd52" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xd533a949740bb3306d119cc777fa900ba034cd52" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crv.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "A Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer.", + "denom_units": [ + { + "denom": "ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB", + "exponent": 0, + "aliases": [ + "ezeth-wei", + "ibc/0247E0E2C174135AADF4EA172D97FF5C15A64689A403E83603EAE4F0616DD365" + ] + }, + { + "denom": "ezeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB", + "name": "Renzo Restaked ETH", + "display": "ezeth", + "symbol": "ezETH.pica", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Renzo" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xbf5495efe5db9ce00f80364c8b423567e58d2110" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/0247E0E2C174135AADF4EA172D97FF5C15A64689A403E83603EAE4F0616DD365", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0xbf5495efe5db9ce00f80364c8b423567e58d2110" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ezeth.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "Ethena USDe is a synthetic dollar protocol built on Ethereum.", + "denom_units": [ + { + "denom": "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", + "exponent": 0, + "aliases": [ + "usde-wei", + "ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983" + ] + }, + { + "denom": "usde", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", + "name": "Ethena USDe", + "display": "usde", + "symbol": "USDe.pica", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Ethena" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x4c9edd5852cd905f086c759e8383e09bff1e68b3" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x4c9edd5852cd905f086c759e8383e09bff1e68b3" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usde.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "The native governance token of Ethena.", + "denom_units": [ + { + "denom": "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", + "exponent": 0, + "aliases": [ + "ena-wei", + "ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929" + ] + }, + { + "denom": "ena", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", + "name": "Ethena", + "display": "ena", + "symbol": "ENA.pica", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x57e114b691db790c35207b2e685d4a43181e6061", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x57e114b691db790c35207b2e685d4a43181e6061" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x57e114b691db790c35207b2e685d4a43181e6061" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x57e114b691db790c35207b2e685d4a43181e6061" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ena.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "eETH is a natively restaked liquid staking token on Ethereum.", + "denom_units": [ + { + "denom": "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", + "exponent": 0, + "aliases": [ + "eeth-wei", + "ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B" + ] + }, + { + "denom": "eeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", + "name": "ether.fi Staked ETH", + "display": "eeth", + "symbol": "eETH.pica", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "EtherFi" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x35fa164735182de50811e8e2e824cfb9b6118ac2", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x35fa164735182de50811e8e2e824cfb9b6118ac2" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x35fa164735182de50811e8e2e824cfb9b6118ac2" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x35fa164735182de50811e8e2e824cfb9b6118ac2" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eeth.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "pxETH is built on top of the Pirex platform and forms the foundation of the Dinero protocol.", + "denom_units": [ + { + "denom": "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", + "exponent": 0, + "aliases": [ + "pxeth-wei", + "ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821" + ] + }, + { + "denom": "pxeth", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", + "name": "Dinero Staked ETH", + "display": "pxeth", + "symbol": "pxETH.pica", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Dinero" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0x04c154b66cb340f3ae24111cc767e0184ed00cc6" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0x04c154b66cb340f3ae24111cc767e0184ed00cc6" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pxeth.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "A collateralized-debt-position (CDP) stablecoin by Curve DAO.", + "denom_units": [ + { + "denom": "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", + "exponent": 0, + "aliases": [ + "crvusd-wei", + "ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A" + ] + }, + { + "denom": "crvusd", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", + "name": "crvUSD", + "display": "crvusd", + "symbol": "crvUSD.pica", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Curve Finance" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-52", + "path": "transfer/channel-52/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-52/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crvusd.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "Coin to support the real world in Wilhelmshall im Huy", + "denom_units": [ + { + "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha", + "exponent": 0 + }, + { + "denom": "WIHA", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha", + "name": "WiliHall", + "display": "WIHA", + "symbol": "WIHA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WIHA.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WIHA.png" + } + ] + }, + { + "description": "For th", + "denom_units": [ + { + "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse", + "exponent": 0 + }, + { + "denom": "CRAZYHORSE", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse", + "name": "HorseShoeBar", + "display": "CRAZYHORSE", + "symbol": "CRAZYHORSE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CrazyHorse.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CrazyHorse.png" + } + ] + }, + { + "description": "Cosmus Cartol always get rich", + "denom_units": [ + { + "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca", + "exponent": 0 + }, + { + "denom": "COCA", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca", + "name": "CosmusCartol", + "display": "COCA", + "symbol": "COCA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COCA.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COCA.png" + } + ] + }, + { + "description": "Tether, issued natively on Solana.", + "denom_units": [ + { + "denom": "ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A", + "exponent": 0, + "aliases": [ + "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575" + ] + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A", + "name": "Tether", + "display": "usdt", + "symbol": "solana.USDT.pica", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Tether" + }, + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Tether" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-71/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/usdt.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the Edgevana protocol.", + "denom_units": [ + { + "denom": "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", + "exponent": 0, + "aliases": [ + "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C" + ] + }, + { + "denom": "edgesol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", + "name": "Edgevana Staked SOL", + "display": "edgesol", + "symbol": "edgeSOL.pica", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Edgevana" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-71/edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/edgesol.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the MarginFi protocol.", + "denom_units": [ + { + "denom": "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", + "exponent": 0, + "aliases": [ + "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D" + ] + }, + { + "denom": "lst", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", + "name": "Liquid Staking Token", + "display": "lst", + "symbol": "LST.pica", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "MarginFi" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-71/LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/lst.png" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using Jito.", + "denom_units": [ + { + "denom": "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", + "exponent": 0, + "aliases": [ + "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2" + ] + }, + { + "denom": "jitosol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", + "name": "Jito Staked SOL", + "display": "jitosol", + "symbol": "jitoSOL.pica", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Jito" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-71/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/jitosol.png" } ], - "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" - } + "keywords": [ + "osmosis_unlisted" + ] }, { - "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", + "description": "SOL is the native cryptocurrency of the Solana blockchain.", "denom_units": [ { - "denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "denom": "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", + "exponent": 0, + "aliases": [ + "Lamport", + "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C" + ] + }, + { + "denom": "wsol", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", + "name": "Wrapped Solana", + "display": "wsol", + "symbol": "wSOL.pica", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Solana" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "So11111111111111111111111111111111111111112", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/So11111111111111111111111111111111111111112" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-71/So11111111111111111111111111111111111111112" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "So11111111111111111111111111111111111111112" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "An alloy of USDT asset variants on Osmosis.", + "extended_description": "Multiple Tether USD variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of USDT.", + "denom_units": [ + { + "denom": "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", "exponent": 0 }, { - "denom": "ymos", + "denom": "allUSDT", "exponent": 6 } ], "type_asset": "sdk.coin", - "address": "osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy", - "base": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", - "name": "Yieldmos Coin", - "display": "ymos", - "symbol": "YMOS", + "address": "osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek", + "base": "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", + "name": "Alloyed USDT", + "display": "allUSDT", + "symbol": "allUSDT", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Tether" + }, + { + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Osmosis" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + } + ], + "keywords": [ + "osmosis_unlisted" + ], + "socials": { + "website": "https://osmosis.zone", + "twitter": "https://twitter.com/osmosiszone" + } + }, + { + "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/osmosis/images/ymos.png" + "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/osmosis/images/ymos.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png" } + ], + "keywords": [ + "osmosis_unlisted" ] }, { - "description": "Memecoin for The International Brane Wave", + "description": "The native token of dHealth", "denom_units": [ { - "denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", "exponent": 0, "aliases": [ - "brnz" + "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" + } } ], - "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" + "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": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg" + "image_sync": { + "chain_name": "dhealth", + "base_denom": "udhp" + }, + "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": "Bernese Mountain Dog. Thematic dog token to have fun and be friends with all other dog tokens. Fixed supply 132M", + "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", "denom_units": [ { - "denom": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", - "exponent": 0 + "denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "exponent": 0, + "aliases": [ + "shido" + ] }, { - "denom": "BERNESE", - "exponent": 6 + "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" + } } ], - "type_asset": "sdk.coin", - "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/bernese.png" + "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/osmosis/images/bernese.png" + "image_sync": { + "chain_name": "shido", + "base_denom": "shido" + }, + "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": "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.", + "description": "The Revenue & Governance token of Unstake.fi", "denom_units": [ { - "denom": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", - "exponent": 0 + "denom": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", + "exponent": 0, + "aliases": [ + "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" + ] }, { - "denom": "wLIBRA", + "denom": "nstk", "exponent": 6 } ], - "type_asset": "sdk.coin", - "address": "osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p", - "base": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", - "name": "Wrapped Libra Coin", - "display": "wLIBRA", - "symbol": "wLIBRA", + "type_asset": "ics20", + "base": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", + "name": "Unstake Fi", + "display": "nstk", + "symbol": "NSTK", "traces": [ { - "type": "bridge", + "type": "ibc", "counterparty": { - "chain_name": "0l", - "base_denom": "microlibra" + "chain_name": "kujira", + "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "channel_id": "channel-3" }, - "provider": "LibraBridge" + "chain": { + "channel_id": "channel-259", + "path": "transfer/channel-259/factory:kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh:unstk" + } } ], "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" }, "images": [ { "image_sync": { - "chain_name": "0l", - "base_denom": "microlibra" + "chain_name": "kujira", + "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" }, - "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" } - ], - "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": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "exponent": 0, + "aliases": [ + "avalanche-uusdc" + ] }, { - "denom": "ashLAB", + "denom": "avalanche-usdc", "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" - }, + "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/ashLAB.png" + "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": "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.", + "description": "Nomic's native token.", "denom_units": [ { - "denom": "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", + "denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", "exponent": 0, "aliases": [ - "anim", - "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942" + "unom" ] }, { - "denom": "nim", - "exponent": 18 + "denom": "nom", + "exponent": 6 } ], "type_asset": "ics20", - "base": "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", - "name": "NIM Network", - "display": "nim", - "symbol": "NIM", + "base": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "name": "Nomic", + "display": "nom", + "symbol": "nomic.NOM", "traces": [ { "type": "ibc", "counterparty": { - "chain_name": "dymension", - "base_denom": "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942", - "channel_id": "channel-2" + "chain_name": "nomic", + "base_denom": "unom", + "channel_id": "channel-1" }, "chain": { - "channel_id": "channel-19774", - "path": "transfer/channel-19774/transfer/channel-49/anim" + "channel_id": "channel-6897", + "path": "transfer/channel-6897/unom" } } ], "images": [ { "image_sync": { - "chain_name": "dymension", - "base_denom": "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942" + "chain_name": "nomic", + "base_denom": "unom" }, - "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" + "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" } ], - "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" + "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": "Beer Is Good for You!", + "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", "denom_units": [ { - "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", + "denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", "exponent": 0 }, { - "denom": "bwh", + "denom": "ymos", "exponent": 6 } ], "type_asset": "sdk.coin", - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", - "name": "BeerWifHat", - "display": "bwh", - "symbol": "BWH", + "address": "osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy", + "base": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "name": "Yieldmos Coin", + "display": "ymos", + "symbol": "YMOS", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bwh.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bwh.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png" } ] }, { - "description": "Cosmos Airdrop Chat", - "extended_description": "Official Token of the Cosmos Airdrop community", + "description": "Memecoin for The International Brane Wave", "denom_units": [ { - "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", + "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": "ashLAB - Burned LAB", + "extended_description": "ashLAB - receipt token recieved when burning LAB via ASH DAOs Furnace", + "denom_units": [ + { + "denom": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", "exponent": 0 }, { - "denom": "CAC", + "denom": "ashLAB", "exponent": 6 } ], "type_asset": "sdk.coin", - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", - "name": "Cosmos Airdrop Chat", - "display": "CAC", - "symbol": "CAC", + "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/CAC.png" + "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/CAC.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png" } ] }, @@ -16479,58 +19761,15 @@ "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" - } - ] - }, - { - "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" + "chain_name": "migaloo", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png" } ] } ] -} \ No newline at end of file +} diff --git a/osmosis/chain.json b/osmosis/chain.json index b93432e36c..0a8803cc39 100644 --- a/osmosis/chain.json +++ b/osmosis/chain.json @@ -41,15 +41,14 @@ "name": "v3", "genesis_url": "https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json" }, - "recommended_version": "v24.0.1", + "recommended_version": "v25.0.0", "compatible_versions": [ - "v24.0.1", - "v24.0.0" + "v25.0.0" ], - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v24-osmo-5", + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1", "consensus": { "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.4-v24-osmo-2" + "version": "osmosis-labs/cometbft v0.37.4-v25-osmo-2" }, "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "cosmwasm_enabled": true, @@ -57,10 +56,10 @@ "ics_enabled": [ "ics20-1" ], - "go_version": "1.21", + "go_version": "1.21.4", "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" + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-amd64", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-arm64" } }, "images": [ @@ -534,6 +533,12 @@ "kind": "Chainscope", "url": "https://chainsco.pe/osmosis", "tx_page": "https://chainsco.pe/osmosis/tx/${txHash}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/osmosis", + "tx_page": "https://mainnet.whispernode.com/osmosis/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/osmosis/account/${accountAddress}" } ], "keywords": [ diff --git a/osmosis/images/BWH.png b/osmosis/images/BWH.png new file mode 100644 index 0000000000..ed664606ad Binary files /dev/null and b/osmosis/images/BWH.png differ diff --git a/osmosis/images/COCA.png b/osmosis/images/COCA.png new file mode 100644 index 0000000000..59c45420b8 Binary files /dev/null and b/osmosis/images/COCA.png differ diff --git a/osmosis/images/CrazyHorse.png b/osmosis/images/CrazyHorse.png new file mode 100644 index 0000000000..c69d0e6106 Binary files /dev/null and b/osmosis/images/CrazyHorse.png differ diff --git a/osmosis/images/PBB.png b/osmosis/images/PBB.png new file mode 100644 index 0000000000..05a42b37c5 Binary files /dev/null and b/osmosis/images/PBB.png differ diff --git a/osmosis/images/SHITMOS.png b/osmosis/images/SHITMOS.png new file mode 100644 index 0000000000..6a3ddffb34 Binary files /dev/null and b/osmosis/images/SHITMOS.png differ diff --git a/osmosis/images/WIHA.png b/osmosis/images/WIHA.png new file mode 100644 index 0000000000..4aa803cf7f Binary files /dev/null and b/osmosis/images/WIHA.png differ diff --git a/osmosis/images/bwh.png b/osmosis/images/bwh.png deleted file mode 100644 index 1ab422d624..0000000000 Binary files a/osmosis/images/bwh.png and /dev/null differ diff --git a/osmosis/images/crv.pica.png b/osmosis/images/crv.pica.png new file mode 100644 index 0000000000..e25b92f480 Binary files /dev/null and b/osmosis/images/crv.pica.png differ diff --git a/osmosis/images/crvUSD.pica.png b/osmosis/images/crvUSD.pica.png new file mode 100644 index 0000000000..7ae11ba4c4 Binary files /dev/null and b/osmosis/images/crvUSD.pica.png differ diff --git a/osmosis/images/edgesol.pica.png b/osmosis/images/edgesol.pica.png new file mode 100644 index 0000000000..ddcaa05f35 Binary files /dev/null and b/osmosis/images/edgesol.pica.png differ diff --git a/osmosis/images/eeth.pica.png b/osmosis/images/eeth.pica.png new file mode 100644 index 0000000000..9eea581967 Binary files /dev/null and b/osmosis/images/eeth.pica.png differ diff --git a/osmosis/images/ena.pica.png b/osmosis/images/ena.pica.png new file mode 100644 index 0000000000..b7fe476c27 Binary files /dev/null and b/osmosis/images/ena.pica.png differ diff --git a/osmosis/images/ezeth.pica.png b/osmosis/images/ezeth.pica.png new file mode 100644 index 0000000000..7ddcd5f2e9 Binary files /dev/null and b/osmosis/images/ezeth.pica.png differ diff --git a/osmosis/images/jitosol.pica.png b/osmosis/images/jitosol.pica.png new file mode 100644 index 0000000000..bbf8335a44 Binary files /dev/null and b/osmosis/images/jitosol.pica.png differ diff --git a/osmosis/images/lst.pica.png b/osmosis/images/lst.pica.png new file mode 100644 index 0000000000..d02af50a98 Binary files /dev/null and b/osmosis/images/lst.pica.png differ diff --git a/osmosis/images/pepe.pica.png b/osmosis/images/pepe.pica.png new file mode 100644 index 0000000000..d76995d695 Binary files /dev/null and b/osmosis/images/pepe.pica.png differ diff --git a/osmosis/images/pxeth.pica.png b/osmosis/images/pxeth.pica.png new file mode 100644 index 0000000000..e1b5284685 Binary files /dev/null and b/osmosis/images/pxeth.pica.png differ diff --git a/osmosis/images/solana.usdt.pica.png b/osmosis/images/solana.usdt.pica.png new file mode 100644 index 0000000000..57cbd5df2d Binary files /dev/null and b/osmosis/images/solana.usdt.pica.png differ diff --git a/osmosis/images/solana.usdt.pica.svg b/osmosis/images/solana.usdt.pica.svg new file mode 100644 index 0000000000..0fd6aef236 --- /dev/null +++ b/osmosis/images/solana.usdt.pica.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/usde.pica.png b/osmosis/images/usde.pica.png new file mode 100644 index 0000000000..06d708c147 Binary files /dev/null and b/osmosis/images/usde.pica.png differ diff --git a/osmosis/images/wsol.pica.png b/osmosis/images/wsol.pica.png new file mode 100644 index 0000000000..e3cdebef7e Binary files /dev/null and b/osmosis/images/wsol.pica.png differ diff --git a/osmosis/versions.json b/osmosis/versions.json index 4b43e69841..76d436e1da 100644 --- a/osmosis/versions.json +++ b/osmosis/versions.json @@ -382,6 +382,34 @@ "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": "v25" + }, + { + "name": "v25", + "tag": "v25.0.0", + "proposal": 782, + "height": 15753500, + "recommended_version": "v25.0.0", + "compatible_versions": [ + "v25.0.0" + ], + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1", + "consensus": { + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.4-v25-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.4", + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-amd64", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-arm64" + }, + "previous_version_name": "v24", "next_version_name": "" } ] diff --git a/passage/chain.json b/passage/chain.json index c9b01eccc4..897f26cbec 100644 --- a/passage/chain.json +++ b/passage/chain.json @@ -397,6 +397,12 @@ "url": "https://cosmotracker.com/passage", "tx_page": "https://cosmotracker.com/passage/tx/${txHash}", "account_page": "https://cosmotracker.com/passage/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/passage", + "tx_page": "https://mainnet.whispernode.com/passage/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/passage/account/${accountAddress}" } ], "logo_URIs": { diff --git a/persistence/chain.json b/persistence/chain.json index 4520352067..1d1afa2109 100644 --- a/persistence/chain.json +++ b/persistence/chain.json @@ -39,9 +39,9 @@ }, "codebase": { "git_repo": "https://github.com/persistenceOne/persistenceCore", - "recommended_version": "v11.9.0", + "recommended_version": "v11.12.0", "compatible_versions": [ - "v11.9.0" + "v11.12.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", "ibc_go_version": "v7.4.0", @@ -57,7 +57,7 @@ "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" + "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.12.0/persistenceCore-v11.12.0-linux-amd64.tar.gz" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/persistenceOne/genesisTransactions/master/core-1/final_genesis.json" @@ -278,6 +278,87 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.9.0/persistenceCore-v11.9.0-linux-amd64.tar.gz" }, + "next_version_name": "v11.10.0" + }, + { + "name": "v11.10.0", + "tag": "v11.10.0", + "proposal": 96, + "height": 16392000, + "recommended_version": "v11.10.0", + "compatible_versions": [ + "v11.10.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.10.0/persistenceCore-v11.10.0-linux-amd64.tar.gz" + }, + "next_version_name": "v11.11.0" + }, + { + "name": "v11.11.0", + "tag": "v11.11.0", + "proposal": 100, + "height": 16578000, + "recommended_version": "v11.11.0", + "compatible_versions": [ + "v11.11.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.11.0/persistenceCore-v11.11.0-linux-amd64.tar.gz" + }, + "next_version_name": "v11.12.0" + }, + { + "name": "v11.12.0", + "tag": "v11.12.0", + "proposal": 105, + "height": 16851000, + "recommended_version": "v11.12.0", + "compatible_versions": [ + "v11.12.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.12.0/persistenceCore-v11.12.0-linux-amd64.tar.gz" + }, "next_version_name": "" } ] @@ -634,4 +715,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" } ] -} \ No newline at end of file +} diff --git a/picasso/images/pica.svg b/picasso/images/pica.svg deleted file mode 100644 index fc740a710b..0000000000 --- a/picasso/images/pica.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/pryzm/assetlist.json b/pryzm/assetlist.json new file mode 100644 index 0000000000..f7a14ecaa9 --- /dev/null +++ b/pryzm/assetlist.json @@ -0,0 +1,60 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "pryzm", + "assets": [ + { + "description": "The native token of PRYZM", + "denom_units": [ + { + "denom": "upryzm", + "exponent": 0 + }, + { + "denom": "pryzm", + "exponent": 6 + } + ], + "base": "upryzm", + "name": "Pryzm", + "display": "pryzm", + "symbol": "PRYZM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.svg" + } + ] + }, + { + "description": "The meme token of PRYZM", + "denom_units": [ + { + "denom": "factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu", + "exponent": 0 + }, + { + "denom": "auuu", + "exponent": 6 + } + ], + "base": "factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu", + "name": "AUUU", + "display": "auuu", + "symbol": "AUUU", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/AUUU.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/AUUU.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/AUUU.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/AUUU.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/pryzm/chain.json b/pryzm/chain.json new file mode 100644 index 0000000000..26e2b2d188 --- /dev/null +++ b/pryzm/chain.json @@ -0,0 +1,158 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "pryzm", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Pryzm", + "chain_id": "pryzm-1", + "bech32_prefix": "pryzm", + "daemon_name": "pryzmd", + "node_home": "$HOME/.pryzm", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.01, + "high_gas_price": 0.01 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "upryzm" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/pryzm-finance/pryzm-core", + "recommended_version": "v0.16.0", + "compatible_versions": [ + "v0.16.0" + ], + "cosmos_sdk_version": "0.47.10", + "consensus": { + "type": "tendermint", + "version": "0.37.4" + }, + "ibc_go_version": "7.4.0", + "genesis": { + "genesis_url": "https://storage.googleapis.com/pryzm-zone/pryzm-1/genesis.json" + }, + "versions": [ + { + "name": "v0.16.0", + "recommended_version": "v0.16.0", + "compatible_versions": [ + "v0.16.0" + ], + "cosmos_sdk_version": "0.47.10", + "consensus": { + "type": "tendermint", + "version": "0.37.4" + }, + "ibc_go_version": "7.4.0" + } + ] + }, + "peers": { + "seeds": [ + { + "id": "3fce94795e925fb28e95acbaf1e5bd16e6885824", + "address": "seed.pryzm.zone:26656", + "provider": "PRYZM" + }, + { + "id": "20e1000e88125698264454a884812746c2eb4807", + "address": "seeds.lavenderfive.com:24856", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "pryzm-mainnet-seed.autostake.com:27406", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "persistent_peers": [ + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "pryzm-mainnet-peer.autostake.com:27406", + "provider": "AutoStake 🛡️ Slash Protected" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.pryzm.zone", + "provider": "PRYZM" + }, + { + "address": "https://pryzm-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://pryzm-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "rest": [ + { + "address": "https://api.pryzm.zone", + "provider": "PRYZM" + }, + { + "address": "https://pryzm-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://pryzm-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ], + "grpc": [ + { + "address": "https://grpc.pryzm.zone", + "provider": "PRYZM" + }, + { + "address": "https://pryzm-grpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "pryzm-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm-logo.svg" + }, + "explorers": [ + { + "kind": "Chainscope", + "url": "https://chainsco.pe/pryzm", + "tx_page": "https://chainsco.pe/pryzm/tx/${txHash}", + "account_page": "https://chainsco.pe/pryzm/address/${accountAddress}" + }, + { + "kind": "PingPub", + "url": "https://cosmosrun.info/pryzm", + "tx_page": "https://cosmosrun.info/pryzm/tx/${txHash}", + "account_page": "https://cosmosrun.info/pryzm/account/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm-logo.svg" + } + ] +} \ No newline at end of file diff --git a/pryzm/images/AUUU.png b/pryzm/images/AUUU.png new file mode 100644 index 0000000000..76c1cb8d8d Binary files /dev/null and b/pryzm/images/AUUU.png differ diff --git a/pryzm/images/AUUU.svg b/pryzm/images/AUUU.svg new file mode 100644 index 0000000000..f60cf67088 --- /dev/null +++ b/pryzm/images/AUUU.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pryzm-logo.png b/pryzm/images/pryzm-logo.png new file mode 100644 index 0000000000..67a54ef208 Binary files /dev/null and b/pryzm/images/pryzm-logo.png differ diff --git a/pryzm/images/pryzm-logo.svg b/pryzm/images/pryzm-logo.svg new file mode 100644 index 0000000000..8ff36d0acd --- /dev/null +++ b/pryzm/images/pryzm-logo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/pryzm/images/pryzm.png b/pryzm/images/pryzm.png new file mode 100644 index 0000000000..032f3d272c Binary files /dev/null and b/pryzm/images/pryzm.png differ diff --git a/pryzm/images/pryzm.svg b/pryzm/images/pryzm.svg new file mode 100644 index 0000000000..fdaa7878c4 --- /dev/null +++ b/pryzm/images/pryzm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/quasar/chain.json b/quasar/chain.json index c5123589bc..5c2744c08f 100644 --- a/quasar/chain.json +++ b/quasar/chain.json @@ -323,6 +323,12 @@ "url": "https://ezstaking.app/quasar", "tx_page": "https://ezstaking.app/quasar/txs/${txHash}", "account_page": "https://ezstaking.app/quasar/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/quasar", + "tx_page": "https://mainnet.whispernode.com/quasar/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/quasar/account/${accountAddress}" } ], "keywords": [ diff --git a/quicksilver/assetlist.json b/quicksilver/assetlist.json index 8d5cc83b88..65f29b335d 100644 --- a/quicksilver/assetlist.json +++ b/quicksilver/assetlist.json @@ -228,6 +228,203 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg" } ] + }, + { + "description": "Quicksilver Liquid Staked JUNO", + "denom_units": [ + { + "denom": "uqjuno", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qjuno", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqjuno", + "name": "Quicksilver Liquid Staked JUNO", + "display": "qjuno", + "symbol": "qJUNO", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "juno", + "base_denom": "ujuno" + }, + "provider": "Quicksilver" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked DYDX", + "denom_units": [ + { + "denom": "aqdydx", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qdydx", + "exponent": 18, + "aliases": [] + } + ], + "base": "aqdydx", + "name": "Quicksilver Liquid Staked DYDX", + "display": "qdydx", + "symbol": "qDYDX", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "dydx", + "base_denom": "adydx" + }, + "provider": "Quicksilver" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked SAGA", + "denom_units": [ + { + "denom": "uqsaga", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qsaga", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqsaga", + "name": "Quicksilver Liquid Staked SAGA", + "display": "qsaga", + "symbol": "qSAGA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "saga", + "base_denom": "usaga" + }, + "provider": "Quicksilver" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg" + } + ] + }, + { + "description": "Quicksilver Liquid Staked BLD", + "denom_units": [ + { + "denom": "uqbld", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qbld", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqbld", + "name": "Quicksilver Liquid Staked BLD", + "display": "qbld", + "symbol": "qBLD", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "agoric", + "base_denom": "ubld" + }, + "provider": "Quicksilver" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg" + } + ] + }, + { + "description": "Noble USDC via dYdX Protocol", + "denom_units": [ + { + "denom": "ibc/5666A86DCC869C75F69A7938AD6DCFECAC4A09C73522599E7A85B10143E5FBD2", + "exponent": 0, + "aliases": ["uusdc"] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/5666A86DCC869C75F69A7938AD6DCFECAC4A09C73522599E7A85B10143E5FBD2", + "name": "Noble USDC", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "dydx", + "base_denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "channel_id": "channel-32" + }, + "chain": { + "channel_id": "channel-164", + "path": "transfer/channel-164/transfer/channel-0/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + } + } + ] } ] -} \ No newline at end of file +} diff --git a/quicksilver/images/qatom.png b/quicksilver/images/qatom.png index 0e01e46e52..c4c92cf4ac 100644 Binary files a/quicksilver/images/qatom.png and b/quicksilver/images/qatom.png differ diff --git a/quicksilver/images/qatom.svg b/quicksilver/images/qatom.svg index 447dc1aed5..fbeb71a5f9 100644 --- a/quicksilver/images/qatom.svg +++ b/quicksilver/images/qatom.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/quicksilver/images/qbld.png b/quicksilver/images/qbld.png new file mode 100644 index 0000000000..a43d02f468 Binary files /dev/null and b/quicksilver/images/qbld.png differ diff --git a/quicksilver/images/qbld.svg b/quicksilver/images/qbld.svg new file mode 100644 index 0000000000..0bed19fddd --- /dev/null +++ b/quicksilver/images/qbld.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/quicksilver/images/qdydx.png b/quicksilver/images/qdydx.png new file mode 100644 index 0000000000..0c32a3a863 Binary files /dev/null and b/quicksilver/images/qdydx.png differ diff --git a/quicksilver/images/qdydx.svg b/quicksilver/images/qdydx.svg new file mode 100644 index 0000000000..99f578fa39 --- /dev/null +++ b/quicksilver/images/qdydx.svg @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/quicksilver/images/qjuno.png b/quicksilver/images/qjuno.png new file mode 100644 index 0000000000..f0b8467d39 Binary files /dev/null and b/quicksilver/images/qjuno.png differ diff --git a/quicksilver/images/qjuno.svg b/quicksilver/images/qjuno.svg new file mode 100644 index 0000000000..8e04c8b32a --- /dev/null +++ b/quicksilver/images/qjuno.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/quicksilver/images/qosmo.png b/quicksilver/images/qosmo.png index 4dc3652852..a22e7bc284 100644 Binary files a/quicksilver/images/qosmo.png and b/quicksilver/images/qosmo.png differ diff --git a/quicksilver/images/qosmo.svg b/quicksilver/images/qosmo.svg index 01320f2dd9..50645d6d7e 100644 --- a/quicksilver/images/qosmo.svg +++ b/quicksilver/images/qosmo.svg @@ -1,135 +1,25 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + diff --git a/quicksilver/images/qregen.png b/quicksilver/images/qregen.png index 447de4fce8..56f1b73f86 100644 Binary files a/quicksilver/images/qregen.png and b/quicksilver/images/qregen.png differ diff --git a/quicksilver/images/qregen.svg b/quicksilver/images/qregen.svg index 4d4e85127c..45358221f4 100644 --- a/quicksilver/images/qregen.svg +++ b/quicksilver/images/qregen.svg @@ -1,9 +1,25 @@ - - - - - - - - + + + + + + + + diff --git a/quicksilver/images/qsaga.png b/quicksilver/images/qsaga.png new file mode 100644 index 0000000000..cc55d02994 Binary files /dev/null and b/quicksilver/images/qsaga.png differ diff --git a/quicksilver/images/qsaga.svg b/quicksilver/images/qsaga.svg new file mode 100644 index 0000000000..46cf17251d --- /dev/null +++ b/quicksilver/images/qsaga.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/quicksilver/images/qsomm.png b/quicksilver/images/qsomm.png index 8953358cbb..76030564f7 100644 Binary files a/quicksilver/images/qsomm.png and b/quicksilver/images/qsomm.png differ diff --git a/quicksilver/images/qsomm.svg b/quicksilver/images/qsomm.svg index 522914a305..f8a9c9a459 100644 --- a/quicksilver/images/qsomm.svg +++ b/quicksilver/images/qsomm.svg @@ -1,3 +1,25 @@ - - + + + + + + + + diff --git a/quicksilver/images/qstars.png b/quicksilver/images/qstars.png index c05df0e2e9..5a7dc576dc 100644 Binary files a/quicksilver/images/qstars.png and b/quicksilver/images/qstars.png differ diff --git a/quicksilver/images/qstars.svg b/quicksilver/images/qstars.svg index bba1770c1a..c49e94c642 100644 --- a/quicksilver/images/qstars.svg +++ b/quicksilver/images/qstars.svg @@ -1,9 +1,25 @@ - - - - - - - - + + + + + + + + diff --git a/regen/chain.json b/regen/chain.json index 2ab5e9f175..8586f21962 100644 --- a/regen/chain.json +++ b/regen/chain.json @@ -229,12 +229,6 @@ ] }, "explorers": [ - { - "kind": "mintscan", - "url": "https://www.mintscan.io/regen", - "tx_page": "https://www.mintscan.io/regen/transactions/${txHash}", - "account_page": "https://www.mintscan.io/regen/accounts/${accountAddress}" - }, { "kind": "ezstaking", "url": "https://ezstaking.app/regen", diff --git a/saga/chain.json b/saga/chain.json index c16264a640..1ecfc08fcc 100644 --- a/saga/chain.json +++ b/saga/chain.json @@ -61,6 +61,11 @@ "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", "address": "saga-mainnet-seed.autostake.com:27426", "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "id": "20e1000e88125698264454a884812746c2eb4807", + "address": "seeds.lavenderfive.com:24956", + "provider": "Lavender.Five Nodes 🐝" } ], "persistent_peers": [ @@ -115,6 +120,10 @@ { "address": "https://rpc.saga.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://saga-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ], "rest": [ @@ -141,6 +150,10 @@ { "address": "https://lcd.saga.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://saga-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ], "grpc": [ @@ -163,6 +176,10 @@ { "address": "grpc.saga.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://saga-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ] }, diff --git a/scorum/chain.json b/scorum/chain.json index 87a3aa43fc..04e8f259ee 100644 --- a/scorum/chain.json +++ b/scorum/chain.json @@ -82,31 +82,19 @@ "apis": { "rpc": [ { - "address": "https://scorum-blockchain-mainnet-rpc-1.scorum.com", - "provider": "scorum" - }, - { - "address": "https://scorum-blockchain-mainnet-rpc-2.scorum.com", + "address": "https://scorum-blockchain-mainnet-rpc.scorum.com", "provider": "scorum" } ], "rest": [ { - "address": "https://scorum-blockchain-mainnet-api-1.scorum.com", - "provider": "scorum" - }, - { - "address": "https://scorum-blockchain-mainnet-api-2.scorum.com", + "address": "https://scorum-blockchain-mainnet-api.scorum.com", "provider": "scorum" } ], "grpc": [ { - "address": "https://scorum-blockchain-mainnet-grpc-1.scorum.com", - "provider": "scorum" - }, - { - "address": "https://scorum-blockchain-mainnet-grpc-2.scorum.com", + "address": "https://scorum-blockchain-mainnet-grpc.scorum.com", "provider": "scorum" } ] diff --git a/secretnetwork/assetlist.json b/secretnetwork/assetlist.json index b66b210122..0087c8d1a7 100644 --- a/secretnetwork/assetlist.json +++ b/secretnetwork/assetlist.json @@ -305,4 +305,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/secretnetwork/chain.json b/secretnetwork/chain.json index 13f9eb8faf..d930f3a9c8 100644 --- a/secretnetwork/chain.json +++ b/secretnetwork/chain.json @@ -314,6 +314,12 @@ "url": "https://atomscan.com/secret-network", "tx_page": "https://atomscan.com/secret-network/transactions/${txHash}", "account_page": "https://atomscan.com/secret-network/accounts/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/secret", + "tx_page": "https://mainnet.whispernode.com/secret/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/secret/account/${accountAddress}" } ], "images": [ diff --git a/seda/chain.json b/seda/chain.json index d03dc57ffd..0ff36f2654 100644 --- a/seda/chain.json +++ b/seda/chain.json @@ -86,12 +86,27 @@ "id": "cec848e7d4c5a7ae305b27cda133d213435c110f", "address": "seed-seda.ibs.team:16679", "provider": "Inter Blockchain Services" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "seda-mainnet-seed.autostake.com:26866", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", + "address": "seeds.whispernode.com:25856", + "provider": "WhisperNode 🤐" } ], "persistent_peers": [ { "id": "31f54fbcf445a9d9286426be59a17a811dd63f84", "address": "18.133.231.208:26656" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "seda-mainnet-peer.autostake.com:26866", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, @@ -124,6 +139,26 @@ { "address": "https://seda-rpc.ibs.team:443", "provider": "Inter Blockchain Services" + }, + { + "address": "https://seda-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://rpc.seda.bronbro.io:443", + "provider": "Bro_n_Bro" + }, + { + "address": "https://rpc-seda.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://seda-rpc.applejuice.256x25.tech:443", + "provider": "Apple juice 🧃" + }, + { + "address": "https://seda-rpc.bluestake.net:443", + "provider": "BlueStake 🚀" } ], "rest": [ @@ -154,6 +189,26 @@ { "address": "https://seda-api.ibs.team:443", "provider": "Inter Blockchain Services" + }, + { + "address": "https://seda-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://lcd.seda.bronbro.io:443", + "provider": "Bro_n_Bro" + }, + { + "address": "https://api-seda.whispernode.com:443", + "provider": "WhisperNode 🤐" + }, + { + "address": "https://seda-api.applejuice.256x25.tech:443", + "provider": "Apple juice 🧃" + }, + { + "address": "https://seda-api.bluestake.net", + "provider": "BlueStake 🚀" } ], "grpc": [ @@ -172,6 +227,18 @@ { "address": "https://seda-grpc.lavenderfive.com", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "seda-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "address": "https://grpc.seda.bronbro.io:443", + "provider": "Bro_n_Bro" + }, + { + "address": "grpc-seda.whispernode.com:443", + "provider": "WhisperNode 🤐" } ] }, @@ -187,6 +254,18 @@ "url": "https://seda.explorers.guru", "tx_page": "https://seda.explorers.guru/transaction/${txHash}", "account_page": "https://seda.explorers.guru/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/seda", + "tx_page": "https://mainnet.whispernode.com/seda/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/seda/account/${accountAddress}" + }, + { + "kind": "Apple juice 🧃", + "url": "https://explorer.256x25.tech/seda-mainnet", + "tx_page": "https://explorer.256x25.tech/seda-mainnet/tx/${txHash}", + "account_page": "https://explorer.256x25.tech/seda-mainnet/account/${accountAddress}" } ], "images": [ @@ -195,4 +274,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg" } ] -} \ No newline at end of file +} diff --git a/sei/chain.json b/sei/chain.json index ca33f0bd23..118203a9b9 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.9.0", + "recommended_version": "v5.5.2", "compatible_versions": [ - "v3.9.0" + "v5.5.2" ], "ibc_go_version": "sei-ibc-go/v3 v3.3.0", - "cosmos_sdk_version": "sei-cosmos v0.2.83", + "cosmos_sdk_version": "sei-cosmos v0.3.13", "consensus": { "type": "sei-tendermint", - "version": "v0.2.40" + "version": "v0.3.3" }, - "cosmwasm_version": "sei-wasmd v0.1.1", + "cosmwasm_version": "sei-wasmd v0.1.5", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", "genesis": { @@ -207,10 +207,10 @@ { "name": "v3.9.0", "proposal": 54, - "height": 73290488, - "recommended_version": "v3.9.0", + "height": 79123881, + "recommended_version": "v5.5.2", "compatible_versions": [ - "v3.9.0" + "v5.5.2" ], "ibc_go_version": "sei-ibc-go/v3 v3.3.0", "cosmos_sdk_version": "sei-cosmos v0.2.83", @@ -221,6 +221,25 @@ "cosmwasm_version": "sei-wasmd v0.1.1", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", + "next_version_name": "v5.5.2" + }, + { + "name": "v5.5.2", + "proposal": 55, + "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.3.13", + "consensus": { + "type": "sei-tendermint", + "version": "v0.3.3" + }, + "cosmwasm_version": "sei-wasmd v0.1.5", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.sei/wasm", "next_version_name": "" } ] @@ -351,7 +370,7 @@ "provider": "AutoStake 🛡️ Slash Protected" }, { - "address": "https://grpc-sei.whispernode.com:443", + "address": "grpc-sei.whispernode.com:443", "provider": "WhisperNode 🤐" }, { @@ -388,6 +407,12 @@ "url": "https://www.seiscan.app/pacific-1", "tx_page": "https://www.seiscan.app/pacific-1/txs/${txHash}", "account_page": "https://www.seiscan.app/pacific-1/accounts/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/sei", + "tx_page": "https://mainnet.whispernode.com/sei/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/sei/account/${accountAddress}" } ], "images": [ @@ -396,4 +421,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" } ] -} \ No newline at end of file +} diff --git a/sentinel/chain.json b/sentinel/chain.json index 380487b201..9ff85cc896 100644 --- a/sentinel/chain.json +++ b/sentinel/chain.json @@ -330,6 +330,18 @@ { "address": "https://sentinel.rpc.nodeshub.online:443", "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "address": "https://rpc.dvpn.me:443", + "provider": "MathNodes China" + }, + { + "address": "https://rpc.ro.mathnodes.com:443", + "provider": "MathNodes Romania" + }, + { + "address": "https://rpc.noncompliant.network:443", + "provider": "Noncompliant Network" } ], "rest": [ @@ -384,6 +396,18 @@ { "address": "https://sentinel.api.nodeshub.online:443", "provider": "Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅" + }, + { + "address": "https://api.dvpn.me:443", + "provider": "MathNodes China" + }, + { + "address": "https://api.ro.mathnodes.com:443", + "provider": "MathNodes Romania" + }, + { + "address": "https://api.noncompliant.network:443", + "provider": "Noncompliant Network" } ], "grpc": [ @@ -414,6 +438,30 @@ { "address": "https://sentinel.grpc.nodeshub.online", "provider": "Nodes Hub" + }, + { + "address": "https://grpc.dvpn.me:443", + "provider": "MathNodes China" + }, + { + "address": "https://grc.mathnodes.com:443", + "provider": "MathNodes Romania" + }, + { + "address": "https://grpc.noncompliant.network:443", + "provider": "Noncompliant Network" + }, + { + "address": "https://grpc.dvpn.me:9090", + "provider": "MathNodes China (Insecure)" + }, + { + "address": "https://grc.mathnodes.com:9000", + "provider": "MathNodes Romania (Insecure)" + }, + { + "address": "https://grpc.noncompliant.network:9090", + "provider": "Noncompliant Network (Insecure)" } ] }, @@ -457,6 +505,12 @@ "url": "https://explorer.nodeshub.online/sentinel/", "tx_page": "https://explorer.nodeshub.online/sentinel/tx/${txHash}", "account_page": "https://explorer.nodeshub.online/sentinel/accounts/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/sentinel", + "tx_page": "https://mainnet.whispernode.com/sentinel/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/sentinel/account/${accountAddress}" } ], "images": [ diff --git a/sge/chain.json b/sge/chain.json index 94759b4b48..e389a51c2e 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.5.3", + "recommended_version": "v1.6.6", "compatible_versions": [ - "v1.5.3" + "v1.6.6" ], - "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240223100624-2a2661276cb4", + "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240430064306-1b044d03d56c", "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", @@ -154,6 +154,22 @@ "type": "cometbft", "version": "v0.34.29" }, + "next_version_name": "v1.6.2" + }, + { + "name": "v1.6.2", + "recommended_version": "v1.6.2", + "compatible_versions": [ + "v1.6.2" + ], + "proposal": 8, + "height": 3685910, + "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240430064306-1b044d03d56c", + "ibc_go_version": "v5.3.1", + "consensus": { + "type": "cometbft", + "version": "v0.34.29" + }, "next_version_name": "" } ] diff --git a/shido/chain.json b/shido/chain.json index 460a7319af..0048e1aea2 100644 --- a/shido/chain.json +++ b/shido/chain.json @@ -122,6 +122,11 @@ "id": "8793ad6de6efdb6919d31e74e61a1be57a6d6d32", "address": "3.97.121.236:26656", "provider": "SHIDO" + }, + { + "id": "ecfa8fecb479d1e30be4cac20dc8b0f3ef8b761d", + "address": "rpc.shido.indonode.net:23657", + "provider": "Indonode" } ] }, @@ -134,6 +139,14 @@ { "address": "https://shidochain_mainnet_rpc.chain.whenmoonwhenlambo.money", "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://shido-rpc.applejuice.256x25.tech:443", + "provider": "Apple juice 🧃" + }, + { + "address": "https://rpc.shido.indonode.net:443", + "provider": "Indonode" } ], "rest": [ @@ -144,6 +157,14 @@ { "address": "https://shidochain_mainnet_api.chain.whenmoonwhenlambo.money", "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://shido-api.applejuice.256x25.tech:443", + "provider": "Apple juice 🧃" + }, + { + "address": "https://api.shido.indonode.net", + "provider": "Indonode" } ], "grpc": [ @@ -168,6 +189,10 @@ { "address": "https://shidochain_mainnet_evm.chain.whenmoonwhenlambo.money", "provider": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥" + }, + { + "address": "https://shido-evm.applejuice.256x25.tech:443", + "provider": "Apple juice 🧃" } ] }, @@ -183,6 +208,24 @@ "url": "https://explorer.whenmoonwhenlambo.money/shido", "tx_page": "https://explorer.whenmoonwhenlambo.money/shido/tx/${txHash}", "account_page": "https://explorer.whenmoonwhenlambo.money/shido/account/${accountAddress}" + }, + { + "kind": "Apple juice 🧃", + "url": "https://explorer.256x25.tech/shido", + "tx_page": "https://explorer.256x25.tech/shido/tx/${txHash}", + "account_page": "https://explorer.256x25.tech//shido/account/${accountAddress}" + }, + { + "kind": "MavNode", + "url": "https://explorer.mavnode.io/shido", + "tx_page": "https://explorer.mavnode.io/shido/tx/${txHash}", + "account_page": "https://explorer.mavnode.io/shido/account/${accountAddress}" + }, + { + "kind": "Indonode", + "url": "https://explorer.indonode.net/shido", + "tx_page": "https://explorer.indonode.net/shido/tx/${txHash}", + "account_page": "https://explorer.indonode.net/shido/account/${accountAddress}" } ], "images": [ @@ -191,4 +234,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" } ] -} \ No newline at end of file +} diff --git a/source/chain.json b/source/chain.json index b01e6dc4be..e27deb14eb 100644 --- a/source/chain.json +++ b/source/chain.json @@ -283,8 +283,8 @@ "provider": "posthuman" }, { - "address": "http://source.api.staking-explorer.com", - "provider": "Daily DROP | 2% Fee" + "address": "https://source.api.staking-explorer.com", + "provider": "Daily DROP | 3% Fee" }, { "address": "https://source.declab.pro:443", @@ -431,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/assetlist.json b/stafihub/assetlist.json index 53f79a9cf7..f2b91eee62 100644 --- a/stafihub/assetlist.json +++ b/stafihub/assetlist.json @@ -157,7 +157,7 @@ "type": "liquid-stake", "counterparty": { "chain_name": "carbon", - "base_denom": "uswth" + "base_denom": "swth" }, "provider": "StaFiHub" } diff --git a/stargaze/assetlist.json b/stargaze/assetlist.json index 2fc901c5e3..eff6c62611 100644 --- a/stargaze/assetlist.json +++ b/stargaze/assetlist.json @@ -218,6 +218,88 @@ } } ] + }, + { + "description": "CDT - Membrane's solvency preserving stablecoin", + "denom_units": [ + { + "denom": "ibc/B0263C28B6F44651F4596413B41FDB749EA010BD1220816DAC0ABF9947C1E806", + "exponent": 0 + }, + { + "denom": "CDT", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/B0263C28B6F44651F4596413B41FDB749EA010BD1220816DAC0ABF9947C1E806", + "name": "CDT", + "display": "CDT", + "symbol": "CDT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "channel_id": "channel-75" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt" + } + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", + "image_sync": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt" + } + } + ] + }, + { + "description": "MBRN - Membrane's network token", + "denom_units": [ + { + "denom": "ibc/E94BB144B818CB8061F43E202BEA1E9273B87D6326C8C6F4E6AE71C62FD37854", + "exponent": 0 + }, + { + "denom": "MBRN", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/E94BB144B818CB8061F43E202BEA1E9273B87D6326C8C6F4E6AE71C62FD37854", + "name": "MBRN", + "display": "MBRN", + "symbol": "MBRN", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "channel_id": "channel-75" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn" + } + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", + "image_sync": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn" + } + } + ] } ] -} \ No newline at end of file +} diff --git a/stargaze/chain.json b/stargaze/chain.json index 068b4b3dbf..f5de3182e6 100644 --- a/stargaze/chain.json +++ b/stargaze/chain.json @@ -411,6 +411,12 @@ "url": "https://starscan.net/", "tx_page": "https://starscan.net/stargaze-1/tx/${txHash}", "account_page": "https://starscan.net/stargaze-1/address/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/stargaze", + "tx_page": "https://mainnet.whispernode.com/stargaze/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/stargaze/account/${accountAddress}" } ], "images": [ diff --git a/stratos/chain.json b/stratos/chain.json index 5efd0c64d4..42bf49c7ab 100644 --- a/stratos/chain.json +++ b/stratos/chain.json @@ -165,6 +165,12 @@ "url": "https://explorer.tcnetwork.io/stratos", "tx_page": "https://explorer.tcnetwork.io/stratos/transaction/${txHash}", "account_page": "https://explorer.tcnetwork.io/stratos/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/stratos", + "tx_page": "https://mainnet.whispernode.com/stratos/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/stratos/account/${accountAddress}" } ], "images": [ diff --git a/stride/assetlist.json b/stride/assetlist.json index 6584249ac5..1072ea2c9b 100644 --- a/stride/assetlist.json +++ b/stride/assetlist.json @@ -275,7 +275,7 @@ "type": "liquid-stake", "counterparty": { "chain_name": "evmos", - "base_denom": "uaevmos" + "base_denom": "aevmos" }, "provider": "Stride" } diff --git a/stride/chain.json b/stride/chain.json index 7ea9f5d1f0..de060a88fd 100644 --- a/stride/chain.json +++ b/stride/chain.json @@ -688,6 +688,12 @@ "url": "https://explorer.stake-take.com/stride", "tx_page": "https://explorer.stake-take.com/stride/tx/${txHash}", "account_page": "https://explorer.stake-take.com/stride/account/${accountAddress}" + }, + { + "kind": "WhisperNode 🤐", + "url": "https://mainnet.whispernode.com/stride", + "tx_page": "https://mainnet.whispernode.com/stride/tx/${txHash}", + "account_page": "https://mainnet.whispernode.com/stride/account/${accountAddress}" } ], "logo_URIs": { diff --git a/tenet/chain.json b/tenet/chain.json index 7b14095355..6103896654 100644 --- a/tenet/chain.json +++ b/tenet/chain.json @@ -114,6 +114,11 @@ "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", "address": "tenet-mainnet-seed.autostake.com:27386", "provider": "AutoStake 🛡️ Slash Protected" + }, + { + "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", + "address": "seed.publicnode.com:26656", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "persistent_peers": [ diff --git a/teritori/assetlist.json b/teritori/assetlist.json index 849ae97644..4ba004bc42 100644 --- a/teritori/assetlist.json +++ b/teritori/assetlist.json @@ -201,7 +201,7 @@ "type": "ibc", "counterparty": { "chain_name": "noble", - "base_denom": "usdc", + "base_denom": "uusdc", "channel_id": "channel-54" }, "chain": { diff --git a/terra2/assetlist.json b/terra2/assetlist.json index 44076bf96c..504102f7e8 100644 --- a/terra2/assetlist.json +++ b/terra2/assetlist.json @@ -90,7 +90,7 @@ "type": "ibc", "counterparty": { "chain_name": "neutron", - "base_denom": "ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", "channel_id": "channel-25" }, "chain": { @@ -168,7 +168,7 @@ ] }, { - "description": "Escudos is the everyday currency of dioalma.protocol, good to send money back and foward.", + "description": "Escudos is the everyday currency of dioalma.protocol, good to send money back and forward.", "denom_units": [ { "denom": "cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg", @@ -1101,6 +1101,72 @@ "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } + }, + { + "description": "ATOM-LUNA liquidity pool token on URA", + "denom_units": [ + { + "denom": "factory/terra1djk2zl83dspt696ex5crhfacu8vm6934576t4zdd2592fzyahr2qma6guq/ULUN-IBC/-LP", + "exponent": 0 + }, + { + "denom": "atom-luna-lp", + "exponent": 6 + } + ], + "base": "factory/terra1djk2zl83dspt696ex5crhfacu8vm6934576t4zdd2592fzyahr2qma6guq/ULUN-IBC/-LP", + "name": "ATOM-LUNA LP Token URA", + "display": "atom-luna-lp", + "symbol": "ATOM-LUNA-LP", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ura.svg" + } + ] + }, + { + "description": "LUNA-USDC liquidity pool token on URA", + "denom_units": [ + { + "denom": "factory/terra12jxfw2vg4cu6mxlgf39dp5ccxtuwm468w8eh9cnh2qsxc9t0sffs7ekhft/ULUN-IBC/-LP", + "exponent": 0 + }, + { + "denom": "luna-usdc-lp", + "exponent": 6 + } + ], + "base": "factory/terra12jxfw2vg4cu6mxlgf39dp5ccxtuwm468w8eh9cnh2qsxc9t0sffs7ekhft/ULUN-IBC/-LP", + "name": "LUNA-USDC LP Token URA", + "display": "luna-usdc-lp", + "symbol": "LUNA-USDC-LP", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ura.svg" + } + ] + }, + { + "description": "LUNA-USDT liquidity pool token on URA", + "denom_units": [ + { + "denom": "factory/terra1w9spejtuac5dt0gympq576uhwde39exhh7hdxwl99rjvaphfukkq6y4cv7/ULUN-IBC/-LP", + "exponent": 0 + }, + { + "denom": "luna-usdt-lp", + "exponent": 6 + } + ], + "base": "factory/terra1w9spejtuac5dt0gympq576uhwde39exhh7hdxwl99rjvaphfukkq6y4cv7/ULUN-IBC/-LP", + "name": "LUNA-USDT LP Token URA", + "display": "luna-usdt-lp", + "symbol": "LUNA-USDT-LP", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ura.svg" + } + ] } ] -} \ No newline at end of file +} diff --git a/terra2/chain.json b/terra2/chain.json index 003f8b28eb..b8c35a5c8c 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.11.1", + "recommended_version": "v2.11.2", "compatible_versions": [ - "v2.11.1" + "v2.11.2" ], "binaries": { - "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" + "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.11.2/terra_2.11.2_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.11.2/terra_2.11.2_Linux_x86_64.tar.gz" }, "genesis": { "name": "v2.0", @@ -241,9 +241,9 @@ { "name": "v2.11", "tag": "v2.11.1", - "recommended_version": "v2.11.1", + "recommended_version": "v2.11.2", "compatible_versions": [ - "v2.11.1" + "v2.11.2" ], "proposal": 4807, "height": 10136000, @@ -256,8 +256,8 @@ "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" + "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.11.2/terra_2.11.2_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.11.2/terra_2.11.2_Linux_x86_64.tar.gz" }, "next_version_name": "" } @@ -481,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/gem.png b/terra2/images/gem.png index db1bb3f9f5..4b3160097e 100644 Binary files a/terra2/images/gem.png and b/terra2/images/gem.png differ diff --git a/terra2/images/ura.svg b/terra2/images/ura.svg new file mode 100644 index 0000000000..8db941bc0b --- /dev/null +++ b/terra2/images/ura.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/testnets/_IBC/axelartestnet-mantrachaintestnet.json b/testnets/_IBC/axelartestnet-mantrachaintestnet.json new file mode 100644 index 0000000000..246a274d6a --- /dev/null +++ b/testnets/_IBC/axelartestnet-mantrachaintestnet.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-953", + "connection_id": "connection-734" + }, + "chain_2": { + "chain_name": "mantrachaintestnet", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-506", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} \ No newline at end of file diff --git a/testnets/_IBC/coreumtestnet-osmosistestnet.json b/testnets/_IBC/coreumtestnet-osmosistestnet.json new file mode 100644 index 0000000000..1b597d0a03 --- /dev/null +++ b/testnets/_IBC/coreumtestnet-osmosistestnet.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreumtestnet", + "client_id": "07-tendermint-104", + "connection_id": "connection-69" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-3529", + "connection_id": "connection-3094" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-47", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7894", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/testnets/_IBC/mantrachaintestnet-nobletestnet.json b/testnets/_IBC/mantrachaintestnet-nobletestnet.json new file mode 100644 index 0000000000..8d17c6aa21 --- /dev/null +++ b/testnets/_IBC/mantrachaintestnet-nobletestnet.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "mantrachaintestnet", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "nobletestnet", + "client_id": "07-tendermint-256", + "connection_id": "connection-207" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-174", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} \ No newline at end of file diff --git a/testnets/_IBC/mantrachaintestnet-osmosistestnet.json b/testnets/_IBC/mantrachaintestnet-osmosistestnet.json new file mode 100644 index 0000000000..b68b105d17 --- /dev/null +++ b/testnets/_IBC/mantrachaintestnet-osmosistestnet.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "mantrachaintestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-3545", + "connection_id": "connection-3106" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7944", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/testnets/_non-cosmos/avalanchetestnet/assetlist.json b/testnets/_non-cosmos/avalanchetestnet/assetlist.json index b09e547d5d..0cd3879bce 100644 --- a/testnets/_non-cosmos/avalanchetestnet/assetlist.json +++ b/testnets/_non-cosmos/avalanchetestnet/assetlist.json @@ -80,7 +80,7 @@ "denom": "0x57F1c63497AEe0bE305B8852b354CEc793da43bB", "exponent": 0, "aliases": [ - "uusdc" + "uausdc" ] }, { @@ -97,7 +97,7 @@ "type": "bridge", "counterparty": { "chain_name": "axelartestnet", - "base_denom": "uusdc" + "base_denom": "uausdc" }, "provider": "Axelar" } @@ -107,6 +107,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelartestnet", + "base_denom": "uausdc" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] diff --git a/testnets/_non-cosmos/binancesmartchaintestnet/assetlist.json b/testnets/_non-cosmos/binancesmartchaintestnet/assetlist.json index c3b7fa67f0..645d159bd7 100644 --- a/testnets/_non-cosmos/binancesmartchaintestnet/assetlist.json +++ b/testnets/_non-cosmos/binancesmartchaintestnet/assetlist.json @@ -82,7 +82,7 @@ "denom": "0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2", "exponent": 0, "aliases": [ - "uusdc" + "uausdc" ] }, { @@ -99,7 +99,7 @@ "type": "bridge", "counterparty": { "chain_name": "axelartestnet", - "base_denom": "uusdc" + "base_denom": "uausdc" }, "provider": "Axelar" } @@ -109,6 +109,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelartestnet", + "base_denom": "uausdc" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] diff --git a/testnets/_non-cosmos/moonbeamtestnet/assetlist.json b/testnets/_non-cosmos/moonbeamtestnet/assetlist.json index d0ad01f786..e5cea224de 100644 --- a/testnets/_non-cosmos/moonbeamtestnet/assetlist.json +++ b/testnets/_non-cosmos/moonbeamtestnet/assetlist.json @@ -71,6 +71,10 @@ "coingecko_id": "wrapped-moonbeam", "images": [ { + "image_sync": { + "chain_name": "moonbeamtestnet", + "base_denom": "Wei" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } ] @@ -84,7 +88,7 @@ "denom": "0xD1633F7Fb3d716643125d6415d4177bC36b7186b", "exponent": 0, "aliases": [ - "uusdc" + "uausdc" ] }, { @@ -101,7 +105,7 @@ "type": "bridge", "counterparty": { "chain_name": "axelartestnet", - "base_denom": "uusdc" + "base_denom": "uausdc" }, "provider": "Axelar" } @@ -111,6 +115,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelartestnet", + "base_denom": "uausdc" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] diff --git a/testnets/_non-cosmos/polygontestnet/assetlist.json b/testnets/_non-cosmos/polygontestnet/assetlist.json index c6ba7ad2f9..caa4ce30bc 100644 --- a/testnets/_non-cosmos/polygontestnet/assetlist.json +++ b/testnets/_non-cosmos/polygontestnet/assetlist.json @@ -86,7 +86,7 @@ "denom": "0x2c852e740B62308c46DD29B982FBb650D063Bd07", "exponent": 0, "aliases": [ - "uusdc" + "uausdc" ] }, { @@ -103,7 +103,7 @@ "type": "bridge", "counterparty": { "chain_name": "axelartestnet", - "base_denom": "uusdc" + "base_denom": "uausdc" }, "provider": "Axelar" } @@ -113,6 +113,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "axelartestnet", + "base_denom": "uausdc" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] diff --git a/testnets/axelartestnet/chain.json b/testnets/axelartestnet/chain.json index bf777814d1..95a5735f87 100644 --- a/testnets/axelartestnet/chain.json +++ b/testnets/axelartestnet/chain.json @@ -80,9 +80,9 @@ }, { "kind": "mintscan", - "url": "https://testnet.mintscan.io/axelar-testnet", - "tx_page": "https://testnet.mintscan.io/axelar-testnet/txs/${txHash}", - "account_page": "https://testnet.mintscan.io/axelar-testnet/account/${accountAddress}" + "url": "https://mintscan.io/axelar-testnet", + "tx_page": "https://mintscan.io/axelar-testnet/txs/${txHash}", + "account_page": "https://mintscan.io/axelar-testnet/account/${accountAddress}" } ] } diff --git a/testnets/celestiatestnet/chain.json b/testnets/celestiatestnet/chain.json index 780bccb5dd..590d9461ae 100644 --- a/testnets/celestiatestnet/chain.json +++ b/testnets/celestiatestnet/chain.json @@ -65,8 +65,8 @@ "explorers": [ { "kind": "Mintscan", - "url": "https://testnet.mintscan.io/celestia-incentivized-testnet", - "tx_page": "https://testnet.mintscan.io/celestia-incentivized-testnet/txs/${txHash}" + "url": "https://mintscan.io/celestia-incentivized-testnet", + "tx_page": "https://mintscan.io/celestia-incentivized-testnet/txs/${txHash}" } ] } \ No newline at end of file diff --git a/testnets/celestiatestnet3/chain.json b/testnets/celestiatestnet3/chain.json index 52add1e592..9d7ad0996b 100644 --- a/testnets/celestiatestnet3/chain.json +++ b/testnets/celestiatestnet3/chain.json @@ -115,8 +115,8 @@ "explorers": [ { "kind": "Mintscan", - "url": "https://testnet.mintscan.io/celestia-testnet", - "tx_page": "https://testnet.mintscan.io/celestia-testnet/txs/${txHash}" + "url": "https://mintscan.io/celestia-testnet", + "tx_page": "https://mintscan.io/celestia-testnet/txs/${txHash}" }, { "kind": "🚀ITRocket🚀", diff --git a/testnets/cheqdtestnet/chain.json b/testnets/cheqdtestnet/chain.json index fab4272ec5..c6bc9a075a 100644 --- a/testnets/cheqdtestnet/chain.json +++ b/testnets/cheqdtestnet/chain.json @@ -22,46 +22,100 @@ }, "codebase": { "git_repo": "https://github.com/cheqd/cheqd-node", - "recommended_version": "v1.4.0", + "recommended_version": "v2.0.1", "compatible_versions": [ - "v1.2.5", - "v1.3.0", - "v1.4.0" + "v2.0.0", + "v2.0.1" ], "binaries": { - "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-amd64.tar.gz", - "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-arm64.tar.gz", - "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-amd64.tar.gz", - "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-arm64.tar.gz" + "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", + "ibc_go_version": "v7.4.0", "consensus": { - "type": "tendermint", - "version": "0.34.26" + "type": "cometbft", + "version": "0.37.5" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/testnet/genesis.json" }, "versions": [ { - "name": "v1.4.0", - "recommended_version": "v1.4.0", + "name": "v0.6", + "recommended_version": "v0.6.10", + "compatible_versions": [ + "v0.6.0", + "v0.6.1", + "v0.6.7", + "v0.6.9", + "v0.6.10" + ], + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.45.9-cheqd-tag", + "ibc_go_version": "v3.3.0", + "consensus": { + "type": "tendermint", + "version": "0.34.21" + }, + "proposal": 3, + "height": 2478827, + "binaries": { + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.6.10/cheqd-noded-0.6.10-linux-x86_64.tar.gz", + "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v0.6.10/cheqd-noded-0.6.10-linux-arm64.tar.gz" + }, + "next_version_name": "v1" + }, + { + "name": "v1", + "recommended_version": "v1.4.5", "compatible_versions": [ "v1.2.5", "v1.3.0", - "v1.4.0" + "v1.4.0", + "v1.4.2", + "v1.4.4", + "v1.4.5" ], - "cosmos_sdk_version": "0.46.10", + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.46.10-barberry", + "ibc_go_version": "v6.1.1", "consensus": { "type": "tendermint", "version": "0.34.26" }, "binaries": { - "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-amd64.tar.gz", - "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-arm64.tar.gz", - "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-amd64.tar.gz", - "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-arm64.tar.gz" - } + "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-linux-arm64.tar.gz", + "darwin/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-darwin-amd64.tar.gz", + "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-darwin-arm64.tar.gz" + }, + "previous_version_name": "v0.6", + "next_version_name": "v2" + }, + { + "name": "v2", + "recommended_version": "v2.0.1", + "compatible_versions": [ + "v2.0.0", + "v2.0.1" + ], + "cosmos_sdk_version": "cheqd/cosmos-sdk v0.47.10-height-mismatch", + "ibc_go_version": "v7.4.0", + "consensus": { + "type": "cometbft", + "version": "0.37.5" + }, + "proposal": 12, + "height": 6194750, + "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" + }, + "previous_version_name": "v1", + "next_version_name": "" } ] }, diff --git a/testnets/coreumtestnet/assetlist.json b/testnets/coreumtestnet/assetlist.json index 9d056c598f..713c19d647 100644 --- a/testnets/coreumtestnet/assetlist.json +++ b/testnets/coreumtestnet/assetlist.json @@ -28,7 +28,8 @@ "staking", "wasm", "assets", - "nft" + "nft", + "XRPL" ], "images": [ { diff --git a/testnets/coreumtestnet/chain.json b/testnets/coreumtestnet/chain.json index 57a4677a99..069de6ea21 100644 --- a/testnets/coreumtestnet/chain.json +++ b/testnets/coreumtestnet/chain.json @@ -36,13 +36,13 @@ }, "codebase": { "git_repo": "https://github.com/CoreumFoundation/coreum", - "recommended_version": "v0.1.1", + "recommended_version": "v3.0.3", "compatible_versions": [ - "v0.1.1" + "v3.0.3" ], "binaries": { - "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v0.1.1/cored-linux-amd64?checksum=sha256:21db2ea1b31d9e8202e0d11f2bee0de78d2e677c07fd75a7db1f3958bf49146c", - "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v0.1.1/cored-linux-arm64?checksum=sha256:7d383d1a1bc9185677b25c05ebbe01cf20dd6c779ca4301065359ea6e3bcefa3" + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-amd64?checksum=sha256:1719a32e6f8e8813d00cd86e1d8d02e893324d4f59fa7a1b8cedc5836140ecef", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-arm64?checksum=sha256:cfbbad6803c0327407e4dd222a108505e6ff9e294d7c86e34b6b895b96b61bbd" }, "cosmos_sdk_version": "0.45", "consensus": { @@ -74,7 +74,139 @@ "version": "0.34" }, "cosmwasm_version": "0.30", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "next_version_name": "v1" + }, + { + "name": "v1", + "tag": "v1.0.0", + "proposal": 3, + "height": 3233700, + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "cosmos_sdk_version": "0.45", + "consensus": { + "type": "tendermint", + "version": "0.34" + }, + "cosmwasm_version": "0.30", + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v1.0.0/cored-linux-amd64?checksum=sha256:34098ad7586bda364b1b2e7c4569cbcefb630cd4ed7c8f68eb5bced834082c57", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v1.0.0/cored-linux-arm64?checksum=sha256:3ced97f06607f0cdaf77e7ff0b36b2011d101c660684e4f3e54c2ac6bf344dd6" + }, + "next_version_name": "v2" + }, + { + "name": "v2", + "tag": "v2.0.0", + "proposal": 13, + "height": 8728400, + "recommended_version": "v2.0.0", + "compatible_versions": [ + "v2.0.0" + ], + "cosmos_sdk_version": "0.45", + "consensus": { + "type": "tendermint", + "version": "0.34" + }, + "cosmwasm_version": "0.30", + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.0/cored-linux-amd64?checksum=sha256:7848022a3a35723ecef02eb835fbf139989aace8d780186018dbcdebdc57d694", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.0/cored-linux-arm64?checksum=sha256:c082eeebbc206633f1b71ef9c16a7f390f5ea5b27ce06c735ed7a632f38b5891" + }, + "next_version_name": "v2patch1" + }, + { + "name": "v2patch1", + "tag": "v2.0.2", + "proposal": 15, + "height": 9122200, + "recommended_version": "v2.0.2", + "compatible_versions": [ + "v2.0.2" + ], + "cosmos_sdk_version": "0.45", + "consensus": { + "type": "tendermint", + "version": "0.34" + }, + "cosmwasm_version": "0.30", + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.2/cored-linux-amd64?checksum=sha256:3facf55f7ff795719f68b9bcf76ea08262bc7c9e9cd735c660257ba73678250e", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.2/cored-linux-arm64?checksum=sha256:35e261eb3b87c833c30174e6b8667a6155f5962441275d443157e209bbb0bf0d" + }, + "next_version_name": "v3" + }, + { + "name": "v3", + "tag": "v3.0.0", + "proposal": 23, + "height": 14980000, + "recommended_version": "v3.0.0", + "compatible_versions": [ + "v3.0.0" + ], + "cosmos_sdk_version": "0.47", + "consensus": { + "type": "cometbft", + "version": "0.37" + }, + "cosmwasm_version": "0.44", + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.0/cored-linux-amd64?checksum=sha256:0198b5bf7a32b0e76c57f5fe30bcb27bdc69ba91cd6e4fc8c416bea3a1251a24", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.0/cored-linux-arm64?checksum=sha256:192eaf4fcc49c3ea3339d12f53c905420575d00d605048e526a994a0c4368768" + }, + "next_version_name": "v3patch1" + }, + { + "name": "v3patch1", + "tag": "v3.0.1", + "proposal": 24, + "height": 15385000, + "recommended_version": "v3.0.1", + "compatible_versions": [ + "v3.0.1" + ], + "cosmos_sdk_version": "0.47", + "consensus": { + "type": "cometbft", + "version": "0.37" + }, + "cosmwasm_version": "0.44", + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.1/cored-linux-amd64?checksum=sha256:4d533ed578bb3dddf0142095bf62c63c2f25edf8248df1e8f88b35361be180c4", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.1/cored-linux-arm64?checksum=sha256:83b88f8323061d5dd6aa08895a7ebde7491ccf6360538151e811b7edac9dd1c5" + }, + "next_version_name": "v3patch2" + }, + { + "name": "v3patch2", + "tag": "v3.0.3", + "proposal": 25, + "height": 15684437, + "recommended_version": "v3.0.3", + "compatible_versions": [ + "v3.0.3" + ], + "cosmos_sdk_version": "0.47", + "consensus": { + "type": "cometbft", + "version": "0.37" + }, + "cosmwasm_version": "0.44", + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-amd64?checksum=sha256:1719a32e6f8e8813d00cd86e1d8d02e893324d4f59fa7a1b8cedc5836140ecef", + "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-arm64?checksum=sha256:cfbbad6803c0327407e4dd222a108505e6ff9e294d7c86e34b6b895b96b61bbd" + } } ] }, @@ -98,7 +230,7 @@ }, { "id": "53f2367d8f8291af8e3b6ca60efded0675ff6314", - "address": "seed-antares.mainnet-1.coreum.dev:26656", + "address": "seed-antares.testnet-1.coreum.dev:26656", "provider": "Coreum Foundation" }, { @@ -150,6 +282,12 @@ "url": "https://explorer.testnet-1.coreum.dev/coreum", "tx_page": "https://explorer.testnet-1.coreum.dev/coreum/transactions/${txHash}", "account_page": "https://explorer.testnet-1.coreum.dev/coreum/account/${accountAddress}" + }, + { + "kind": "mintscan", + "url": "https://www.mintscan.io/coreum-testnet", + "tx_page": "https://www.mintscan.io/coreum-testnet/transactions/${txHash}", + "account_page": "https://www.mintscan.io/coreum-testnet/accounts/${accountAddress}" } ], "keywords": [ diff --git a/testnets/cosmoshubtestnet/chain.json b/testnets/cosmoshubtestnet/chain.json index 8d05678a3c..e88f9bc7a7 100644 --- a/testnets/cosmoshubtestnet/chain.json +++ b/testnets/cosmoshubtestnet/chain.json @@ -232,8 +232,8 @@ "explorers": [ { "kind": "Mintscan", - "url": "https://testnet.mintscan.io/cosmoshub-testnet", - "tx_page": "https://testnet.mintscan.io/cosmoshub-testnet/txs/${txHash}" + "url": "https://mintscan.io/cosmoshub-testnet", + "tx_page": "https://mintscan.io/cosmoshub-testnet/txs/${txHash}" }, { "kind": "Big Dipper", diff --git a/testnets/dydxtestnet/assetlist.json b/testnets/dydxtestnet/assetlist.json index aa24a901ec..80ac7f7c75 100644 --- a/testnets/dydxtestnet/assetlist.json +++ b/testnets/dydxtestnet/assetlist.json @@ -30,6 +30,10 @@ ], "images": [ { + "image_sync": { + "chain_name": "dydx", + "base_denom": "adydx" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" }, diff --git a/testnets/elystestnet/chain.json b/testnets/elystestnet/chain.json index 5286c04f12..773a910db2 100644 --- a/testnets/elystestnet/chain.json +++ b/testnets/elystestnet/chain.json @@ -222,6 +222,11 @@ "id": "ae7191b2b922c6a59456588c3a262df518b0d130", "address": "elys-testnet-seed.itrocket.net:54656", "provider": "itrocket" + }, + { + "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", + "address": "seed.publicnode.com:26656", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "persistent_peers": [ @@ -254,6 +259,10 @@ { "address": "https://elys-rpc.kleomedes.network:443", "provider": "Kleomedes" + }, + { + "address": "https://elys-testnet-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "rest": [ @@ -276,6 +285,10 @@ { "address": "https://elys-api.kleomedes.network:443", "provider": "Kleomedes" + }, + { + "address": "https://elys-testnet-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "grpc": [ @@ -286,6 +299,10 @@ { "address": "elys-testnet-grpc.itrocket.net:38090", "provider": "itrocket" + }, + { + "address": "elys-testnet-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, diff --git a/testnets/entrypointtestnet/assetlist.json b/testnets/entrypointtestnet/assetlist.json index 3cac8d2da8..111f09df71 100644 --- a/testnets/entrypointtestnet/assetlist.json +++ b/testnets/entrypointtestnet/assetlist.json @@ -56,8 +56,8 @@ { "type": "ibc", "counterparty": { - "chain_name": "osmosis", - "base_denom": "ibc/B28CFD38D84A480EF2A03AC575DCB05004D934A603A5A642888847BCDA6340C0", + "chain_name": "osmosistestnet", + "base_denom": "ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C", "channel_id": "channel-4156" }, "chain": { @@ -72,6 +72,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "osmosistestnet", + "base_denom": "ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C" + }, "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" } diff --git a/testnets/evmostestnet/chain.json b/testnets/evmostestnet/chain.json index 21006f2b6c..94938a2f0b 100644 --- a/testnets/evmostestnet/chain.json +++ b/testnets/evmostestnet/chain.json @@ -140,8 +140,8 @@ "explorers": [ { "kind": "Mintscan", - "url": "https://testnet.mintscan.io/evmos-testnet", - "tx_page": "https://testnet.mintscan.io/evmos-testnet/txs/${txHash}" + "url": "https://mintscan.io/evmos-testnet", + "tx_page": "https://mintscan.io/evmos-testnet/txs/${txHash}" }, { "kind": "NodesGuru", diff --git a/testnets/junotestnet/assetlist.json b/testnets/junotestnet/assetlist.json index ebdc0a962b..95d86f941e 100644 --- a/testnets/junotestnet/assetlist.json +++ b/testnets/junotestnet/assetlist.json @@ -89,6 +89,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "juno", + "base_denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA" + }, "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" } diff --git a/testnets/kyvetestnet/chain.json b/testnets/kyvetestnet/chain.json index 292b65b82a..aea83b2097 100644 --- a/testnets/kyvetestnet/chain.json +++ b/testnets/kyvetestnet/chain.json @@ -121,9 +121,9 @@ "explorers": [ { "kind": "mintscan", - "url": "https://testnet.mintscan.io/kyve-testnet", - "tx_page": "https://testnet.mintscan.io/kyve-testnet/txs/${txHash}", - "account_page": "https://testnet.mintscan.io/kyve-testnet/account/${accountAddress}" + "url": "https://mintscan.io/kyve-testnet", + "tx_page": "https://mintscan.io/kyve-testnet/txs/${txHash}", + "account_page": "https://mintscan.io/kyve-testnet/account/${accountAddress}" } ] } diff --git a/testnets/mantrachaintestnet/assetlist.json b/testnets/mantrachaintestnet/assetlist.json index 6ab8902eee..e478e0703b 100644 --- a/testnets/mantrachaintestnet/assetlist.json +++ b/testnets/mantrachaintestnet/assetlist.json @@ -7,24 +7,17 @@ "denom_units": [ { "denom": "uom", - "exponent": 0, - "aliases": [] + "exponent": 0 }, { "denom": "om", - "exponent": 6, - "aliases": [] + "exponent": 6 } ], "base": "uom", "name": "MANTRA Chain", "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" - }, - "coingecko_id": "", "keywords": [ "mantra", "staking", @@ -33,12 +26,29 @@ "regulation", "defi" ], + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "mantrachain", + "base_denom": "uom" + }, + "provider": "MANTRA Chain" + } + ], "images": [ { - "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" + "image_sync": { + "chain_name": "mantrachain", + "base_denom": "uom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", + "theme": { + "circle": true + } } ] } ] -} \ No newline at end of file +} diff --git a/testnets/mantrachaintestnet/chain.json b/testnets/mantrachaintestnet/chain.json index d033315e4e..f92690be49 100644 --- a/testnets/mantrachaintestnet/chain.json +++ b/testnets/mantrachaintestnet/chain.json @@ -66,6 +66,11 @@ "id": "d6016af7cb20cf1905bd61468f6a61decb3fd7c0", "address": "seed.hongbai.mantrachain.io:26656", "provider": "MANTRACHAIN" + }, + { + "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", + "address": "seed.publicnode.com:26656", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "persistent_peers": [ @@ -86,33 +91,46 @@ { "address": "https://rpc.hongbai.mantrachain.io", "provider": "MANTRACHAIN" + }, + { + "address": "https://mantra-testnet-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "rest": [ { "address": "https://api.hongbai.mantrachain.io", "provider": "MANTRACHAIN" + }, + { + "address": "https://mantra-testnet-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "grpc": [ { "address": "https://grpc.hongbai.mantrachain.io", "provider": "MANTRACHAIN" + }, + { + "address": "mantra-testnet-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - "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" - }, "keywords": [ "dex", "testnet" ], "images": [ { - "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" + "image_sync": { + "chain_name": "mantrachain", + "base_denom": "uom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", + "layout": "logomark" } ] -} \ No newline at end of file +} diff --git a/testnets/mantrachaintestnet/images/mantra.png b/testnets/mantrachaintestnet/images/mantra.png deleted file mode 100644 index e1290b0e94..0000000000 Binary files a/testnets/mantrachaintestnet/images/mantra.png and /dev/null differ diff --git a/testnets/mantrachaintestnet/images/mantra.svg b/testnets/mantrachaintestnet/images/mantra.svg deleted file mode 100644 index 826fdd4c61..0000000000 --- a/testnets/mantrachaintestnet/images/mantra.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/testnets/neuradevnet/assetlist.json b/testnets/neuradevnet/assetlist.json new file mode 100644 index 0000000000..168692fc00 --- /dev/null +++ b/testnets/neuradevnet/assetlist.json @@ -0,0 +1,42 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "neuradevnet", + "assets": [ + { + "description": "ANKR: The native EVM, governance, and staking token for Neura, enabling secure transactions, and seamless GPU resourcing within the ecosystem.", + "denom_units": [ + { + "denom": "atankr", + "exponent": 0 + }, + { + "denom": "ankr", + "exponent": 18 + } + ], + "base": "atankr", + "name": "Neura Devnet", + "display": "ankr", + "symbol": "ANKR", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "neura", + "base_denom": "atankr" + }, + "provider": "Neura" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "neura", + "base_denom": "atankr" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg" + } + ] + } + ] +} diff --git a/testnets/neuradevnet/chain.json b/testnets/neuradevnet/chain.json new file mode 100644 index 0000000000..bc8ddad2f9 --- /dev/null +++ b/testnets/neuradevnet/chain.json @@ -0,0 +1,50 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "neuradevnet", + "chain_id": "neura_268-1", + "bech32_prefix": "neura", + "pretty_name": "Neura Devnet", + "website": "https://www.neuraprotocol.io/", + "description": "Neura is an AI-centric, EVM-compatible Layer 1 blockchain built on the Cosmos SDK. We democratize GPU access and revolutionize AI project funding with IMO’s to advance AI development.", + "status": "live", + "network_type": "devnet", + "node_home": "$HOME/.neurad", + "daemon_name": "neurad", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 1, + "fees": { + "fee_tokens": [ + { + "denom": "atankr" + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "atankr" + } + ] + }, + "codebase": { + "versions": [ + { + "name": "v0.0.1", + "height": 0 + } + ] + }, + "images": [ + { + "image_sync": { + "chain_name": "neura" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png" + } + ] +} diff --git a/testnets/neuratestnet/assetlist.json b/testnets/neuratestnet/assetlist.json new file mode 100644 index 0000000000..c365841ac1 --- /dev/null +++ b/testnets/neuratestnet/assetlist.json @@ -0,0 +1,42 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "neuratestnet", + "assets": [ + { + "description": "ANKR: The native EVM, governance, and staking token for Neura, enabling secure transactions, and seamless GPU resourcing within the ecosystem.", + "denom_units": [ + { + "denom": "atankr", + "exponent": 0 + }, + { + "denom": "ankr", + "exponent": 18 + } + ], + "base": "atankr", + "name": "Neura Testnet", + "display": "ankr", + "symbol": "ANKR", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "neura", + "base_denom": "atankr" + }, + "provider": "Neura" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "neura", + "base_denom": "atankr" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg" + } + ] + } + ] +} diff --git a/testnets/neuratestnet/chain.json b/testnets/neuratestnet/chain.json new file mode 100644 index 0000000000..0d82487385 --- /dev/null +++ b/testnets/neuratestnet/chain.json @@ -0,0 +1,68 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "neuratestnet", + "chain_id": "neura_267-1", + "bech32_prefix": "neura", + "pretty_name": "Neura Testnet", + "website": "https://www.neuraprotocol.io/", + "description": "Neura is an AI-centric, EVM-compatible Layer 1 blockchain built on the Cosmos SDK. We democratize GPU access and revolutionize AI project funding with IMO’s to advance AI development.", + "status": "live", + "network_type": "testnet", + "node_home": "$HOME/.neurad", + "daemon_name": "neurad", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 1, + "fees": { + "fee_tokens": [ + { + "denom": "atankr" + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "atankr" + } + ] + }, + "apis": { + "rpc": [{ + "address": "https://rpc.ankr.com/neura_testnet", + "provider": "ankr" + }] + }, + "explorers": [ + { + "kind": "ankrscan-neura", + "url": "https://testnet.explorer.neuraprotocol.io", + "tx_page": "https://testnet.explorer.neuraprotocol.io/tx/${txHash}" + }, + { + "kind": "blockscout", + "url": "https://explorer.neura-testnet.ankr.com", + "tx_page": "https://explorer.neura-testnet.ankr.com/tx/${txHash}" + } + ], + "codebase": { + "versions": [ + { + "name": "v0.0.1", + "height": 0 + } + ] + }, + "images": [ + { + "image_sync": { + "chain_name": "neura" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png" + } + ] +} diff --git a/testnets/neutrontestnet/assetlist.json b/testnets/neutrontestnet/assetlist.json index ef714b0a9e..d02ea4053f 100644 --- a/testnets/neutrontestnet/assetlist.json +++ b/testnets/neutrontestnet/assetlist.json @@ -28,6 +28,33 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.svg" } ] + }, + { + "description": "The yield token for ATOM denominated vaults on Amulet Protocol", + "denom_units": [ + { + "denom": "factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom", + "exponent": 0 + }, + { + "denom": "amATOM", + "exponent": 6 + } + ], + "base": "factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom", + "name": "amATOM (Testnet)", + "display": "amATOM", + "symbol": "amATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.svg" + } + ] } ] } \ No newline at end of file diff --git a/testnets/neutrontestnet/chain.json b/testnets/neutrontestnet/chain.json index a3e7c57b88..375d429969 100644 --- a/testnets/neutrontestnet/chain.json +++ b/testnets/neutrontestnet/chain.json @@ -176,9 +176,9 @@ }, { "kind": "Mintscan", - "url": "https://testnet.mintscan.io/neutron-testnet", - "tx_page": "https://testnet.mintscan.io/neutron-testnet/txs/${txHash}", - "account_page": "https://testnet.mintscan.io/neutron-testnet/account/${accountAddress}" + "url": "https://mintscan.io/neutron-testnet", + "tx_page": "https://mintscan.io/neutron-testnet/txs/${txHash}", + "account_page": "https://mintscan.io/neutron-testnet/account/${accountAddress}" } ], "images": [ diff --git a/testnets/neutrontestnet/images/amATOM.png b/testnets/neutrontestnet/images/amATOM.png new file mode 100644 index 0000000000..294b86e213 Binary files /dev/null and b/testnets/neutrontestnet/images/amATOM.png differ diff --git a/testnets/neutrontestnet/images/amATOM.svg b/testnets/neutrontestnet/images/amATOM.svg new file mode 100644 index 0000000000..da5e5f9e72 --- /dev/null +++ b/testnets/neutrontestnet/images/amATOM.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testnets/nibirudevnet/assetlist.json b/testnets/nibirudevnet/assetlist.json index 04f35fa43a..5807ec0b89 100644 --- a/testnets/nibirudevnet/assetlist.json +++ b/testnets/nibirudevnet/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/nibirudevnet/chain.json b/testnets/nibirudevnet/chain.json index f7852a1643..16424a5aa5 100644 --- a/testnets/nibirudevnet/chain.json +++ b/testnets/nibirudevnet/chain.json @@ -9,7 +9,9 @@ "bech32_prefix": "nibi", "daemon_name": "nibid", "node_home": "$HOME/.nibid", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -35,7 +37,9 @@ "codebase": { "git_repo": "https://github.com/NibiruChain/nibiru", "recommended_version": "v1.0.1", - "compatible_versions": ["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", @@ -57,7 +61,9 @@ { "name": "v1.0.0", "recommended_version": "v1.0.0", - "compatible_versions": ["v1.0.0"], + "compatible_versions": [ + "v1.0.0" + ], "tag": "v1.0.0", "height": 1, "consensus": { @@ -78,7 +84,9 @@ { "name": "v1.0.1", "recommended_version": "v1.0.1", - "compatible_versions": ["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", @@ -106,6 +114,12 @@ }, "description": "A Web3 hub ushering in the next era of money", "apis": { + "wss": [ + { + "address": "wss://hm-graphql.devnet-1.nibiru.fi/query", + "provider": "Nibiru Foundation" + } + ], "rpc": [ { "address": "https://rpc.devnet-1.nibiru.fi", @@ -139,4 +153,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/nibirudevnet2/assetlist.json b/testnets/nibirudevnet2/assetlist.json index 640dd97432..49a8c91234 100644 --- a/testnets/nibirudevnet2/assetlist.json +++ b/testnets/nibirudevnet2/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/nibirudevnet2/chain.json b/testnets/nibirudevnet2/chain.json index 7670f1ec8c..606a7dd932 100644 --- a/testnets/nibirudevnet2/chain.json +++ b/testnets/nibirudevnet2/chain.json @@ -9,7 +9,9 @@ "bech32_prefix": "nibi", "daemon_name": "nibid", "node_home": "$HOME/.nibid", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -35,7 +37,9 @@ "codebase": { "git_repo": "https://github.com/NibiruChain/nibiru", "recommended_version": "v1.0.1", - "compatible_versions": ["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", @@ -57,7 +61,9 @@ { "name": "v1.0.0", "recommended_version": "v1.0.0", - "compatible_versions": ["v1.0.0"], + "compatible_versions": [ + "v1.0.0" + ], "tag": "v1.0.0", "height": 1, "consensus": { @@ -78,7 +84,9 @@ { "name": "v1.0.1", "recommended_version": "v1.0.1", - "compatible_versions": ["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", @@ -106,6 +114,12 @@ }, "description": "A Web3 hub ushering in the next era of money", "apis": { + "wss": [ + { + "address": "wss://hm-graphql.devnet-2.nibiru.fi/query", + "provider": "Nibiru Foundation" + } + ], "rpc": [ { "address": "https://rpc.devnet-2.nibiru.fi", @@ -139,4 +153,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/nibirutestnet/assetlist.json b/testnets/nibirutestnet/assetlist.json index 19b90bc514..f960fa34c4 100644 --- a/testnets/nibirutestnet/assetlist.json +++ b/testnets/nibirutestnet/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/nibirutestnet/chain.json b/testnets/nibirutestnet/chain.json index f6c2a185e0..598dd37270 100644 --- a/testnets/nibirutestnet/chain.json +++ b/testnets/nibirutestnet/chain.json @@ -9,7 +9,9 @@ "bech32_prefix": "nibi", "daemon_name": "nibid", "node_home": "$HOME/.nibid", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -35,7 +37,9 @@ "codebase": { "git_repo": "https://github.com/NibiruChain/nibiru", "recommended_version": "v1.0.1", - "compatible_versions": ["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", @@ -57,7 +61,9 @@ { "name": "v1.0.0", "recommended_version": "v1.0.0", - "compatible_versions": ["v1.0.0"], + "compatible_versions": [ + "v1.0.0" + ], "tag": "v1.0.0", "height": 1, "consensus": { @@ -78,7 +84,9 @@ { "name": "v1.0.1", "recommended_version": "v1.0.1", - "compatible_versions": ["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", @@ -106,6 +114,12 @@ }, "description": "A Web3 hub ushering in the next era of money", "apis": { + "wss": [ + { + "address": "wss://hm-graphql.testnet-1.nibiru.fi/query", + "provider": "Nibiru Foundation" + } + ], "rpc": [ { "address": "https://rpc.testnet-1.nibiru.fi", @@ -139,4 +153,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/nibirutestnet2/assetlist.json b/testnets/nibirutestnet2/assetlist.json index dfbb5f852c..57801cd1b7 100644 --- a/testnets/nibirutestnet2/assetlist.json +++ b/testnets/nibirutestnet2/assetlist.json @@ -30,4 +30,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/testnets/nibirutestnet2/chain.json b/testnets/nibirutestnet2/chain.json index 9f1cc7b50f..10c60c94d3 100644 --- a/testnets/nibirutestnet2/chain.json +++ b/testnets/nibirutestnet2/chain.json @@ -9,7 +9,9 @@ "bech32_prefix": "nibi", "daemon_name": "nibid", "node_home": "$HOME/.nibid", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -35,7 +37,9 @@ "codebase": { "git_repo": "https://github.com/NibiruChain/nibiru", "recommended_version": "v1.0.1", - "compatible_versions": ["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", @@ -57,7 +61,9 @@ { "name": "v1.0.0", "recommended_version": "v1.0.0", - "compatible_versions": ["v1.0.0"], + "compatible_versions": [ + "v1.0.0" + ], "tag": "v1.0.0", "height": 1, "consensus": { @@ -78,7 +84,9 @@ { "name": "v1.0.1", "recommended_version": "v1.0.1", - "compatible_versions": ["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", @@ -106,6 +114,12 @@ }, "description": "A Web3 hub ushering in the next era of money", "apis": { + "wss": [ + { + "address": "wss://hm-graphql.testnet-2.nibiru.fi/query", + "provider": "Nibiru Foundation" + } + ], "rpc": [ { "address": "https://rpc.testnet-2.nibiru.fi", @@ -139,4 +153,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/nobletestnet/assetlist.json b/testnets/nobletestnet/assetlist.json index f7d78e319f..1da4e3aca4 100644 --- a/testnets/nobletestnet/assetlist.json +++ b/testnets/nobletestnet/assetlist.json @@ -115,6 +115,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdlr" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg" } diff --git a/testnets/nobletestnet/assets/usdlr.png b/testnets/nobletestnet/images/usdlr.png similarity index 100% rename from testnets/nobletestnet/assets/usdlr.png rename to testnets/nobletestnet/images/usdlr.png diff --git a/testnets/nobletestnet/assets/usdlr.svg b/testnets/nobletestnet/images/usdlr.svg similarity index 100% rename from testnets/nobletestnet/assets/usdlr.svg rename to testnets/nobletestnet/images/usdlr.svg diff --git a/testnets/osmosistestnet/assetlist.json b/testnets/osmosistestnet/assetlist.json index 7a1487dd43..86f8fa7059 100644 --- a/testnets/osmosistestnet/assetlist.json +++ b/testnets/osmosistestnet/assetlist.json @@ -108,6 +108,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "cosmoshubtestnet", + "base_denom": "uatom" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } @@ -276,6 +280,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "junotestnet", + "base_denom": "ujunox" + }, "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" } @@ -321,6 +329,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "marstestnet", + "base_denom": "umars" + }, "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" } @@ -390,6 +402,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "nobletestnet", + "base_denom": "uusdc" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] @@ -434,6 +450,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "akashtestnet", + "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" } @@ -536,6 +556,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "quicksilvertestnet", + "base_denom": "uqck" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" } ] @@ -579,6 +603,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "chain4energytestnet", + "base_denom": "uc4e" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" } ] @@ -623,6 +651,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "persistencetestnet2", + "base_denom": "uxprt" + }, "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" } @@ -671,6 +703,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "xiontestnet", + "base_denom": "uxion" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png" } ] @@ -716,6 +752,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "sagatestnet", + "base_denom": "utsaga" + }, "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" } @@ -807,6 +847,52 @@ } ] }, + { + "description": "The yield token for ATOM denominated vaults on Amulet Protocol", + "denom_units": [ + { + "denom": "ibc/E972F89F57AF6BDE0CCC97CABFF4DD8D99408B8A741570E1E3D1C35465C98E5E", + "exponent": 0 + }, + { + "denom": "amATOM", + "exponent": 6 + } + ], + "base": "ibc/E972F89F57AF6BDE0CCC97CABFF4DD8D99408B8A741570E1E3D1C35465C98E5E", + "name": "amATOM (Testnet)", + "display": "amATOM", + "symbol": "amATOM", + "type_asset": "ics20", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "neutrontestnet", + "base_denom": "factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.svg" + } + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutrontestnet", + "base_denom": "factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom", + "channel_id": "channel-787" + }, + "chain": { + "channel_id": "channel-7884", + "path": "transfer/channel-7884/factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom" + } + } + ] + }, { "description": "The native EVM, governance and staking token of the Titan Chain", "denom_units": [ diff --git a/testnets/osmosistestnet/chain.json b/testnets/osmosistestnet/chain.json index 507c3d4b8b..14456e5b70 100644 --- a/testnets/osmosistestnet/chain.json +++ b/testnets/osmosistestnet/chain.json @@ -143,9 +143,9 @@ "explorers": [ { "kind": "mintscan", - "url": "https://testnet.mintscan.io/osmosis-testnet", - "tx_page": "https://testnet.mintscan.io/osmosis-testnet/txs/${txHash}", - "account_page": "https://testnet.mintscan.io/osmosis-testnet/account/${accountAddress}" + "url": "https://mintscan.io/osmosis-testnet", + "tx_page": "https://mintscan.io/osmosis-testnet/txs/${txHash}", + "account_page": "https://mintscan.io/osmosis-testnet/account/${accountAddress}" }, { "kind": "ping.pub", diff --git a/testnets/persistencetestnet/chain.json b/testnets/persistencetestnet/chain.json index 2017139717..88b5738993 100644 --- a/testnets/persistencetestnet/chain.json +++ b/testnets/persistencetestnet/chain.json @@ -159,9 +159,9 @@ }, { "kind": "mintscan", - "url": "https://testnet.mintscan.io/persistence-testnet", - "tx_page": "https://testnet.mintscan.io/persistence-testnet/txs/${txHash}", - "account_page": "https://testnet.mintscan.io/persistence-testnet/account/${accountAddress}" + "url": "https://mintscan.io/persistence-testnet", + "tx_page": "https://mintscan.io/persistence-testnet/txs/${txHash}", + "account_page": "https://mintscan.io/persistence-testnet/account/${accountAddress}" } ] } diff --git a/testnets/persistencetestnet2/chain.json b/testnets/persistencetestnet2/chain.json index 7d4af826a8..f9aa4dca09 100644 --- a/testnets/persistencetestnet2/chain.json +++ b/testnets/persistencetestnet2/chain.json @@ -241,9 +241,9 @@ "explorers": [ { "kind": "mintscan", - "url": "https://testnet.mintscan.io/persistence-testnet", - "tx_page": "https://testnet.mintscan.io/persistence-testnet/txs/${txHash}", - "account_page": "https://testnet.mintscan.io/persistence-testnet/account/${accountAddress}" + "url": "https://mintscan.io/persistence-testnet", + "tx_page": "https://mintscan.io/persistence-testnet/txs/${txHash}", + "account_page": "https://mintscan.io/persistence-testnet/account/${accountAddress}" }, { "kind": "StakeFlow", diff --git a/testnets/rsprovidertestnet/chain.json b/testnets/rsprovidertestnet/chain.json index f9d90c71cc..a84edc9056 100644 --- a/testnets/rsprovidertestnet/chain.json +++ b/testnets/rsprovidertestnet/chain.json @@ -170,8 +170,8 @@ "explorers": [ { "kind": "Mintscan", - "url": "https://testnet.mintscan.io/ics-testnet-provider", - "tx_page": "https://testnet.mintscan.io/ics-testnet-provider/txs/${txHash}" + "url": "https://mintscan.io/ics-testnet-provider", + "tx_page": "https://mintscan.io/ics-testnet-provider/txs/${txHash}" }, { "kind": "Ping.pub", diff --git a/testnets/uniontestnet/chain.json b/testnets/uniontestnet/chain.json index 75fcae527b..a6d646126c 100644 --- a/testnets/uniontestnet/chain.json +++ b/testnets/uniontestnet/chain.json @@ -120,4 +120,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/uniontestnet/images/union.png" } ] -} +} \ No newline at end of file diff --git a/versions.schema.json b/versions.schema.json index 121d13067d..7e4bd9e69f 100644 --- a/versions.schema.json +++ b/versions.schema.json @@ -144,5 +144,6 @@ "additionalProperties": false } } - } + }, + "additionalProperties": false } diff --git a/xpla/chain.json b/xpla/chain.json index e2f737e26b..b8a3f486a4 100644 --- a/xpla/chain.json +++ b/xpla/chain.json @@ -176,6 +176,10 @@ { "address": "https://xpla-rpc.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://xpla-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], "rest": [ @@ -194,13 +198,26 @@ { "address": "https://xpla-api.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://xpla-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" + } + ], + "grpc": [ + { + "address": "xpla-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - "grpc": [], "evm-http-jsonrpc": [ { "address": "https://dimension-evm-rpc.xpla.dev", "provider": "Holdings" + }, + { + "address": "https://xpla-evm-rpc.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] },