From 09e5889c199561d8613a5cabae0a750ddfb2a512 Mon Sep 17 00:00:00 2001 From: JeremyParish69 <95667791+JeremyParish69@users.noreply.github.com> Date: Tue, 27 Aug 2024 16:05:09 -0600 Subject: [PATCH] Update chain registry replacement generation (#1865) --- .../utility/generate_assetlist_functions.mjs | 82 +- .../generated/chain_registry/assetlist.json | 61 +- .../generated/chain_registry/assetlist.json | 1428 ++++++++++++----- 3 files changed, 1115 insertions(+), 456 deletions(-) diff --git a/.github/workflows/utility/generate_assetlist_functions.mjs b/.github/workflows/utility/generate_assetlist_functions.mjs index 94e87ea34..e5175c1a8 100644 --- a/.github/workflows/utility/generate_assetlist_functions.mjs +++ b/.github/workflows/utility/generate_assetlist_functions.mjs @@ -503,15 +503,16 @@ export function setSymbol(asset_data) { let symbol = getAssetProperty(asset_data.origin_asset, "symbol"); - asset_data.chain_reg.symbol = - getAssetProperty(asset_data.local_asset, "symbol") ?? - getAssetProperty(asset_data.canonical_asset, "symbol"); + //asset_data.chain_reg.symbol = + //getAssetProperty(asset_data.local_asset, "symbol") ?? + //getAssetProperty(asset_data.canonical_asset, "symbol"); //getAssetProperty(asset_data.source_asset, "symbol"); //change this to source asset, since canonical only applies to osmosis zone if (asset_data.zone_asset?.override_properties?.symbol) { symbol = asset_data.zone_asset?.override_properties?.symbol; asset_data.frontend.symbol = symbol; asset_data.asset_detail.symbol = symbol; + asset_data.chain_reg.symbol = symbol; return; } @@ -522,6 +523,7 @@ export function setSymbol(asset_data) { if (asset_data.frontend.is_canonical) { asset_data.frontend.symbol = symbol; asset_data.asset_detail.symbol = symbol; + asset_data.chain_reg.symbol = symbol; return; } @@ -585,6 +587,7 @@ export function setSymbol(asset_data) { asset_data.frontend.symbol = symbol; asset_data.asset_detail.symbol = symbol; + asset_data.chain_reg.symbol = symbol; return; @@ -595,15 +598,16 @@ export function setName(asset_data) { let name; - asset_data.chain_reg.name = - getAssetProperty(asset_data.local_asset, "name") ?? - getAssetProperty(asset_data.source_asset, "name"); + //asset_data.chain_reg.name = + //getAssetProperty(asset_data.local_asset, "name") ?? + //getAssetProperty(asset_data.source_asset, "name"); if (asset_data.zone_asset?.override_properties?.name) { name = asset_data.zone_asset?.override_properties?.name; asset_data.frontend.name = name; asset_data.asset_detail.name = name; + asset_data.chain_reg.name = name; return; } @@ -628,6 +632,7 @@ export function setName(asset_data) { if (asset_data.frontend.is_canonical) { asset_data.frontend.name = name; asset_data.asset_detail.name = name; + asset_data.chain_reg.name = name; return; } @@ -707,6 +712,7 @@ export function setName(asset_data) { asset_data.frontend.name = name; asset_data.asset_detail.name = name; + asset_data.chain_reg.name = name; } @@ -891,18 +897,72 @@ export function setDecimals(asset_data) { export function setImages(asset_data) { - let images = getAssetProperty(asset_data.local_asset, "images") ?? getAssetProperty(asset_data.canonical_asset, "images"); - asset_data.chain_reg.images = images; + let localImages = getAssetProperty(asset_data.local_asset, "images"); + let canonicalImages = getAssetProperty(asset_data.canonical_asset, "images"); + let primaryImage = asset_data.zone_asset?.override_properties?.logo_URIs ?? canonicalImages?.[0]; + let images = []; + + //Generated chain reg images array is: + //canonicalAsset's image (e.g., USDT) + localAsset's Images(e.g., allUSDT), + //with any override image placed at the beginning + let firstCanonicalImage = true; + canonicalImages?.forEach((canonicalImage) => { + addUniqueArrayItem(canonicalImage, images); + if ( + firstCanonicalImage + && + asset_data.canonical_asset.chain_name !== asset_data.chainName + ) { + images[0].image_sync = { ...asset_data.canonical_asset }; + for (const key in images[0]) { + if (key !== "image_sync") { + const value = images[0][key]; + delete images[0][key]; + images[0][key] = value; + } + } + } + firstCanonicalImage = false; + }); - images = getAssetProperty(asset_data.canonical_asset, "images"); + + localImages?.forEach((localImage) => { + let containsImage = false; + images?.forEach((image) => { + if ( + (image.png && image.png === localImage.png) + || + (image.svg && image.svg === localImage.svg) + ) { + containsImage = true; + } + }); + + if (!containsImage) { + addUniqueArrayItem(localImage, images); + } + }); - let primaryImage = asset_data.zone_asset?.override_properties?.logo_URIs ?? images?.[0]; + let newImagesArray = []; + images.forEach((image) => { + if ( + (image.png && image.png === primaryImage.png) + || + (image.svg && image.svg === primaryImage.svg) + ) { + primaryImage = { ...image }; + } else { + newImagesArray.push(image); + } + }); + newImagesArray.unshift(primaryImage); asset_data.frontend.logoURIs = {...primaryImage}; delete asset_data.frontend.logoURIs.theme; delete asset_data.frontend.logoURIs.image_sync; + asset_data.chain_reg.logo_URIs = asset_data.frontend.logoURIs; - asset_data.chain_reg.logo_URIs = getAssetProperty(asset_data.local_asset, "logo_URIs"); + asset_data.chain_reg.images = newImagesArray; } diff --git a/osmo-test-5/generated/chain_registry/assetlist.json b/osmo-test-5/generated/chain_registry/assetlist.json index 8407c3eb8..fde2c79a0 100644 --- a/osmo-test-5/generated/chain_registry/assetlist.json +++ b/osmo-test-5/generated/chain_registry/assetlist.json @@ -131,7 +131,7 @@ ], "type_asset": "ics20", "base": "ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0", - "name": "USD Coin (Axelar)", + "name": "USD Coin (Axelar Testnet)", "display": "ausdc", "symbol": "aUSDC.axl", "traces": [ @@ -170,8 +170,8 @@ "images": [ { "image_sync": { - "chain_name": "ethereumtestnet", - "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" + "chain_name": "axelartestnet", + "base_denom": "uausdc" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } @@ -194,7 +194,7 @@ ], "type_asset": "ics20", "base": "ibc/1F42AC9631DBE03009219ECCFE151786F53A038DE9F7A07C709158514F1D5942", - "name": "Wrapped Ether (Axelar)", + "name": "Ether (Axelar Testnet)", "display": "weth", "symbol": "ETH", "traces": [ @@ -233,8 +233,8 @@ "images": [ { "image_sync": { - "chain_name": "ethereumtestnet", - "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" + "chain_name": "axelartestnet", + "base_denom": "eth-wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } @@ -507,12 +507,12 @@ }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg", "image_sync": { - "chain_name": "kyve", - "base_denom": "ukyve" - } + "chain_name": "kyvetestnet", + "base_denom": "tkyve" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg" } ] }, @@ -581,7 +581,7 @@ ], "type_asset": "ics20", "base": "ibc/539BC2B6E70117D220834D6DF8E27307655D1325C0CADF7E3AF90AB00D9F8D69", - "name": "Chain4Energy", + "name": "Chain4Energy Testnet", "display": "c4e", "symbol": "C4E", "traces": [ @@ -598,8 +598,15 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" + }, "images": [ { + "image_sync": { + "chain_name": "chain4energytestnet", + "base_denom": "uc4e" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" } ] @@ -674,7 +681,7 @@ ], "type_asset": "ics20", "base": "ibc/5C274155106FEB0C093F76A12BB67222E479E1EBE043F319CE4463E54F7A357C", - "name": "xion", + "name": "Xion Testnet", "display": "XION", "symbol": "XION", "traces": [ @@ -691,8 +698,15 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png" + }, "images": [ { + "image_sync": { + "chain_name": "xiontestnet", + "base_denom": "uxion" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png" } ] @@ -796,7 +810,7 @@ "images": [ { "image_sync": { - "chain_name": "impacthub", + "chain_name": "impacthubtestnet", "base_denom": "uixo" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", @@ -825,7 +839,7 @@ ], "type_asset": "ics20", "base": "ibc/5F10B4BED1A80DC44975D95D716AEF8CEBFB99B3F088C98361436A7D0CF5A830", - "name": "Archway", + "name": "Archway Testnet", "display": "const", "symbol": "CONST", "traces": [ @@ -850,11 +864,15 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" + }, "images": [ { "image_sync": { - "chain_name": "archway", - "base_denom": "aarch" + "chain_name": "archwaytestnet", + "base_denom": "aconst" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg", @@ -884,7 +902,7 @@ ], "type_asset": "ics20", "base": "ibc/B8435C53F8B5CC87703531FF736508875DF473D0C231E93A3EF5C2C934E562A4", - "name": "Melody", + "name": "Symphony Testnet", "display": "mld", "symbol": "MLD", "traces": [ @@ -901,8 +919,15 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png" + }, "images": [ { + "image_sync": { + "chain_name": "symphonytestnet", + "base_denom": "note" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png" } ] diff --git a/osmosis-1/generated/chain_registry/assetlist.json b/osmosis-1/generated/chain_registry/assetlist.json index e16d9d3a4..72c40df7f 100644 --- a/osmosis-1/generated/chain_registry/assetlist.json +++ b/osmosis-1/generated/chain_registry/assetlist.json @@ -101,9 +101,9 @@ ], "type_asset": "ics20", "base": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "name": "USD Coin (Axelar)", + "name": "USDC (Ethereum via Axelar)", "display": "usdc", - "symbol": "USDC.axl", + "symbol": "USDC.eth.axl", "traces": [ { "type": "synthetic", @@ -176,9 +176,9 @@ ], "type_asset": "ics20", "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "name": "Ether", + "name": "Ethereum (Axelar)", "display": "weth", - "symbol": "ETH", + "symbol": "ETH.axl", "traces": [ { "type": "wrapped", @@ -210,10 +210,24 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.svg" }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.svg" + }, + { + "image_sync": { + "chain_name": "axelar", + "base_denom": "weth-wei" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "theme": { + "primary_color_hex": "#3a3444" + } + }, { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", @@ -240,9 +254,9 @@ ], "type_asset": "ics20", "base": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "name": "Wrapped Bitcoin (Axelar)", + "name": "Wrapped Bitcoin (Ethereum via Axelar)", "display": "wbtc", - "symbol": "WBTC.axl", + "symbol": "WBTC.eth.axl", "traces": [ { "type": "bridge", @@ -314,9 +328,9 @@ ], "type_asset": "ics20", "base": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "name": "Tether USD (Axelar)", + "name": "Tether USD (Ethereum via Axelar)", "display": "usdt", - "symbol": "USDT.axl", + "symbol": "USDT.eth.axl", "traces": [ { "type": "synthetic", @@ -348,8 +362,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.png" }, "images": [ { @@ -427,6 +441,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" } ] @@ -488,8 +506,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "busd-wei" + "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", @@ -595,6 +613,12 @@ "base_denom": "basecro" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png", + "theme": { + "primary_color_hex": "#0c2c71" + } } ] }, @@ -657,6 +681,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", "theme": { @@ -721,6 +749,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "polygon", + "base_denom": "wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg", "theme": { @@ -785,6 +817,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "avalanche", + "base_denom": "wei" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg", "theme": { @@ -925,9 +961,9 @@ ], "type_asset": "ics20", "base": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", - "name": "Wrapped Polkadot (Axelar)", + "name": "Polkadot (Moonbeam via Axelar)", "display": "dot", - "symbol": "moonbeam.DOT.axl", + "symbol": "DOT.glmr.axl", "traces": [ { "type": "bridge", @@ -959,10 +995,12 @@ } ], "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg" + }, { "image_sync": { "chain_name": "axelar", @@ -973,9 +1011,6 @@ "theme": { "primary_color_hex": "#e4047c" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg" } ] }, @@ -1245,7 +1280,7 @@ "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", "theme": { - "primary_color_hex": "#b7dfbd" + "primary_color_hex": "#db2777" } } ] @@ -1425,8 +1460,8 @@ "images": [ { "image_sync": { - "chain_name": "persistence", - "base_denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444" + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg", @@ -2333,9 +2368,9 @@ ], "type_asset": "ics20", "base": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", - "name": "Vidulum", + "name": "Vidulum (Vidulum)", "display": "vdl", - "symbol": "VDL", + "symbol": "VDL.vdl", "traces": [ { "type": "legacy-mintage", @@ -2359,10 +2394,21 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg" }, "images": [ + { + "image_sync": { + "chain_name": "vidulum", + "base_denom": "uvdl" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", + "theme": { + "primary_color_hex": "#3454bc" + } + }, { "image_sync": { "chain_name": "vidulum", @@ -3474,9 +3520,9 @@ ], "type_asset": "ics20", "base": "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", - "name": "Racoon", + "name": "Racoon (Juno)", "display": "rac", - "symbol": "juno.RAC", + "symbol": "RAC.juno", "traces": [ { "type": "additional-mintage", @@ -3575,8 +3621,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "frax-wei" + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } @@ -3601,7 +3647,7 @@ "base": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", "name": "Wrapped Bitcoin (Gravity Bridge)", "display": "gwbtc", - "symbol": "WBTC.grv", + "symbol": "WBTC.eth.grv", "traces": [ { "type": "bridge", @@ -3633,10 +3679,12 @@ } ], "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg" + }, { "image_sync": { "chain_name": "gravitybridge", @@ -3647,9 +3695,6 @@ "theme": { "primary_color_hex": "#f39444" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg" } ] }, @@ -3672,7 +3717,7 @@ "base": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", "name": "Ether (Gravity Bridge)", "display": "gweth", - "symbol": "WETH.grv", + "symbol": "ETH.grv", "traces": [ { "type": "wrapped", @@ -3704,18 +3749,18 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg" + }, { "image_sync": { "chain_name": "gravitybridge", "base_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg" } ] }, @@ -3738,7 +3783,7 @@ "base": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", "name": "USDC (Gravity Bridge)", "display": "gusdc", - "symbol": "USDC.grv", + "symbol": "USDC.eth.grv", "traces": [ { "type": "synthetic", @@ -3770,18 +3815,18 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg" + }, { "image_sync": { "chain_name": "gravitybridge", "base_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg" } ] }, @@ -3836,18 +3881,18 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg" + }, { "image_sync": { "chain_name": "gravitybridge", "base_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg" } ] }, @@ -3870,7 +3915,7 @@ "base": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", "name": "Tether USD (Gravity Bridge)", "display": "gusdt", - "symbol": "USDT.grv", + "symbol": "USDT.eth.grv", "traces": [ { "type": "synthetic", @@ -3902,8 +3947,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.png" }, "images": [ { @@ -4572,9 +4617,9 @@ ], "type_asset": "ics20", "base": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", - "name": "Chainlink", + "name": "Chainlink (Axelar)", "display": "link", - "symbol": "LINK", + "symbol": "LINK.axl", "traces": [ { "type": "bridge", @@ -4598,10 +4643,14 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.png" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.png" + }, { "image_sync": { "chain_name": "axelar", @@ -4718,8 +4767,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "aave-wei" + "chain_name": "ethereum", + "base_denom": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" } @@ -4776,8 +4825,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "ape-wei" + "chain_name": "ethereum", + "base_denom": "0x4d224452801aced8b2f0aebe155379bb5d594381" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" } @@ -4834,8 +4883,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "mkr-wei" + "chain_name": "ethereum", + "base_denom": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" } @@ -4897,8 +4946,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "rai-wei" + "chain_name": "ethereum", + "base_denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" } @@ -4921,9 +4970,9 @@ ], "type_asset": "ics20", "base": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", - "name": "Shiba Inu", + "name": "Shiba Inu (Axelar)", "display": "shib", - "symbol": "SHIB", + "symbol": "SHIB.axl", "traces": [ { "type": "bridge", @@ -4947,9 +4996,14 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.png" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.png" + }, { "image_sync": { "chain_name": "axelar", @@ -5158,10 +5212,7 @@ "base_denom": "loki" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg", - "theme": { - "primary_color_hex": "#ffffff" - } + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg" } ] }, @@ -5294,7 +5345,7 @@ "base": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", "name": "LVN", "display": "lvn", - "symbol": "kichain.LVN", + "symbol": "LVN.ki", "traces": [ { "type": "ibc-cw20", @@ -5384,11 +5435,11 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "wglmr-wei" + "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", "theme": { "primary_color_hex": "#e4147c" } @@ -5412,9 +5463,9 @@ ], "type_asset": "ics20", "base": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", - "name": "Gelotto", + "name": "Gelotto (Juno)", "display": "glto", - "symbol": "GLTO", + "symbol": "GLTO.juno", "traces": [ { "type": "legacy-mintage", @@ -5440,10 +5491,21 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg" }, "images": [ + { + "image_sync": { + "chain_name": "juno", + "base_denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "theme": { + "primary_color_hex": "#501cad" + } + }, { "image_sync": { "chain_name": "juno", @@ -5667,6 +5729,24 @@ "dark_mode": true, "primary_color_hex": "#040404" } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg", + "theme": { + "circle": true, + "dark_mode": true, + "primary_color_hex": "#FFFFFF" + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg", + "theme": { + "circle": true, + "dark_mode": false, + "primary_color_hex": "#000000" + } } ] }, @@ -6730,8 +6810,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png" }, "images": [ { @@ -6739,8 +6819,8 @@ "chain_name": "unification", "base_denom": "nund" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png", "theme": { "primary_color_hex": "#2279c0" } @@ -7138,7 +7218,7 @@ "base": "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", "name": "FURY.legacy", "display": "fury", - "symbol": "FURY.legacy", + "symbol": "FURY.juno", "traces": [ { "type": "legacy-mintage", @@ -7890,8 +7970,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "wftm-wei" + "chain_name": "fantom", + "base_denom": "wei" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg", @@ -8085,9 +8165,9 @@ ], "type_asset": "ics20", "base": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", - "name": "USD Coin (Polygon)", + "name": "USDC (Ethereum) (Polygon via Axelar)", "display": "polygon-usdc", - "symbol": "polygon.USDC.axl", + "symbol": "USDC.e.matic.axl", "traces": [ { "type": "synthetic", @@ -8127,14 +8207,25 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg" }, { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg" + "image_sync": { + "chain_name": "axelar", + "base_denom": "polygon-uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "theme": { + "primary_color_hex": "#2474cc" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, @@ -8157,7 +8248,7 @@ "base": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", "name": "USD Coin (Avalanche)", "display": "avalanche-usdc", - "symbol": "avalanche.USDC.axl", + "symbol": "USDC.avax.axl", "traces": [ { "type": "synthetic", @@ -8197,14 +8288,25 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg" }, { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg" + "image_sync": { + "chain_name": "axelar", + "base_denom": "avalanche-uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "theme": { + "primary_color_hex": "#2474cc" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, @@ -8225,9 +8327,9 @@ ], "type_asset": "ics20", "base": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "name": "Mars Hub", + "name": "Mars Protocol token (Mars Hub)", "display": "MARS.old", - "symbol": "MARS.old", + "symbol": "MARS.mars", "traces": [ { "type": "legacy-mintage", @@ -8263,7 +8365,7 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.svg", "theme": { - "primary_color_hex": "#FFFFFF" + "primary_color_hex": "#000000" } } ] @@ -10040,6 +10142,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "filecoin", + "base_denom": "attoFIL" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg", "theme": { @@ -10230,9 +10336,9 @@ ], "type_asset": "ics20", "base": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", - "name": "Arbitrum", + "name": "Arbitrum (Axelar)", "display": "arb", - "symbol": "ARB", + "symbol": "ARB.axl", "traces": [ { "type": "bridge", @@ -10256,10 +10362,14 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.png" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.png" + }, { "image_sync": { "chain_name": "axelar", @@ -10395,9 +10505,9 @@ ], "type_asset": "ics20", "base": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", - "name": "Pepe", + "name": "Pepe (Axelar)", "display": "pepe", - "symbol": "PEPE", + "symbol": "PEPE.axl", "traces": [ { "type": "bridge", @@ -10421,10 +10531,14 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.png" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.png" + }, { "image_sync": { "chain_name": "axelar", @@ -10525,8 +10639,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "cbeth-wei" + "chain_name": "ethereum", + "base_denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", "theme": { @@ -10592,8 +10706,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "reth-wei" + "chain_name": "ethereum", + "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", "theme": { @@ -10667,8 +10781,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "sfrxeth-wei" + "chain_name": "ethereum", + "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" } @@ -10693,7 +10807,7 @@ "base": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", "name": "Wrapped Lido Staked Ether (Axelar)", "display": "wsteth", - "symbol": "wstETH.axl", + "symbol": "wstETH.eth.axl", "traces": [ { "type": "liquid-stake", @@ -10733,18 +10847,18 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + "chain_name": "axelar", + "base_denom": "wsteth-wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg" } ] }, @@ -11151,7 +11265,9 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg", "theme": { - "primary_color_hex": "#040404" + "primary_color_hex": "#040404", + "background_color_hex": "#000000", + "circle": true } } ] @@ -11324,8 +11440,8 @@ "images": [ { "image_sync": { - "chain_name": "composable", - "base_denom": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9" + "chain_name": "kusama", + "base_denom": "Planck" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" } @@ -11349,9 +11465,9 @@ ], "type_asset": "ics20", "base": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", - "name": "Polkadot", + "name": "Polkadot (Picasso)", "display": "dot", - "symbol": "DOT", + "symbol": "DOT.pica", "traces": [ { "type": "bridge", @@ -11399,10 +11515,14 @@ } ], "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.png" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.png" + }, { "image_sync": { "chain_name": "composable", @@ -11566,7 +11686,20 @@ "chain_name": "empowerchain", "base_denom": "umpwr" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", + "theme": { + "primary_color_hex": "#00e33a", + "background_color_hex": "#00e33a", + "circle": true + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.png", + "theme": { + "primary_color_hex": "#00e33a", + "background_color_hex": "#00e33a", + "circle": false + } } ] }, @@ -11691,9 +11824,9 @@ ], "type_asset": "ics20", "base": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "name": "Tether USD", + "name": "Tether USD (Kava)", "display": "usdt", - "symbol": "USDT", + "symbol": "USDT.kava", "traces": [ { "type": "synthetic", @@ -11725,8 +11858,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.png" }, "images": [ { @@ -12025,9 +12158,9 @@ ], "type_asset": "ics20", "base": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", - "name": "Solana", + "name": "Solana (Wormhole)", "display": "wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8", - "symbol": "SOL", + "symbol": "SOL.wh", "traces": [ { "type": "wrapped", @@ -12059,9 +12192,14 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.png" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.png" + }, { "image_sync": { "chain_name": "gateway", @@ -12120,8 +12258,8 @@ "images": [ { "image_sync": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR" + "chain_name": "solana", + "base_denom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", "theme": { @@ -12148,9 +12286,9 @@ ], "type_asset": "ics20", "base": "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", - "name": "Tether USD (Wormhole)", + "name": "Tether USD (Ethereum via Wormhole)", "display": "wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6", - "symbol": "USDT.wh", + "symbol": "USDT.eth.wh", "traces": [ { "type": "synthetic", @@ -12182,8 +12320,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.png" }, "images": [ { @@ -12195,8 +12333,8 @@ }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", @@ -12257,8 +12395,8 @@ "images": [ { "image_sync": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh" + "chain_name": "sui", + "base_denom": "0x2::sui::SUI" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" } @@ -12308,24 +12446,24 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg" }, "images": [ - { - "image_sync": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" - }, { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg", "theme": { "dark_mode": true } - } - ] - }, + }, + { + "image_sync": { + "chain_name": "aptos", + "base_denom": "0x1::aptos_coin::AptosCoin" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" + } + ] + }, { "description": "MantaDAO Governance Token", "denom_units": [ @@ -12445,9 +12583,9 @@ ], "type_asset": "ics20", "base": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", - "name": "USD Coin (Wormhole)", + "name": "USDC (Ethereum via Wormhole)", "display": "wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6", - "symbol": "USDC.wh", + "symbol": "USDC.eth.wh", "traces": [ { "type": "synthetic", @@ -12479,18 +12617,18 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" } ] }, @@ -12512,9 +12650,9 @@ ], "type_asset": "ics20", "base": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", - "name": "Wrapped Ether (Wormhole)", + "name": "Ethereum (Wormhole)", "display": "wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8", - "symbol": "wETH.wh", + "symbol": "ETH.wh", "traces": [ { "type": "wrapped", @@ -12546,10 +12684,12 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg" + }, { "image_sync": { "chain_name": "gateway", @@ -12560,9 +12700,6 @@ "theme": { "primary_color_hex": "#303030" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg" } ] }, @@ -12618,10 +12755,19 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true + } + }, { "image_sync": { "chain_name": "noble", @@ -12632,9 +12778,6 @@ "theme": { "primary_color_hex": "#2474cc" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, @@ -12696,8 +12839,8 @@ "images": [ { "image_sync": { - "chain_name": "axelar", - "base_denom": "yieldeth-wei" + "chain_name": "ethereum", + "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg", @@ -13378,10 +13521,15 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg" }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", + "theme": { + "circle": true + } + }, { "image_sync": { "chain_name": "dydx", @@ -13392,9 +13540,6 @@ "theme": { "primary_color_hex": "#21212f" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg" } ] }, @@ -13757,8 +13902,8 @@ "images": [ { "image_sync": { - "chain_name": "neutron", - "base_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH" + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } @@ -14182,8 +14327,8 @@ "images": [ { "image_sync": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy" + "chain_name": "solana", + "base_denom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg" } @@ -14497,7 +14642,7 @@ ], "type_asset": "ics20", "base": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", - "name": "RAC", + "name": "Racoon", "display": "RAC", "symbol": "RAC", "traces": [ @@ -14736,8 +14881,8 @@ "images": [ { "image_sync": { - "chain_name": "gravitybridge", - "base_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" + "chain_name": "ethereum", + "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg", @@ -14764,7 +14909,7 @@ ], "type_asset": "ics20", "base": "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", - "name": "PURSE Token (Function X)", + "name": "PURSE Token", "display": "PURSE", "symbol": "PURSE", "traces": [ @@ -15003,9 +15148,32 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg" }, "images": [ + { + "image_sync": { + "chain_name": "nyx", + "base_denom": "unym" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg", + "theme": { + "dark_mode": false, + "circle": true, + "primary_color_hex": "#151525" + } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.svg", + "theme": { + "dark_mode": true, + "circle": true, + "primary_color_hex": "#141424" + } + }, { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png", "theme": { @@ -15794,7 +15962,7 @@ "base": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", "name": "Gelotto (Injective)", "display": "glto", - "symbol": "injective.GLTO", + "symbol": "GLTO", "traces": [ { "type": "bridge", @@ -15818,10 +15986,21 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg" }, "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "theme": { + "primary_color_hex": "#501cad" + } + }, { "image_sync": { "chain_name": "ethereum", @@ -15937,9 +16116,9 @@ ], "type_asset": "ics20", "base": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", - "name": "Astroport CW20 Token", + "name": "Astroport token (Terra)", "display": "astro.cw20", - "symbol": "ASTRO.cw20", + "symbol": "ASTRO.terra", "traces": [ { "type": "legacy-mintage", @@ -15974,6 +16153,17 @@ "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg" + }, + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", + "theme": { + "primary_color_hex": "#4056e9" + } } ] }, @@ -16025,9 +16215,9 @@ ], "type_asset": "ics20", "base": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", - "name": "Solana USD Coin (Wormhole)", + "name": "USDC (Solana via Wormhole)", "display": "wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6", - "symbol": "solana.USDC.wh", + "symbol": "USDC.sol.wh", "traces": [ { "type": "synthetic", @@ -16067,22 +16257,23 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.svg" }, "images": [ - { - "image_sync": { - "chain_name": "solana", - "base_denom": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.svg", "theme": { "primary_color_hex": "#2775cb" } + }, + { + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, @@ -16410,8 +16601,8 @@ "images": [ { "image_sync": { - "chain_name": "source", - "base_denom": "ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A" + "chain_name": "binancesmartchain", + "base_denom": "0x454b90716a9435e7161a9aea5cf00e0acbe565ae" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png", "theme": { @@ -16523,8 +16714,8 @@ "images": [ { "image_sync": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst" + "chain_name": "solana", + "base_denom": "6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png", "theme": { @@ -16828,23 +17019,22 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.core.png" }, "images": [ { - "image_sync": { - "chain_name": "xrpl", - "base_denom": "drop" - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.core.png", "theme": { "primary_color_hex": "#040404" } }, { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.core.png", + "image_sync": { + "chain_name": "coreum", + "base_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg", "theme": { "primary_color_hex": "#040404" } @@ -16975,7 +17165,7 @@ ], "type_asset": "ics20", "base": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", - "name": "Gelotto BEAST (Peggy)", + "name": "Gelotto BEAST", "display": "beast", "symbol": "BEAST", "traces": [ @@ -17271,7 +17461,22 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg" + }, "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg", + "theme": { + "primary_color_hex": "#f1d20c" + } + }, { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", "theme": { @@ -17341,8 +17546,8 @@ "images": [ { "image_sync": { - "chain_name": "composable", - "base_denom": "ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8" + "chain_name": "tinkernet", + "base_denom": "Planck" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg" } @@ -17396,8 +17601,8 @@ "images": [ { "image_sync": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos" + "chain_name": "solana", + "base_denom": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png", "theme": { @@ -17440,6 +17645,10 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" + }, "images": [ { "image_sync": { @@ -17488,6 +17697,10 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg" + }, "images": [ { "image_sync": { @@ -17541,10 +17754,18 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg" }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg", + "theme": { + "primary_color_hex": "#FFFFFF", + "dark_mode": true + } + }, { "image_sync": { "chain_name": "saga", @@ -17556,14 +17777,6 @@ "primary_color_hex": "#000000", "dark_mode": false } - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg", - "theme": { - "primary_color_hex": "#FFFFFF", - "dark_mode": true - } } ] }, @@ -17652,6 +17865,10 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" + }, "images": [ { "image_sync": { @@ -17845,6 +18062,10 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.svg" + }, "images": [ { "image_sync": { @@ -18148,7 +18369,7 @@ ], "type_asset": "ics20", "base": "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", - "name": "Ethereum", + "name": "Ethereum (Picasso)", "display": "eth", "symbol": "ETH.pica", "traces": [ @@ -18177,11 +18398,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.pica.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.pica.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "wei" + "chain_name": "composable", + "base_denom": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C" }, "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", @@ -18209,7 +18436,7 @@ ], "type_asset": "ics20", "base": "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", - "name": "Dai", + "name": "Dai Stablecoin (Picasso)", "display": "dai", "symbol": "DAI.pica", "traces": [ @@ -18246,11 +18473,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.pica.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.pica.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" + "chain_name": "composable", + "base_denom": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" } @@ -18274,7 +18507,7 @@ ], "type_asset": "ics20", "base": "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", - "name": "Frax Shares", + "name": "Frax Share (Picasso)", "display": "fxs", "symbol": "FXS.pica", "traces": [ @@ -18303,11 +18536,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fxs.pica.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fxs.pica.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0" + "chain_name": "composable", + "base_denom": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29" }, "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", @@ -18335,7 +18574,7 @@ ], "type_asset": "ics20", "base": "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", - "name": "Frax", + "name": "Frax (Picasso)", "display": "frax", "symbol": "FRAX.pica", "traces": [ @@ -18372,11 +18611,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frax.pica.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frax.pica.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" + "chain_name": "composable", + "base_denom": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } @@ -18400,9 +18645,9 @@ ], "type_asset": "ics20", "base": "ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3", - "name": "Tether (Ethereum)", + "name": "Tether USD (Ethereum) (Picasso)", "display": "usdt", - "symbol": "USDT.pica", + "symbol": "USDT.eth.pica", "traces": [ { "type": "synthetic", @@ -18437,6 +18682,10 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png" + }, "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg", @@ -18447,8 +18696,8 @@ }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + "chain_name": "composable", + "base_denom": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", @@ -18478,7 +18727,7 @@ ], "type_asset": "ics20", "base": "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", - "name": "Staked FRAX", + "name": "Staked FRAX (Picasso)", "display": "sfrax", "symbol": "sFRAX.pica", "traces": [ @@ -18523,11 +18772,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrax.pica.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrax.pica.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32" + "chain_name": "composable", + "base_denom": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9" }, "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", @@ -18555,7 +18810,7 @@ ], "type_asset": "ics20", "base": "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", - "name": "Frax Ether", + "name": "Frax Ether (Picasso)", "display": "frxeth", "symbol": "frxETH.pica", "traces": [ @@ -18592,11 +18847,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frxeth.pica.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frxeth.pica.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f" + "chain_name": "composable", + "base_denom": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90" }, "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", @@ -18624,7 +18885,7 @@ ], "type_asset": "ics20", "base": "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", - "name": "Frax Staked Ether", + "name": "Staked Frax Ether (Picasso)", "display": "sfrxeth", "symbol": "sfrxETH.pica", "traces": [ @@ -18669,11 +18930,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrxeth.pica.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrxeth.pica.svg" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" + "chain_name": "composable", + "base_denom": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" } @@ -18713,6 +18980,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + }, "images": [ { "image_sync": { @@ -18760,6 +19030,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + }, "images": [ { "image_sync": { @@ -18803,8 +19076,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png" }, "images": [ { @@ -18879,8 +19152,8 @@ "images": [ { "image_sync": { - "chain_name": "dymension", - "base_denom": "ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942" + "chain_name": "nim", + "base_denom": "anim" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg", @@ -18933,6 +19206,10 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg" + }, "images": [ { "image_sync": { @@ -19120,6 +19397,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png" + }, "images": [ { "image_sync": { @@ -19436,7 +19716,7 @@ ], "type_asset": "ics20", "base": "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", - "name": "Pepe", + "name": "Pepe (Picasso)", "display": "pepe", "symbol": "PEPE.pica", "traces": [ @@ -19465,11 +19745,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.pica.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + "chain_name": "composable", + "base_denom": "ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05" }, "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", @@ -19500,7 +19786,7 @@ ], "type_asset": "ics20", "base": "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", - "name": "Curve DAO", + "name": "Curve DAO (Picasso)", "display": "crv", "symbol": "CRV.pica", "traces": [ @@ -19529,11 +19815,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crv.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crv.pica.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xd533a949740bb3306d119cc777fa900ba034cd52" + "chain_name": "composable", + "base_denom": "ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crv.png", "theme": { @@ -19563,7 +19855,7 @@ ], "type_asset": "ics20", "base": "ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB", - "name": "Renzo Restaked ETH", + "name": "Renzo Restaked ETH (Picasso)", "display": "ezeth", "symbol": "ezETH.pica", "traces": [ @@ -19600,11 +19892,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ezeth.pica.png" + }, "images": [ { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ezeth.pica.png" + }, + { + "image_sync": { + "chain_name": "composable", + "base_denom": "ibc/0247E0E2C174135AADF4EA172D97FF5C15A64689A403E83603EAE4F0616DD365" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ezeth.png", "theme": { @@ -19634,7 +19932,7 @@ ], "type_asset": "ics20", "base": "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", - "name": "Ethena USDe", + "name": "Ethena USDe (Picasso)", "display": "usde", "symbol": "USDe.pica", "traces": [ @@ -19671,11 +19969,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usde.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usde.pica.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3" + "chain_name": "composable", + "base_denom": "ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usde.png", "theme": { @@ -19705,7 +20009,7 @@ ], "type_asset": "ics20", "base": "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", - "name": "Ethena", + "name": "Ethena (Picasso)", "display": "ena", "symbol": "ENA.pica", "traces": [ @@ -19734,11 +20038,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ena.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ena.pica.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x57e114b691db790c35207b2e685d4a43181e6061" + "chain_name": "composable", + "base_denom": "ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ena.png", "theme": { @@ -19768,7 +20078,7 @@ ], "type_asset": "ics20", "base": "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", - "name": "ether.fi Staked ETH", + "name": "ether.fi Staked ETH (Picasso)", "display": "eeth", "symbol": "eETH.pica", "traces": [ @@ -19805,11 +20115,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eeth.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eeth.pica.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x35fa164735182de50811e8e2e824cfb9b6118ac2" + "chain_name": "composable", + "base_denom": "ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eeth.png", "theme": { @@ -19839,7 +20155,7 @@ ], "type_asset": "ics20", "base": "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", - "name": "Dinero Staked ETH", + "name": "Dinero Staked ETH (Picasso)", "display": "pxeth", "symbol": "pxETH.pica", "traces": [ @@ -19876,11 +20192,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pxeth.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pxeth.pica.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6" + "chain_name": "composable", + "base_denom": "ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pxeth.png", "theme": { @@ -19910,7 +20232,7 @@ ], "type_asset": "ics20", "base": "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", - "name": "crvUSD", + "name": "crvUSD (Picasso)", "display": "crvusd", "symbol": "crvUSD.pica", "traces": [ @@ -19947,11 +20269,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crvUSD.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crvUSD.pica.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e" + "chain_name": "composable", + "base_denom": "ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crvusd.png", "theme": { @@ -20070,9 +20398,9 @@ ], "type_asset": "ics20", "base": "ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A", - "name": "Tether", + "name": "Tether USD (Solana) (Picasso)", "display": "usdt", - "symbol": "solana.USDT.pica", + "symbol": "USDT.sol.pica", "traces": [ { "type": "synthetic", @@ -20115,6 +20443,10 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png" + }, "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg", @@ -20125,8 +20457,8 @@ }, { "image_sync": { - "chain_name": "solana", - "base_denom": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB" + "chain_name": "composable", + "base_denom": "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", @@ -20158,7 +20490,7 @@ ], "type_asset": "ics20", "base": "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", - "name": "Edgevana Staked SOL", + "name": "Edgevana Staked SOL (Picasso)", "display": "edgesol", "symbol": "edgeSOL.pica", "traces": [ @@ -20195,11 +20527,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/edgesol.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/edgesol.pica.png" + }, { "image_sync": { - "chain_name": "solana", - "base_denom": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt" + "chain_name": "composable", + "base_denom": "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/edgesol.png", "theme": { @@ -20228,7 +20566,7 @@ ], "type_asset": "ics20", "base": "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", - "name": "Liquid Staking Token", + "name": "Liquid Staking Token (Picasso)", "display": "lst", "symbol": "LST.pica", "traces": [ @@ -20265,11 +20603,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lst.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lst.pica.png" + }, { "image_sync": { - "chain_name": "solana", - "base_denom": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So" + "chain_name": "composable", + "base_denom": "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/lst.png", "theme": { @@ -20298,7 +20642,7 @@ ], "type_asset": "ics20", "base": "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", - "name": "Jito Staked SOL", + "name": "Jito Staked SOL (Picasso)", "display": "jitosol", "symbol": "jitoSOL.pica", "traces": [ @@ -20335,11 +20679,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/jitosol.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/jitosol.pica.png" + }, { "image_sync": { - "chain_name": "solana", - "base_denom": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn" + "chain_name": "composable", + "base_denom": "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/jitosol.png", "theme": { @@ -20369,9 +20719,9 @@ ], "type_asset": "ics20", "base": "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", - "name": "Wrapped Solana", + "name": "Solana (Picasso)", "display": "wsol", - "symbol": "wSOL.pica", + "symbol": "SOL.pica", "traces": [ { "type": "wrapped", @@ -20406,11 +20756,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wsol.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wsol.pica.png" + }, { "image_sync": { - "chain_name": "solana", - "base_denom": "So11111111111111111111111111111111111111112" + "chain_name": "composable", + "base_denom": "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } @@ -20435,9 +20791,9 @@ "type_asset": "sdk.coin", "address": "osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek", "base": "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", - "name": "Alloyed USDT", + "name": "Tether USD", "display": "allUSDT", - "symbol": "allUSDT", + "symbol": "USDT", "traces": [ { "type": "synthetic", @@ -20456,10 +20812,11 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSDT.svg" - }, { "image_sync": { "chain_name": "ethereum", @@ -20472,6 +20829,18 @@ "primary_color_hex": "#009393", "background_color_hex": "#009393" } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.svg", + "theme": { + "circle": false, + "primary_color_hex": "#50AF95", + "background_color_hex": "#00000000" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSDT.svg" } ], "keywords": [ @@ -20525,6 +20894,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png" + }, "images": [ { "image_sync": { @@ -20586,9 +20958,9 @@ "type_asset": "sdk.coin", "address": "osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3", "base": "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC", - "name": "Alloyed BTC", + "name": "Bitcoin", "display": "allBTC", - "symbol": "allBTC", + "symbol": "BTC", "traces": [ { "type": "synthetic", @@ -20599,19 +20971,26 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBTC.svg" - }, { "image_sync": { "chain_name": "bitcoin", "base_denom": "sat" }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", "theme": { - "primary_color_hex": "#f4941c" + "primary_color_hex": "#f4941c", + "background_color_hex": "#f4941c", + "circle": true } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBTC.svg" } ] }, @@ -20632,7 +21011,7 @@ ], "type_asset": "ics20", "base": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", - "name": "N43 FanToken", + "name": "N43 Fantoken", "display": "n43", "symbol": "N43", "traces": [ @@ -20649,6 +21028,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" + }, "images": [ { "image_sync": { @@ -20698,8 +21080,15 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png" + }, "images": [ { + "image_sync": { + "chain_name": "terra", + "base_denom": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png", "theme": { "primary_color_hex": "#191717" @@ -20723,9 +21112,9 @@ ], "type_asset": "ics20", "base": "ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB", - "name": "Arbitrum axlETH", + "name": "Wrapped Ether (Arbitrum via Axelar)", "display": "arbitrum-weth", - "symbol": "axlETH", + "symbol": "ETH.arb.axl", "traces": [ { "type": "wrapped", @@ -20772,11 +21161,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.arb.axl.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.arb.axl.svg" + }, { "image_sync": { - "chain_name": "arbitrum", - "base_denom": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1" + "chain_name": "axelar", + "base_denom": "arbitrum-weth-wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } @@ -20798,9 +21193,9 @@ ], "type_asset": "ics20", "base": "ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B", - "name": "Base axlETH", + "name": "Wrapped Ether (Base via Axelar)", "display": "base-weth", - "symbol": "axlETH", + "symbol": "ETH.base.axl", "traces": [ { "type": "bridge", @@ -20839,11 +21234,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.base.axl.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.base.axl.svg" + }, { "image_sync": { - "chain_name": "base", - "base_denom": "0x4200000000000000000000000000000000000006" + "chain_name": "axelar", + "base_denom": "base-weth-wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } @@ -20865,9 +21266,9 @@ ], "type_asset": "ics20", "base": "ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E", - "name": "Polygon axlETH", + "name": "Wrapped Ether (Polygon via Axelar)", "display": "polygon-weth", - "symbol": "axlETH", + "symbol": "ETH.matic.axl", "traces": [ { "type": "wrapped", @@ -20906,11 +21307,17 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.matic.axl.svg" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.matic.axl.svg" + }, { "image_sync": { - "chain_name": "polygon", - "base_denom": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" + "chain_name": "axelar", + "base_denom": "polygon-weth-wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } @@ -20957,8 +21364,16 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.svg" + }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "staISLM" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.svg", "theme": { @@ -21022,11 +21437,14 @@ "images": [ { "image_sync": { - "chain_name": "dymension", - "base_denom": "ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF" + "chain_name": "mande", + "base_denom": "amand" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg", + "theme": { + "primary_color_hex": "#274cbf" + } } ], "keywords": [ @@ -21073,8 +21491,16 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg" + }, "images": [ { + "image_sync": { + "chain_name": "neutaro", + "base_denom": "uneutaro" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", "theme": { @@ -21131,8 +21557,15 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png" + }, "images": [ { + "image_sync": { + "chain_name": "solana", + "base_denom": "ANu4Wuq86WzRU8tykszQUJ66eQzFNfkwap2HcQ5UaFaU" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png", "theme": { "primary_color_hex": "#488000", @@ -21176,8 +21609,16 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg" + }, "images": [ { + "image_sync": { + "chain_name": "noble", + "base_denom": "ausdy" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", "theme": { @@ -21247,8 +21688,16 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg" + }, "images": [ { + "image_sync": { + "chain_name": "firmachain", + "base_denom": "ufct" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg", "theme": { @@ -21273,9 +21722,9 @@ "type_asset": "sdk.coin", "address": "osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm", "base": "factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH", - "name": "Alloyed ETH", + "name": "Ethereum", "display": "allETH", - "symbol": "allETH", + "symbol": "ETH", "traces": [ { "type": "synthetic", @@ -21286,11 +21735,11 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.png" - }, { "image_sync": { "chain_name": "ethereum", @@ -21301,6 +21750,10 @@ "theme": { "primary_color_hex": "#303030" } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.png" } ] }, @@ -21320,9 +21773,9 @@ "type_asset": "sdk.coin", "address": "osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4", "base": "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", - "name": "Alloyed SOL", + "name": "Solana", "display": "allSOL", - "symbol": "allSOL", + "symbol": "SOL", "traces": [ { "type": "synthetic", @@ -21333,17 +21786,33 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.png" - }, { "image_sync": { "chain_name": "solana", "base_denom": "Lamport" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "theme": { + "circle": true, + "background_color_hex": "#000000" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "theme": { + "circle": false, + "background_color_hex": "#00000000" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.png" } ] }, @@ -21381,8 +21850,15 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png" + }, "images": [ { + "image_sync": { + "chain_name": "lava", + "base_denom": "ulava" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png", "theme": { "primary_color_hex": "#6f043e" @@ -21424,6 +21900,10 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.svg" + }, "images": [ { "image_sync": { @@ -21454,9 +21934,9 @@ "type_asset": "sdk.coin", "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", "base": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt", - "name": "Tronix", + "name": "Tron (Router)", "display": "trx", - "symbol": "TRX", + "symbol": "TRX.rt", "traces": [ { "type": "bridge", @@ -21467,6 +21947,10 @@ "provider": "Router" } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png" + }, "images": [ { "image_sync": { @@ -21498,9 +21982,9 @@ "type_asset": "sdk.coin", "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", "base": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", - "name": "Tether USD", + "name": "Tether USD (Ethereum via Router)", "display": "usdt", - "symbol": "USDT", + "symbol": "USDT.eth.rt", "traces": [ { "type": "synthetic", @@ -21519,6 +22003,10 @@ "provider": "Router" } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png" + }, "images": [ { "image_sync": { @@ -21574,6 +22062,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "injective", + "base_denom": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png", "theme": { "primary_color_hex": "#343169" @@ -21626,8 +22118,16 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.svg" + }, "images": [ { + "image_sync": { + "chain_name": "stride", + "base_denom": "stuband" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.svg", "theme": { @@ -21681,7 +22181,7 @@ "type_asset": "sdk.coin", "address": "osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x", "base": "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", - "name": "Alloyed TRX", + "name": "Tron", "display": "trx", "symbol": "TRX", "traces": [ @@ -21694,10 +22194,18 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png" + }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.png", + "image_sync": { + "chain_name": "tron", + "base_denom": "sun" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", "theme": { "circle": true, "primary_color_hex": "#FF060A", @@ -21705,12 +22213,8 @@ } }, { - "image_sync": { - "chain_name": "tron", - "base_denom": "sun" - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.png", "theme": { "circle": true, "primary_color_hex": "#FF060A", @@ -21736,7 +22240,7 @@ ], "type_asset": "ics20", "base": "ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488", - "name": "Router Chain", + "name": "Router Protocol", "display": "ROUTE", "symbol": "ROUTE", "traces": [ @@ -21753,8 +22257,16 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png" + }, "images": [ { + "image_sync": { + "chain_name": "routerchain", + "base_denom": "route" + }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png", "theme": { @@ -21778,9 +22290,9 @@ "type_asset": "sdk.coin", "address": "osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg", "base": "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", - "name": "Alloyed OP", + "name": "Optimism", "display": "op", - "symbol": "allOP", + "symbol": "OP", "traces": [ { "type": "synthetic", @@ -21791,14 +22303,11 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.png", - "theme": { - "primary_color_hex": "#fc0424" - } - }, { "image_sync": { "chain_name": "optimism", @@ -21807,9 +22316,14 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", "theme": { - "circle": true, - "primary_color_hex": "#fc0424", - "background_color_hex": "#fc0424" + "primary_color_hex": "#fc0424" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.png", + "theme": { + "primary_color_hex": "#fc0424" } } ] @@ -21831,9 +22345,9 @@ ], "type_asset": "ics20", "base": "ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9", - "name": "Optimism", + "name": "Optimism (Axelar)", "display": "op", - "symbol": "OP", + "symbol": "OP.axl", "traces": [ { "type": "bridge", @@ -21856,11 +22370,19 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.png" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.png" + }, { "image_sync": { - "chain_name": "optimism", - "base_denom": "0x4200000000000000000000000000000000000042" + "chain_name": "axelar", + "base_denom": "op-wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", @@ -21885,9 +22407,9 @@ "type_asset": "sdk.coin", "address": "osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a", "base": "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", - "name": "Alloyed SHIB", + "name": "Shiba Inu", "display": "shib", - "symbol": "allSHIB", + "symbol": "SHIB", "traces": [ { "type": "synthetic", @@ -21898,15 +22420,10 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.png", - "theme": { - "circle": true, - "primary_color_hex": "#FFA409" - } - }, { "image_sync": { "chain_name": "ethereum", @@ -21917,6 +22434,14 @@ "primary_color_hex": "#FFA409", "background_color_hex": "#00000000" } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.png", + "theme": { + "circle": true, + "primary_color_hex": "#FFA409" + } } ] }, @@ -21935,9 +22460,9 @@ "type_asset": "sdk.coin", "address": "osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk", "base": "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", - "name": "Alloyed ARB", + "name": "Arbitrum", "display": "arb", - "symbol": "allARB", + "symbol": "ARB", "traces": [ { "type": "synthetic", @@ -21948,24 +22473,28 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.png", - "theme": { - "primary_color_hex": "#9DCCED" - } - }, { "image_sync": { "chain_name": "arbitrum", "base_denom": "0x912CE59144191C1204E64559FE8253a0e49E6548" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg", "theme": { "primary_color_hex": "#253545" } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.png", + "theme": { + "primary_color_hex": "#9DCCED" + } } ] }, @@ -21984,9 +22513,9 @@ "type_asset": "sdk.coin", "address": "osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw", "base": "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", - "name": "Alloyed LINK", + "name": "Chainlink", "display": "link", - "symbol": "allLINK", + "symbol": "LINK", "traces": [ { "type": "synthetic", @@ -21997,25 +22526,29 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.png", - "theme": { - "circle": true, - "primary_color_hex": "#2A5ADA" - } - }, { "image_sync": { "chain_name": "ethereum", "base_denom": "0x514910771af9ca656af840dff83e8264ecf986ca" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg", "theme": { "primary_color_hex": "#2c5cdc" } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.png", + "theme": { + "circle": true, + "primary_color_hex": "#2A5ADA" + } } ] }, @@ -22034,9 +22567,9 @@ "type_asset": "sdk.coin", "address": "osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx", "base": "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", - "name": "Alloyed PEPE", + "name": "Pepe", "display": "pepe", - "symbol": "allPEPE", + "symbol": "PEPE", "traces": [ { "type": "synthetic", @@ -22047,14 +22580,11 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" + }, "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPEPE.png", - "theme": { - "circle": true, - "primary_color_hex": "#549C44" - } - }, { "image_sync": { "chain_name": "ethereum", @@ -22065,6 +22595,13 @@ "theme": { "primary_color_hex": "#cc3233" } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPEPE.png", + "theme": { + "circle": true, + "primary_color_hex": "#549C44" + } } ] }, @@ -22083,9 +22620,9 @@ "type_asset": "sdk.coin", "address": "osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02", "base": "factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT", - "name": "Alloyed DOT", + "name": "Polkadot", "display": "dot", - "symbol": "allDOT", + "symbol": "DOT", "traces": [ { "type": "synthetic", @@ -22096,7 +22633,22 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + }, "images": [ + { + "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", + "theme": { + "primary_color_hex": "#e4047c" + } + }, { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.png", @@ -22137,9 +22689,9 @@ ], "type_asset": "ics20", "base": "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", - "name": "Unicorn", + "name": "Unicorn (Picasso)", "display": "unicorn", - "symbol": "UWU", + "symbol": "UWU.pica", "traces": [ { "type": "additional-mintage", @@ -22174,11 +22726,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/UWU.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/UWU.pica.png" + }, { "image_sync": { - "chain_name": "unicorn", - "base_denom": "uwunicorn" + "chain_name": "composable", + "base_denom": "ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unicorn/images/uwu.png", "theme": { @@ -22229,8 +22787,16 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.svg" + }, "images": [ { + "image_sync": { + "chain_name": "haqq", + "base_denom": "erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.svg", "theme": { @@ -22323,9 +22889,9 @@ ], "type_asset": "ics20", "base": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", - "name": "Tether USDT", + "name": "Tether USD (Ethereum) (Injective)", "display": "usdt", - "symbol": "USDT", + "symbol": "USDT.eth.inj", "traces": [ { "type": "synthetic", @@ -22356,11 +22922,19 @@ } } ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.png" + }, "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + "chain_name": "injective", + "base_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png",