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 @@
-